TL / DR How do I prevent the Enterprise Guide standalone installer from rebooting a Windows 10 desktop? -------------------------------------------------------- Now for the details. I am trying to use the standalone installer for Enterprise Guide 7.12 to deploy EG via SCCM to Windows 10 desktops. I have created a response file using the command line SASEnterpriseGuide71_x86_x64.exe.exe ‐‐ ‐record ‐responsefile "<full path to the response file>" I am using a PowerShell script to run the installation as the installer does not accept relative paths to the response file, and requires a full path. The line that actually does the install is Start-Process -FilePath 'SASEnterpriseGuide71_x86_x64.exe' -ArguementList ' /verysilent -- -responsefile $workingDirectory\SASEnterpriseGuide712R1.properties' -Wait -PassThru $workingDirectory is a varible containing the path to the ccmcache folder the install is running from. This script works; however, the installer will intermittently reboot the machine. I am testing on a virtual machine that I can revert to the same state before each install, and the issue will still occur intermittently. If I catch the reboot (an unsaved file in notepad is a good way of doing this) and cancel it before it happens, the install will continue on as if the reboot didn't need to occur. After the install, I can't see any errors in the logs and EG appears to be working correctly. I have searched through the knowledge base article, the install guide, these community forums as well as the wider internet, but I cannot find any information relating to the standlone installer. So my question is, can you suppress all reboot called by the standalone installer? Thanks in advance, AndrewG
... View more