Disable Enhanced Security in Internet Explorer on Windows Server 2019
Internet Explorer'in varsayilan islevi, Windows'un sunucu sürümlerinde önemli ölçüde azalir ve içerik engelleme uyarilari görünür. Ama durumu düzeltmenin bir yolu var. Bu ögreticide, Windows Server 2019'da Internet Explorer'da Gelismis Güvenligi devre disi birakacagiz.
Yöntem 1 - Sunucu Yöneticisi araciligiyla Devre Disi Birak
Method 1 - Disable via Server Manager

Click Local Server in the left menu.
Sol menüden Yerel Sunucu'ya tiklayin.

On the right side you will see the IE Enhanced Security Configuration parameter. Click On next to it.
Sag tarafta IE Enhanced Security Configuration parametresini göreceksiniz. Yanindaki Üzerine tiklayin.

In the window that appears, disable this option for administrators and users and click OK.
Görünen pencerede, yöneticiler ve kullanicilar için bu seçenegi devre disi birakin ve Tamam'a tiklayin.

Server Manager will show Off for IE Enhanced Security Configuration after a few seconds. If it doesn't, try updating the window contents.
Sunucu Yöneticisi, birkaç saniye sonra IE Gelismis Güvenlik Yapilandirmasi için Kapali gösterecektir. Olmazsa, pencere içerigini güncellemeyi deneyin.

Screenshot 5. IE Enhanced Security Configuration is turned off.
You can now fully use Internet Explorer on Windows Server 2019
Artik Windows Server 2019'da Internet Explorer'i tam olarak kullanabilirsiniz
Method 2 - Disable via PowerShell
Open PowerShell.
Yöntem 2 - PowerShell ile Devre Disi Birak
PowerShell'i açin.

Screenshot 6. Open PowerShell. Ekran Görüntüsü 6. PowerShell'i açin.
Paste the following script there and press Enter. Sometimes a double tap is required
Asagidaki betigi oraya yapistirin ve Enter tusuna basin. Bazen çift dokunus gerekir
function Disable-IEESC {
$AdminKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}"
$UserKey = "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}"
Set-ItemProperty -Path $AdminKey -Name "IsInstalled" -Value 0
Set-ItemProperty -Path $UserKey -Name "IsInstalled" -Value 0
Stop-Process -Name Explorer
Write-Host "IE Enhanced Security Configuration (ESC) has been disabled." -ForegroundColor Green
}
Disable-IEESC
internet Explorer now works in normal mode.
