SE Articles From the Field
This Powershell script can be run as a startup script to perform a Connector ID Key Installation.
Script:
$installpath = "\\server\share\install-connectorID-Key-6_1_4-1-winStandard.exe"
$software = "connector ID";
$installed = (Get-ItemProperty HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Where { $_.DisplayName -eq $software }) -ne $null
If(-Not $installed) {
#Write-Host "'$software' NOT is installed.";
Start-Process $installpath -ArgumentList /quiet
} else {
#$Write-Host "'$software' is installed."
$null
}
Remove .txt from file for use.