install_media_pack.ps1 174 B

12345
  1. $osInfo = Get-WmiObject -Class Win32_OperatingSystem
  2. # check if running on Windows Server
  3. if ($osInfo.ProductType -eq 3) {
  4. Install-WindowsFeature Server-Media-Foundation
  5. }