作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过 DSC 配置目标节点。
我创建了一个带有虚拟配置的 .ps1 文件;你可以在下面看到它;这只是您在 DSC 站点中找到的首批示例之一。
现在我想把它编译成 .mof 文件。
我已经执行了:
PS C:\var\DSC\Configurations> . .\localhost.ps1
Configuration FileResourceDemo
{
Node "localhost"
{
File DirectoryCopy
{
Ensure = "Present" # You can also set Ensure to "Absent"
Type = "Directory" # Default is "File".
Recurse = $true # Ensure presence of subdirectories, too
SourcePath = "C:\Users\Public\Documents\DSCDemo\DemoSource"
DestinationPath = "C:\Users\Public\Documents\DSCDemo\DemoDestination"
}
Log AfterDirectoryCopy
{
# The message below gets written to the Microsoft-Windows-Desired State Configuration/Analytic log
Message = "Finished running the file resource with ID DirectoryCopy"
DependsOn = "[File]DirectoryCopy" # This means run "DirectoryCopy" first.
}
}
}
最佳答案
Configuration
关键字只定义了配置(把它想象成 function
关键字)。之后你必须执行它,通过像函数一样调用它(它甚至可以有参数,但你的没有)。
所以如果,在你的 .ps1
的末尾您添加的文件:
FileResourceDemo
FileResourceDemo
直接以交互方式执行它。进入提示。它甚至应该是tab-complete。
关于powershell - DSC,将ps1文件编译成MOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40661214/
鉴于这个简单的配置文件: Configuration MyDscConfiguration { Node "TEST-PC1" { WindowsFeature MyFeatu
对于 C++,是否有 JMI 的替代方案?感谢您提供链接或建议。 最佳答案 EMF4CPP刚刚出版。它基本上是 Ecore 在 C++ 中的实现(Ecore 基本上是对 Essential MOF O
我已经在安装了 Windows 7 Professional 的 Inspiron 1464 64 位处理器上安装了 Visual Studio 2010。我尝试使用来自微软的工具版本 10.50.1
我是一名优秀的程序员,十分优秀!