[vc_row][vc_column][vc_column_text]
CryptoStopper™ Install via PowerShell Script
[/vc_column_text][vc_video link=”https://www.youtube.com/watch?v=wGiqXfurR3w&t=1s”][us_separator][vc_column_text]
PowerShell Script:
#Before running this script, update line 24 with the customer license key.
#variables
$cs_web_path = ‘https://go.watchpointdata.com/hubfs/CryptoStopper/CryptoStopper-installer.msi’
$cs_local_path = ‘C:\Temp\CryptoStopper_Install’
#Check if temp directory exists
if(Get-Item -Path $cs_local_path -ErrorAction Ignore)
{
Write-Host “Folder Exists”
}
else
{
#PowerShell Create directory if not exists
New-Item $cs_local_path -ItemType Directory
}
#Download latest version of CryptoStopper and save to temp
Invoke-WebRequest -uri $cs_web_path -OutFile $cs_local_path\CryptoStopper-installer.msi
#Create json file
cd $cs_local_path
fsutil file Createnew ‘cs_config.json’ 0
echo ‘{“Serialkey”:”XXXX-XXXX-XXXX-XXXX”}’ > cs_config.json
#Install CryptoStopper
msiexec /qn /i $cs_local_path\CryptoStopper-installer.msi CONFIGFILE=$cs_local_path\cs_config.json
Steps for using the PowerShell script:
- Use the snippet above to create the PowerShell script.
- Update line 24 with the correct serial key for the customer install.
- Run as administrator on the target machine or load in an RMM and push to the target computers.
If you are using an RMM, you can create a script for each customer with their key. This is the recommended method because if you add more endpoints to a customer location, you can locate their PowerShell script and push CryptoStopper to the new endpoints without editing the script.
Alternatively, you can create one script but you will need to remember to update the script with the correct customer key each time you deploy it.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=”1/6″][/vc_column][vc_column width=”2/3″][us_cta title=”Having trouble?” btn_label=”Contact us for help” btn_style=”9″ btn_icon=”fas|life-ring” btn_iconpos=”right”]We’re here to help. Click on the live chat box in the lower right-hand corner of your screen or follow the link to contact us and ask us a question![/us_cta][/vc_column][vc_column width=”1/6″][/vc_column][/vc_row]