Skip to content

Instantly share code, notes, and snippets.

@thaddeusc1
Created April 12, 2022 01:10
Show Gist options
  • Save thaddeusc1/925f4eff3502638d8b85f980d20f133c to your computer and use it in GitHub Desktop.
Save thaddeusc1/925f4eff3502638d8b85f980d20f133c to your computer and use it in GitHub Desktop.
Point 32-bit PowerDVD 21 apps to the 32-bit Microsoft Visual C++ 2012 Redistributable libraries in Windows 11
winget.exe install --id Microsoft.VC++2012Redist-x86 --exact
New-Item -Path 'C:\Program Files\CyberLink\PowerDVD21\OLRSubmission\' -Name MSVCR110.dll -ItemType SymbolicLink -Target C:\Windows\SysWOW64\msvcr110.dll
New-Item -Path 'C:\Program Files\CyberLink\PowerDVD21\OLRSubmission\' -Name MSVCP110.dll -ItemType SymbolicLink -Target C:\Windows\SysWOW64\msvcp110.dll
New-Item -Path 'C:\Program Files\CyberLink\PowerDVD21\Movie' -Name MSVCR110.dll -ItemType SymbolicLink -Target C:\Windows\SysWOW64\msvcr110.dll
New-Item -Path 'C:\Program Files\CyberLink\PowerDVD21\Movie' -Name MSVCP110.dll -ItemType SymbolicLink -Target C:\Windows\SysWOW64\msvcp110.dll
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment