在 Windows Server 数据中心上找不到 WebAdministration powershell 模块
在 Windows Server 2008 Datacenter 中,我找不到 PowerShell webadministration
模块。我尝试了 Get-PSSnapin
和 Get-Module -ListAvailable
,两者都没有显示 webadministration
而且我没有看到 webadministration< /code> 目录
%SystemRoot%\system32\WindowsPowerShell\v1.0\Modules
下的模块!
我是否需要安装或启用某些东西才能在数据中心上拥有webadministration
?
In Windows Server 2008 Datacenter, I could not find the PowerShell webadministration
module. I tried Get-PSSnapin
and Get-Module -ListAvailable
, neither of which showed webadministration
And I don't see the webadministration
module under the directory %SystemRoot%\system32\WindowsPowerShell\v1.0\Modules
!!
Do I need to install or enable something to have webadministration
on Datacenter ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要安装 Web 服务器角色 (IIS)。 WebAdministration 是一个模块。因此,请使用
Get-Module -ListAvailable
另外,看起来这些 cmdlet 仅在 Windows Server 2008 R2 或 IIS 7.5 上可用。因此,如果您在 Windows Server 2008 上安装了 IIS7.5,则这些 cmdlet 将可用。
You need to have web server role (IIS) installed. WebAdministration is a module. So, use
Get-Module -ListAvailable
Also, looks like these cmdlets are available only on Windows Server 2008 R2 or with IIS 7.5. So, if you have IIS7.5 on Windows Server 2008, these cmdlets will be available.
您可以安装管理单元。然后,您可以使用 此脚本来加载它。
You can install the snapin. You can then use this script to load it.
对于Windows Server 2008的自动化,我们使用WebPiCmd 推送 IISPowershellSnapin,然后运行
Add-PSSnapin WebAdministration
以支持 IIS powershell 集成。默认情况下,Windows Server 2012 中已存在 IIS 管理模块。Powershell - 支持 Server 2008 的 IIS 管理
For automation with Windows Server 2008, We use WebPiCmd to push IISPowershellSnapin, then run
Add-PSSnapin WebAdministration
to support IIS powershell integration. The IIS Administration Module is already present in Windows Server 2012 by default.Powershell - Support IIS Administration for Server 2008