Hello Everyone,
I'm creating a script to install a program and i need to apply some patches after the installation is complete. However, those patches require to stop and start some services and i'm unable to do so.
The part of the script to manage the services is as follows:
; Patches Start!
; Stop services to be able to copy the patch files
RunWait("net stop SafeCom" & "Service", @SW_HIDE)
RunWait("net stop Spooler", @SW_HIDE)
; Copy the SafeCom patches to the main directory
FileCo