Is it possible to force a restart after the AWinstall installer completes?
Currently the simplest way to do this is to run a small script file. VBScript Code: Dim sysName = “winmgmts:{impersonationLevel=impersonate,(shutdown,remoteshutdown)}!//” For Each os In GetObject(sysName).InstancesOf(“Win32_OperatingSystem”) retCode = os.Win32Shutdown(4, 0) Next Save this code to a text file with .VBS extension. Add this file to the project, and add the “Run” command that will launch it after installation.