Author : MD TAREQ HASSAN | Updated : 2021/10/27
Disable Internet Explorer Enhanced Security
- Start > Click “Server Manager”
- Local Server (on the left side)
- Click the “On” link next of “IE Enhanced Security Configuration”
- Select “Off” for both Administrators and Users > OK
- Courtesy: https://www.top-password.com/blog/disable-internet-explorer-enhanced-security-configuration-in-windows-server/
Install Microsoft Edge
Download and install Microsoft Edge browser: https://www.microsoft.com/en-us/edge/business/download
Or use following PowerShell script (courtesy: https://techexpert.tips/powershell/powershell-installing-microsoft-edge/)
md -Path $env:temp\edgeinstall -erroraction SilentlyContinue | Out-Null
$Download = join-path $env:temp\edgeinstall MicrosoftEdgeEnterpriseX64.msi
Invoke-WebRequest 'https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/a2662b5b-97d0-4312-8946-598355851b3b/MicrosoftEdgeEnterpriseX64.msi' -OutFile $Download
Start-Process "$Download" -ArgumentList "/quiet /passive"
Start-Process "$Download" -ArgumentList "/quiet"
md -Path $env:temp\edgeinstall -erroraction SilentlyContinue | Out-Null
$Download = join-path $env:temp\edgeinstall MicrosoftEdgeEnterpriseX64.msi
Invoke-WebRequest 'https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/a2662b5b-97d0-4312-8946-598355851b3b/MicrosoftEdgeEnterpriseX64.msi' -OutFile $Download
Start-Process "$Download" -ArgumentList "/quiet"
Install Tools
- Git: https://git-scm.com/download/win
- Visual Studio: https://visualstudio.microsoft.com/downloads/
- Download Azure storage explorer: https://go.microsoft.com/fwlink/?LinkId=708343&clcid=0x409
- Download and install notepad plus plus: https://github.com/notepad-plus-plus/notepad-plus-plus/releases/