gpt4 book ai didi

powershell - 术语 'xWebsite' 未被识别为 cmdlet 的名称

转载 作者:行者123 更新时间:2023-12-03 00:50:48 28 4
gpt4 key购买 nike

我安装了xWebAdministration模块。出于某种原因,我仍然收到此错误消息

The term 'xWebsite' is not recognized as the name of a cmdlet"



enter image description here

图片网址: http://i.stack.imgur.com/tTwUe.jpg

这是我的代码。
Configuration MvcWebTest {

Param(
[String[]]$ComputerName = "tvw-irwebsvc",
$AppName = "MvcWebTest",
$User = "PAOMSvc",
$Password = "Welcome1",
$CodePath = "C:\websites\MvcWebTest"

)

Import-DscResource -Module xWebAdministration

Node $ComputerName {

#Install ASP.NET 4.5
WindowsFeature ASP {
Ensure = “Present”
Name = “Web-Asp-Net45”
}

File WebContent {
Ensure ="Present";
SourcePath ="\\DVW-MORBAM01\Build\Publish\MvcWebTest\Dev";
DestinationPath=$CodePath;
Type = "Directory";
Recurse = $True
}

# Create a new website
xWebsite Website {
Ensure = "Present";
Name = $AppName;
State = "Started";
PhysicalPath = $CodePath;
DependsOn = "[File]WebContent"
}
}
}

最佳答案

屏幕截图向您显示了问题:xWebsite资源未安装。只有 xwebApplicationxWebVirtualDirectory资源已安装。

我刚刚下载了xWebAdministration来自 Technet 的 1.3.2.3 zip 文件,看起来有人发出了嘘声——它不见了xWebSite !问答部分充满了对此感到不安的人,所以你并不孤单。 :)

奇怪的是,据说包含所有模块的 Wave 9 资源包也有同样的问题!

解决这个问题的最简单方法是获取版本 1.3.2 ,看起来它拥有一切。

关于powershell - 术语 'xWebsite' 未被识别为 cmdlet 的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27755752/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com