November 19, 200421 yr I've released my Unattended Audio Player...http://www.msfn.org/board/index.php?showtopic=32654
November 22, 200421 yr let me get this right...you want your own custom install program to start another process (media player) but not wait on it and then kill that process when the install is done, right?start mypath\myapp /myargsuse this to start the process without having to kill it to continue the batchtaskkill /f myapp.exeuse this to stop the app when the batch is finished
November 22, 200421 yr he wants audio to play in the background while his unattended CD installs stuff. and trying the /start \pathtoplayer\player.exe /myargs doesn't work as it waits for the media player to close. even calling it from a seperate batch file i couldn't find a way to allow the player to play the Mp3 and still install in the background.
November 22, 200421 yr freaky...i wonder why that doesnt work when it does work inside windows...a vbs should be able to do it...Option ExplicitDim oShellSet oShell = CreateObject("WScript.Shell")oShell.Run "myapp /myargs", 0, False0 is for hidden, 2 is for minimized but not hiddenFalse tells it not to wait for the process to finish before continuing the scriptthen again... i dont know if a vbs will run... probably not...
Create an account or sign in to comment