术语“xWebsite”未被识别为cmdlet的名称

时间:2015-01-03 14:12:39

标签: powershell dsc

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

  

术语' xWebsite'不被识别为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" 
        } 
    }
}

2 个答案:

答案 0 :(得分:5)

屏幕截图显示了问题:未安装xWebsite资源。仅安装了xwebApplicationxWebVirtualDirectory资源。

我刚从Technet下载了xWebAdministration 1.3.2.3 zip文件,看起来有人做了一个嘘声 - 它丢失了xWebSite! Q& A部分充满了对此感到不安的人,所以你并不孤单。 :)

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

最简单的方法就是获取版本1.3.2,它看起来就像拥有一切。

答案 1 :(得分:-1)

要制定配置,请运行以下命令:

Start-DscConfiguration -Wait -Verbose -Path .\MvcWebTest

此cmdlet是DSC系统的一部分。 Wait参数是可选的,使cmdlet以交互方式运行。如果没有此参数,cmdlet将创建并返回作业。