我已经按照以下步骤使用 PSD 扩展创建了 MDT 环境脚步。
有一个运行 powershell 脚本(配置)的默认步骤。
并在 DeploymentShare 脚本文件夹中创建了一个脚本。
刚刚将以下内容添加到我创建的 powershell 脚本中。
#PSDConfigure1.ps1
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections" -value 0
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
但看起来,上述内容并没有在任务序列之后的机器上应用。
请建议如何执行 powershell 脚本。
答案1
这可能是因为执行政策。
尝试这个:
%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -Noninteractive -Executionpolicy bypass -Noprofile -File {pathToFile.ps1}