NVIDIA PhysX System Software
Install Detection
This script will look at the installed package list from Windows for anything matching PhysX.
$Installed = Get-Package "NVIDIA PhysX System Software*"
if ($Installed.Length -ge 0) {
exit 1;
} else {
exit 0;
}
Install Script
This script installs the NVIDIA PhysX redistributable silently.
Write-Host "Installing PhysX (9.14.0702) Redistributable..."
Start-Process -FilePath "msiexec.exe" -ArgumentList '/i "PhysX-9.14.0702-SystemSoftware.msi" /quiet /norestart' -Wait -Passthru
Write-Host "Done!"