Windows 2019 AMIs. Packaged with Edge?

0

Is it possible to request that the Windows 2019 AMIs now come pre-packaged with Microsoft Edge installed? Internet Explorer is useless and on the Azure platform their Windows 2019 image has Edge already installed. It would be nice to be able to use a browser out of the box.

profile picture
質問済み 1年前251ビュー
1回答
1

Hello!

Thank you for taking time to ask a question on re:Post John.

One of the main reasons behind this is because Microsoft has not sunset Internet Explorer for Windows Server until support ends in 2029. This question in re:Post also has a great explanation.

You can also try an alternative approach. You may install Edge (or another browser) with a similar script in the user data at an EC2 launch. This PowerShell snippet is just an example that may be able to get you started.

Set-Location “C:\Windows\system32”

#Change TimeZone
C:\Windows\System32\tzutil /s “AUS Eastern Standard Time”
#Install Chrome
$Path = $env:TEMP;
$Installer = “chrome_installer.exe”;
Invoke-WebRequest “http://dl.google.com/chrome/install/375.126/chrome_installer.exe” -OutFile     $Path\$Installer;
Start-Process -FilePath $Path\$Installer -ArgumentList “/silent /install” -Verb RunAs -Wait;
Remove-Item $Path\$Installer

#Set Chrome as default browser
$chromePath = "${Env:ProgramFiles(x86)}\Google\Chrome\Application\"
$chromeApp = “chrome.exe”
$chromeCommandArgs = “--make-default-browser”
& “$chromePath$chromeApp” $chromeCommandArgs

Microsoft recently came out with an article that may also help you. There are steps there that show you how to add Edge back into a container image.

Hope all of the different options help!

profile pictureAWS
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ