
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get IIS Application Pool Queue Length Using PowerShell
From the GUI, to retrieve the Application Pool queue length you need to check the Advanced Settings of the Application Pool.
To get the IIS application Pool queue length using PowerShell, first, we need to the application pool name. There are two ways (and maybe others) to retrieve once we have the name of the application pool.
For example, we need to retrieve the queue length for the application pool DefaultAppPool.
(Get-IISAppPool -Name DefaultAppPool).queuelength
To run the above command, you need the IISAdministration Module. You can also use the IIS PS drive but for that WebAdministration module should be loaded.
(Get-ItemProperty IIS:\AppPools\DefaultAppPool).queuelength
Advertisements