我正在尝试在puppet配方中设置一些powershell内联cmdlet,以便安装其他msi包和powershell脚本。
class ps{
#http://docs.puppetlabs.com/windows/running.html
exec {'executionpolicy':
path => 'C:\Windows\sysnative\WindowsPowerShell\v1.0',
command => 'Powershell.exe "Set-ExecutionPolicy Unrestricted -Force -Verbose"',
logoutput => true
}
exec {'psremoting':
path => 'C:\Windows\sysnative\WindowsPowerShell\v1.0',
command => 'Powershell.exe "Enable-PSRemoting -Force -Verbose"',
logoutput => true,
require => Exec["executionpolicy"]
}
exec {'psmemory':
path => 'C:\Windows\sysnative\WindowsPowerShell\v1.0',
command => 'Powershell.exe "Set-Item WSMan:\localhost\Shell\MaxMemoryPerShellMB 2048"',
logoutput => true,
require => [Exec["psremoting"],Exec["executionpolicy"]]
}
}
我遇到了不同的错误,我正在考虑更改方法并将这些内联cmdlet添加到.ps1脚本中。有关运行powershell内联脚本作为木偶食谱的任何建议吗?
感谢。
答案 0 :(得分:1)