How to Disable/remove Smartscreen. Windows Defender SmartScreen uygulamasını aşağıdaki kodlarla kapatıp silebilirsiniz.
Yapmanız gereken Administrator yetkisiyle CMD açmak ve sonra aşağıdaki kodların hepsini yapıştırıp enterlemek.
En son bir enter daha smartscreen.exe dosyası silinmiştir.
Bir de smartscreenps.dll dosyası var onu silmek için önce tekrar yönetici haklarında CMD açın.
Görev yöneticisini açın ve Dosya gezginine sağ tıklayıp görevi sonlandırın. Sonra alt + tab tuşları ile CMD'ye geçiş yapın aşağıdaki kodları yapıştırın ve enterleyin.
Tekrar alt + tab ile görev yöneticisine dönün ve Dosya - Yeni görev çalıştır explorer.exe yszıp enterleyin.
Yapmanız gereken Administrator yetkisiyle CMD açmak ve sonra aşağıdaki kodların hepsini yapıştırıp enterlemek.
En son bir enter daha smartscreen.exe dosyası silinmiştir.
Kod:
reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "SmartScreenEnabled" /t REG_SZ /d "Off" /f
reg add "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t REG_DWORD /d "0" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t "REG_DWORD" /d "0" /f
reg add "HKLM\Software\Policies\Microsoft\Windows\System" /v "EnableSmartScreen" /t "REG_DWORD" /d "0" /f
reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SmartScreen" /v "ConfigureAppInstallControl" /t REG_SZ /d "Anywhere" /f
reg add "HKLM\Software\Policies\Microsoft\Windows Defender\SmartScreen" /v "ConfigureAppInstallControlEnabled" /t "REG_DWORD" /d "0" /f
takeown /s %computername% /u %username% /f "%WinDir%\System32\smartscreen.exe"
icacls "%WinDir%\System32\smartscreen.exe" /grant:r %username%:F
taskkill /im smartscreen.exe /f
del "%WinDir%\System32\smartscreen.exe" /s /f /q
Bir de smartscreenps.dll dosyası var onu silmek için önce tekrar yönetici haklarında CMD açın.
Görev yöneticisini açın ve Dosya gezginine sağ tıklayıp görevi sonlandırın. Sonra alt + tab tuşları ile CMD'ye geçiş yapın aşağıdaki kodları yapıştırın ve enterleyin.
Kod:
takeown /s %computername% /u %username% /f "%WinDir%\System32\smartscreenps.dll"
icacls "%WinDir%\System32\smartscreenps.dll" /grant:r %username%:F
taskkill /im smartscreenps.dll /f
del "%WinDir%\System32\smartscreenps.dll" /s /f /q
Tekrar alt + tab ile görev yöneticisine dönün ve Dosya - Yeni görev çalıştır explorer.exe yszıp enterleyin.