我安装了xWebAdministration
模块。由于某些原因,我仍然收到此错误消息
图片网址: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
资源。仅安装xwebApplication
和xWebVirtualDirectory
资源。
我刚刚从Technet下载了xWebAdministration
1.3.2.3 zip文件,好像有人在做boo-boo -缺少xWebSite
了!问与答部分充满了对此的不满,所以您并不孤单。 :)
奇怪的是,据说包括所有模块的Wave 9资源工具包都存在相同的问题!
克服此问题的最简单方法是仅抓取1.3.2版本,它看起来像所有东西。