1 - Aşağıdaki kodu kopylayıp oluşturacağınız yeni bir bat dosyasının içine kopyalayın. Kayıt edin
2 - Sağ tıklayıp yönetici haklarıyla çalıştırın.
Kod: Tümünü seç
cd %PROGRAMFILES(X86)%\Microsoft\Edge\Application\8*\Installer
setup --uninstall --force-uninstall --system-levelAşağıdaki kodu yönetici haklarıyla başlattığınız komut isteminde yapıştırıp çalıştırın
Kod: Tümünü seç
REG ADD "HKLM\SOFTWARE\Microsoft\EdgeUpdate" /v "DoNotUpdateToEdgeWithChromium" /t REG_DWORD /d "1" /fEdge Legacy için pek çok deneme yaptım kaldıramadım ama
C:\Windows\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe
kalsörünün içindeki 2 dosyanın sahipliklerini alıp adlarına .bak ekleyin
MicrosoftEdge.exe ve MicrosoftPdfReader.exe
MicrosoftEdge.exe.bak ve MicrosoftPdfReader.exe.bak yapın.
artık arka planda çalışmayacaklar, Bazı güncellemerden sonra bu işlemi tekrar yapmanız gerekebilir.
Windows 11de EDGE kaldırmak için kullandığım script.
Anlatımını boş bir zamanda yaparız.
Hasarlardan müessemiz sorumlu değildir.
Bazı klasörler silinmiyor, manuel olarak siliyorum.
Kod: Tümünü seç
:: REMOVE MICROSOFT EDGE ::
:: Uninstall Microsoft Edge 8
cd /D %PROGRAMFILES(X86)%\Microsoft\Edge\Application\8*\Installer
setup --uninstall --force-uninstall --system-level
:: Uninstall Microsoft Edge 9
cd /D %PROGRAMFILES(X86)%\Microsoft\Edge\Application\9*\Installer
setup --uninstall --force-uninstall --system-level
TIMEOUT /T 3 /NOBREAK
rd /q /s "C:\Program Files (x86)\Microsoft\Edge"
rd /q /s "C:\Program Files (x86)\Microsoft\EdgeCore"
rd /q /s "C:\Program Files (x86)\Microsoft\EdgeUpdate"
rd /q /s "C:\Program Files (x86)\Microsoft\EdgeView"
:: Microsoft Edge Update Service (edgeupdate)
sc stop "edgeupdate"
sc config "edgeupdate" start=disabled
:: Microsoft Edge Update Service (edgeupdatem)
sc stop "edgeupdatem"
sc config "edgeupdatem" start=disabled
:: Microsoft Edge Elevation Service (MicrosoftEdgeElevationService)
sc stop "MicrosoftEdgeElevationService"
sc config "MicrosoftEdgeElevationService" start=disabled
:: Microsoft Edge - Automatic Installation by Windows Update [DISABLE]
REG ADD "HKLM\SOFTWARE\Microsoft\EdgeUpdate" /v "DoNotUpdateToEdgeWithChromium" /t REG_DWORD /d "1" /f
:: Microsoft Edge - Allow Prelaunch [DISABLE]
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v "AllowPrelaunch" /t REG_DWORD /d "0" /f
:: Microsoft Edge - Allow Tab Preloading [DISABLE]
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\TabPreloader" /v "AllowTabPreloading" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\TabPreloader" /v "PreventTabPreloading" /t REG_DWORD /d "1" /f
:: Microsoft Edge - Page Prediction [DISABLE]
REG ADD "HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\FlipAhead" /v "FPEnabled" /t REG_DWORD /d "0" /f
:: Microsoft Edge - Sync Favorites Between IE And Edge [DISABLE]
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v "SyncFavoritesBetweenIEAndMicrosoftEdge" /t REG_DWORD /d "1" /f
:: Microsoft Edge - Live Tile Data Collection [DISABLE]
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v "PreventLiveTileDataCollection" /t REG_DWORD /d "1" /f
:: EDGE CHROMIUM PRIVACY :: OOSHUT
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "ConfigureDoNotTrack" /t REG_DWORD /d "1" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "PaymentMethodQueryEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "SendSiteInfoToImproveServices" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "MetricsReportingEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "PersonalizationReportingEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "AddressBarMicrosoftSearchInBingProviderEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "UserFeedbackAllowed" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "AutofillCreditCardEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "AutofillAddressEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "LocalProvidersEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "SearchSuggestEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "ResolveNavigationErrorsUseWebService" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "AlternateErrorPagesEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "NetworkPredictionOptions" /t REG_DWORD /d "2" /f
REG ADD "HKCU\SOFTWARE\Policies\Microsoft\Edge" /v "SmartScreenEnabled" /t REG_DWORD /d "0" /f
:: EDGE LEGACY PRIVACY ::
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\FlipAhead" /v "FPEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v "AllowPrelaunch" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\TabPreloader" /v "AllowTabPreloading" /t REG_DWORD /d "0" /f
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "DoNotTrack" /t REG_DWORD /d "1" /f
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "ShowSearchSuggestionsGlobal" /t REG_DWORD /d "0" /f
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "Use FormSuggest" /t REG_SZ /d "no" /f
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main" /v "OptimizeWindowsSearchResultsForScreenReaders" /t REG_DWORD /d "0" /f
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI" /v "EnableCortana" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Microsoft\PolicyManager\current\device\Browser" /v "AllowAddressBarDropdown" /t REG_DWORD /d "0" /f
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI\ShowSearchHistory" /ve /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "UserFeedbackAllowed" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "AutofillCreditCardEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Privacy" /v "EnableEncryptedMediaExtensions" /t REG_DWORD /d "0" /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
taskkill /f /im "MicrosoftEdgeUpdate.exe"
taskkill /f /im "MicrosoftEdgeUpdate.exe"
rd /q /s "C:\Program Files (x86)\Microsoft\Edge"
rd /q /s "C:\Program Files (x86)\Microsoft\EdgeCore"
rd /q /s "C:\Program Files (x86)\Microsoft\EdgeUpdate"
rd /q /s "C:\Program Files (x86)\Microsoft\EdgeView"
rd /q /s "%LocalAppData%\Microsoft\Edge"
del /q "%userprofile%\Desktop\Microsoft Edge.lnk"
del /q "%Public%\Desktop\Microsoft Edge.lnk"
del /q "%AppData%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk"
PAUSE



