OpenAL: Difference between revisions
DoctorDalek (talk | contribs) No edit summary |
DoctorDalek (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Redistributables]] | [[Category:Redistributables]] | ||
{{Redistributable.DownloadBox | |||
|Downloads = | |||
{{Redistributable.DownloadBox.Row|Version = 2.0.7.0|File = OpenAL.zip|ReleaseDate = }} | |||
}} | |||
{{Redistributable.Scripts.DetectInstall | {{Redistributable.Scripts.DetectInstall | ||
|Name = Install Detection | |Name = Install Detection |
Revision as of 00:29, 30 November 2023
Downloads
Version | Release Date | File |
---|---|---|
2.0.7.0 | Download |
Install Detection
This script will look at the installed package list from Windows for anything matching OpenAL.
$Installed = Get-Package "NVIDIA PhysX System Software*"
if ($Installed.Length -ge 0) {
$Host.SetShouldExit(1)
} else {
$Host.SetShouldExit(0)
}
Install Script
Installs the OpenAL redistributable silently.
Write-Host "Installing OpenAL (2.0.7.0) Redistributable..."
Start-Process -FilePath "oalinst.exe" -ArgumentList "/S" -Wait -Passthru
Write-Host "Done!"