1
我正在嘗試使用代碼located here,並對HTA進行了一些調整。它的工作原理到一個點:彈出窗口出現並關閉目標進程
Set wshShell = WScript.CreateObject("WScript.Shell")
變爲:
Set wshShell = CreateObject("WScript.Shell")
彈出來了,但直到我點擊它,它不會消失。我需要它在進程運行時出現,然後在結束時消失。爲什麼我的執行失敗呢?
ProgressMsg "Copying, Please wait.", "File Being Copied"
strCMD = "cmd.exe /c robocopy " & strLocalSemesterCourse & " " & strServerSemesterCourse &" " & strFileName & " /LOG+:" & strLogName & " /V /FP /TEE"
nReturn = objShell.Run(strCMD, 1, true)
ProgressMsg "", "Finished"
嗨 - 感謝您的幫助。我能夠得到它的幫助。 –