如何使用PowerShell脚本远程启动/停止IIS 6.0/7.0?
我有两台服务器服务器 A 和服务器 B。我想使用 Powershell 脚本从服务器 B 远程停止服务器 A。
I have two servers Server A and Server B. I want to stop server A from Server B remotely using Powershell script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
最简单的方法之一就是使用 PsExec< 进行命令行执行/a>.并向计算机发送
IISReset /STOP 或 /START 或 /RESTART
所以你会做这样的事情
如果你走这条路线或任何涉及某种类型的管理员级别帐户模拟的路线,请小心密码管理,这样就没有人可以获得管理员密码的纯文本副本。
One of the simplest ways to do this is really with just a command line execution using PsExec. And send over to the machines
IISReset /STOP or /START or /RESTART
So you'd do something like this
Just be careful with password management if you go this route or any route that involves some type of admin level account impersonation so that no one can get a plain text copy of the admin password.
选项 1:
选项 2:
选项 3:
Option 1:
Option 2:
Option 3:
因为您要求使用 Powershell:
同意这个问题应该移至 ServerFault。
Because you asked for Powershell:
Agreed this question should be moved to ServerFault.
在 powershell 2.0 中,从 cmd 提示符运行以下命令:
In powershell 2.0, run the following from cmd prompt:
对于不同版本的 IIS v6 或 v7,您可以使用具有不同名称空间的 get-wmiobject cmdlt,下面的管道命令可用于本地或远程 IIS 中的此类操作,
对于 IIS v6,
您需要有足够的帐户权限来执行这些操作,尽管我更喜欢为我的网站执行 $x.Recycle() 。
You can use get-wmiobject cmdlt with different NameSpace for different versions of IIS v6 or v7, below pipelining command can be used for such operations in IIS locally or remotely
for IIS v6
you need to have sufficient account privilege for these operations, event though i prefer to do $x.Recycle() for my websites.