InstallFirefox.ps1
configuration InstallFirefox { $productId = "972ce4c6-7e08-4474-a285-3208198ce6fd" $baseUri = "http://hicap.frontmotion.com.s3.amazonaws.com/Firefox/FirefoxESR-24.6.0/FirefoxESR-24.6.0-ach.msi" $targetFilePath = "$env:SystemDrive\Windows\DtlDownloads\FirefoxESR-24.6.0-ach.msi" Invoke-WebRequest -Uri $baseUri -OutFile $targetFilePath Package Installer { Ensure = "Present" Path = $targetFilePath Name = "Chrome" ProductId = $productId } } InstallFirefox |