vote up 2 vote down star

Does anyone know how to perform IISRESET with Powershell Script? I'm using powerguieditor with powershell 1.0 instlled on a windows 2008 box.

flag

0% accept rate

2 Answers

vote up 2 vote down

Does IISRESET just restart the W3SVC and Windows Process Activation services? If so, you can restart those services with this PowerShell command:

Restart-Service W3SVC,WAS -force

But some folks don't recommend this.

link|flag
vote up 0 vote down

Not sure what you are looking for exactly, but create a script with a body of "iisreset /noforce"

Here's an example: http://technet.microsoft.com/en-us/library/cc785436.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.