September 27, 200718 yr This is a part of a scritp .CMD:copy d:\files\setup.exe c:\temp\setup.exestart c:\temp\setup.exe /s(I need a delay here)del c:\temp\setup.exereg delete (the path here...)========I need this delay because when it goes to delete the setup.exe in the temp dir and the reg of the software, the setup is in execution! The command lines don't find the path of the reg because he is not created in the moment (the seput is running).And the sleep command don't run: sleep' is not recognized as an internal or external command.operable program or batch file
September 27, 200718 yr You could try thisping 127.0.0.1 /n 2 > NULWhere 2 = a number of times to ping. Bit cheap but it works Alternatively you could remove the start from "start c:\temp\setup.exe /s"That way the batch script won't continue until setup.exe has finished Edited September 27, 200718 yr by Deman
September 27, 200718 yr Author You could try thisping 127.0.0.1 /n 2 > NULWhere 2 = a number of times to ping. Bit cheap but it works Alternatively you could remove the start from "start c:\temp\setup.exe /s"That way the batch script won't continue until setup.exe has finishedOh yeah!!!! Perfect!!!! Thanks!!!!
September 27, 200718 yr I need this delay because when it goes to delete the setup.exe in the temp dir and the reg of the software, the setup is in execution!Have you thought about changing the script to use an appropriate switch with the Start Commandcopy d:\files\setup.exe c:\tempstart "" /wait c:\temp\setup.exe /sdel c:\temp\setup.exereg delete (the path here...)Using /wait will mean that the delete command will not be invoked until the setup has completed.
Create an account or sign in to comment