Windows

MDT 和 Powershell

  • July 7, 2014

錯誤資訊 權限 設置

我檢查了路徑名,它們是正確的。我試過編輯權限,它們看起來很好。

我還應該嘗試什麼?

編輯:

我也嘗試過這種方式: http ://damonjohns.com/2014/03/12/removing-windows-8-1-modern-applications-during-your-mdt-sccm-task-sequence/

我沒有看到螢幕,但腳本似乎沒有複製 ps1 文件來執行它們。

我的腳本:

powershell.exe -Command “set-ExecutionPolicy Unrestricted -Force; cpi ‘%DEPLOYROOT%\Applications\SCRIPT - Enable Remote Managament By Opening Firewall Rules\script_enable_remote_management_open_firewall_rules.ps1′ -destination c:\; c:\script_enable_remote_management_open_firewall_rules.ps1"

編輯:每次我檢查 C:\ 我都沒有看到我的規則被複製了。我現在也完成了所有操作而沒有出現失敗螢幕,但我沒有看到腳本,也沒有看到它們被執行。

要執行 power shell 腳本,您需要將其添加為任務序列項。您可以通過將Run PowerShell Script條目添加到您的任務序列中來做到這一點。

確保在系統從安裝/應用映像重新啟動後添加它。

如何添加到任務序列中。

在任務配置中,您需要指向包含命令的 ps1 文件。您可能能夠執行單個命令(我不確定)。

引用自:https://serverfault.com/questions/609444