Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

StresStimulus supports unattended installation for automated deployment purposes. To install StresStimulus unattended, run the below PowerShell script on the target machine.


Code Block
languagepowershell
firstline1
titleInstall StresStimulus Unattended
linenumberstrue
$DownloadPath = "${env:USERPROFILE}\Downloads\"

$ConfigScript = '<configuration>
     <startup>
          <supportedRuntime version="v4.0.30319"/>
          <supportedRuntime version="v2.0.50727"/>
     </startup>
</configuration>'

Invoke-WebRequest -Uri "http://update.stimulustechnology.com/stresstimulus/StresStimulusInstaller_cmd.exe" -OutFile "${DownloadPath}StresStimulusInstaller_cmd.exe"
New-Item -Path "${DownloadPath}" -Name "StresStimulusInstaller_cmd.exe.config" -ItemType "file" -Value "${ConfigScript}"
Start-Process -FilePath "${DownloadPath}StresStimulusInstaller_cmd.exe" -ArgumentList '/q'