我有一個 PS 腳本(透過 SCCM 部署)需要刪除 %windir%\System32\OOBE\Info\Backgrounds 中的項目,但它完全拒絕這樣做。
如果我手動執行,效果會很完美。但如果它是由系統執行的,它會設定權限,但永遠不會刪除檔案。
& takeown /f "C:\Windows\System32\oobe\info\backgrounds" /a /r /d y
& icacls "C:\Windows\System32\oobe\info\backgrounds" /grant administrators:F /t /c
& del /q /f "C:\Windows\System32\oobe\info\backgrounds\*"
對此有什麼想法嗎?