You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

StresStimulus supports unattended installation for automated deployment purposes. To install StresStimulus unattended on a controller, run the below PowerShell script on the target machine. Note that after installation, StresStimulus controller must be activated.

Install StresStimulus Unattended
$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'

To install StresStimulus unattended on an agent machine change the last line of the above script as follows:

 Start-Process -FilePath "${DownloadPath}StresStimulusInstaller_cmd.exe" -ArgumentList '/q /agent'

Note:

StresStimulus Agent machines do not need a to be activated with a license.

  • No labels