web-services – 如何在本地运行Powershell DSC脚本

前端之家收集整理的这篇文章主要介绍了web-services – 如何在本地运行Powershell DSC脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正试图在本地运行一个非常简单的Power shell DSC脚本. (我从不计划在此阶段提取或推送配置文件)

我收到以下错误消息. WS-Management服务正在运行,但没有保留防火墙漏洞或端口(服务器恰好是一个Web服务器)…反正我是否可以允许此服务器只接受本地请求?

The client cannot connect to the destination specified in the request.
Verify that the service on the destination is running and is accepting
requests. Consult the logs and documentation for the WS-Management
service running on the destination,most commonly IIS or WinRM. If the
destination is the WinRM service,run the following command on the
destination to analyze and configure the WinRM service: “winrm
quickconfig”.
+ CategoryInfo : ConnectionError: (root/Microsoft/…gurationManager:String) [],CimException
+ FullyQualifiedErrorId : HRESULT 0x80338012
+ PSComputerName : localhost

configuration SampleIISInstall
    {
        Node 127.0.0.1
        {
          File FileDemo {
            Type = 'Directory'
            DestinationPath = 'C:\TestUser3'
            Ensure = "Present"
        }
        }
    }

    # Compile the configuration file to a MOF format
    SampleIISInstall

    # Run the configuration on localhost
    Start-DscConfiguration -Path .\SampleIISInstall -Wait -Force -Verbose

解决方法

尝试:
configuration SampleIISInstall
    {
        Node "localhost"
        {
          File FileDemo {
            Type = 'Directory'
            DestinationPath = 'C:\TestUser3'
            Ensure = "Present"
        }
        }
    }

    # Compile the configuration file to a MOF format
    SampleIISInstall

    # Run the configuration on localhost
    Start-DscConfiguration -Path .\SampleIISInstall -Wait -Force -Verbose
原文链接:https://www.f2er.com/html/223927.html

猜你在找的HTML相关文章