2016-04-11 75 views
1

我對Powershell非常陌生,只是想創建一個簡單的命令,我可以將其放入任務計劃程序以備份文件夾。我嘗試了一個簡單的命令在PowerShell中,它工作正常,但是當我嘗試右鍵單擊在PowerShell中打開它快速打開,然後關閉。我可以看到紅色的錯誤文本,我想它說,「字符串缺少終結者」。Powershell腳本在複製到Powershell時運行,但未點擊時運行

這是代碼。

Copy-Item 'C:\Users\Me\Documents' 'E:\Me\ImportantDocuments\Backup\' -recurse -force 

回答

1

您不能直接在任務計劃程序中調用Powershell。 請執行以下操作: 對於任務調度程序「啓動程序」規定: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe 是的,我知道它說1.0版,但是這永遠不會改變,即仍與第4版

作品爲可選aguments ,請指定: -Command &"{ Copy-item C:\temp\source.txt C:\temp\destination.txt }" 或者,您可以指定一個ps腳本文件,其中包含-File C:\temp\test.ps1 enter image description here

相關問題