Juzz Posted August 20, 2015 Posted August 20, 2015 Hey there, I've developed a script to make sure that Razer Synapse is running before Aida64 is started, this way Aida64 isn't killed when Razer Synapse starts up. You could generally use it if you have a program that needs to be started before Aida64 should be started. $StrRz = "rzsynapse" $StrWD = "C:\Program Files (x86)\FinalWire\AIDA64 Extreme\" $StrAida = "C:\Program Files (x86)\FinalWire\AIDA64 Extreme\aida64.exe" Start-Sleep 10 # Is Razer Synapse Running? #$bResult = Get-Process -name $StrRz -erroraction silentlycontinue #echo $bResult while (!(Get-Process -name $StrRz -erroraction silentlycontinue)) { Start-Sleep 3 } # Enable Razer Synapse time to start up Start-Sleep 5 # Start Aida64 Start-Process -FilePath $StrAida -WorkingDirectory $StrWD Quote
Juzz Posted August 20, 2015 Author Posted August 20, 2015 Forgot to mention that this is a Windows PowerShell script. Quote
Fiery Posted August 20, 2015 Posted August 20, 2015 Do you mean that if on your system AIDA64 starts up before Razer Synapse, then Synapse will kill the AIDA64 process when it starts up? Why would it do that? Or maybe it's a mixup inside Synapse, so the Razer DLL that AIDA64 uses would crash and it would pull AIDA64 main process with itself? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.