installPlaywrightReqs.ps1 611 B

123456789101112
  1. Write-Host "Set-ExecutionPolicy Bypass -Scope Process"
  2. Set-ExecutionPolicy Bypass -Scope Process
  3. if ((Get-WindowsOptionalFeature -FeatureName ServerMediaFoundation -Online).State -eq "Enabled") {
  4. Write-Host "ServerMediaFoundation feature already enabled."
  5. } else {
  6. Write-Host "Enable-WindowsOptionalFeature -Online -FeatureName ServerMediaFoundation (For Playwright)"
  7. try {
  8. Enable-WindowsOptionalFeature -Online -FeatureName ServerMediaFoundation
  9. } catch {
  10. Write-Host "Enable-WindowsOptionalFeature -Online -FeatureName ServerMediaFoundation threw an exception: $PSItem"
  11. }
  12. }