---
title: "Recycle App Pool"
---
Recycles an application pool.
IIS::Recycle-AppPool(
	[WaitForStartedStatus: <true/false>],
	Name: <text>
);
| Name | Format | Script Usage | Usage Notes | 
|---|---|---|---|
| Wait for started status | true/false | WaitForStartedStatus | |
| ☆ App pool (default) | text | Name | The name of the application pool to operate on. This argument is required. | 
# stops the BuildMaster application pool 
IIS::Stop-AppPool BuildMasterAppPool;
# starts the BuildMaster application pool 
IIS::Start-AppPool BuildMasterAppPool;
# recycles the BuildMaster application pool 
IIS::Recycle-AppPool BuildMasterAppPool;