Stopping/starting an application pool and site on

2019-05-02 10:52发布

I would like to write a script and run it from my local PC to stop and start an application pool and site that exists on a server.

Value of App Pool and Site - Test Value of server - SERVER1

Any guidance would be much appreciated.

1条回答
何必那么认真
2楼-- · 2019-05-02 11:25

Run Command Prompt with Administrative rights, and type the following:

C:\Windows\System32\inetsrv\appcmd start apppool /apppool.name:"MYAPPPOOLNAME"

or use the stop command. You could save this in a batch file, but it must be executed with higher privileges.

For the application pool on a remote server, you could use PsExec:

Psexec \\{Computer Name of ISS7 Server} C:\Windows\System32\inetsrv\appcmd recycle apppool my-app-pool
查看更多
登录 后发表回答