在 Windows Server 数据中心上找不到 WebAdministration powershell 模块

发布于 2024-11-06 06:39:46 字数 402 浏览 0 评论 0原文

在 Windows Server 2008 Datacenter 中,我找不到 PowerShell webadministration 模块。我尝试了 Get-PSSnapinGet-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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝礼 2024-11-13 06:39:46

您需要安装 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.

全部不再 2024-11-13 06:39:46

您可以安装管理单元。然后,您可以使用 此脚本来加载它。

You can install the snapin. You can then use this script to load it.

给不了的爱 2024-11-13 06:39:46

对于Windows Server 2008的自动化,我们使用WebPiCmd 推送 IISPowershellSnapin,然后运行 ​​Add-PSSnapin WebAdministration 以支持 IIS powershell 集成。默认情况下,Windows Server 2012 中已存在 IIS 管理模块。

Powershell - 支持 Server 2008 的 IIS 管理

.\WebpiCmd.exe /Install /Products:IISPowershellSnapin /AcceptEula /ForceReboot
Add-PSSnapin WebAdministration
Get-Website

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

.\WebpiCmd.exe /Install /Products:IISPowershellSnapin /AcceptEula /ForceReboot
Add-PSSnapin WebAdministration
Get-Website
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文