如果我跑
runas /savecred /user:yogurt\administrator "del c:\testt"
我收到這個錯誤
Attempting to start del c:\testt as user "yogurt\administrator" ...
RUNAS ERROR: Unable to run - del c:\testt
2: The system cannot find the file specified.
但當我跑步時
runas /savecred /user:yogurt\administrator "cmd"
新的 dos 視窗打開,然後del c:\testt
就可以正常工作了。
知道如何在 Windows7 上解決這個問題嗎?
我想刪除管理員建立的文件。僅當管理員刪除它時它才起作用。
答案1
它認為您正在尋找名為del
命令的檔案。 Runas 不知道這del
是內部的cmd
。嘗試
runas /savecred /user:yogurt\administrator "cmd /c del c:\testt"