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
질문됨 일 년 전258회 조회
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
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠