relati7ity Posted July 5 Share Posted July 5 (edited) //İzleyeceğiniz görseldeki işlemler... 1 = Microsoft Edge'nin kurulu ve uygulamalardaki halini gösterdim. 2 = Sahiplik Al -Ekle.reg ekledim. ==> Önemli 1 ==> https://www.mediafire.com/file/1nwddqxngtgxmdm/Sahiplik_Al_-Ekle.reg/file 3 = Program Files (x86) / Microsoft - Klasörünü silmek istedim. 4 = Silinmiyor hataları geldi, açık olan uygulamalarını kapattım. 5 = Program Files (x86) / Microsoft - Klasörünü sildim. 6 = Microsoft Edge -Sil.reg ekledim. ==> Önemli 2 ==> https://www.mediafire.com/file/erw924zcg6glcj2/Edge_-Sil.reg/file @amd_turkey Sözünüzü dikkate alıp, bundan sonraki paylaşımlarımda uymaya çalışacağım. Önemli Not ==> Sahiplik al yaparak klasörleri silmeden, Edge -Sil çalıştırırsanız, sadece uygulama listesinden kaldırmış olursunuz... Spoiler Edited July 8 by relati7ity 5 1 Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 5 Author Share Posted July 5 (edited) Görselin sonu kaydedilmemiş, yeniden yüklüyorum... Edit = Görsel Yeniden yükledi... Edited July 5 by relati7ity Quote Link to comment Share on other sites More sharing options...
YILDIZ2361 Posted July 5 Share Posted July 5 Merhaba usta.Güncelleme ile geri gelmeyecekse,faydalı bir paylaşım olacak.şimdiden ellerine sağlık. 1 Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 5 Author Share Posted July 5 YILDIZ2361, 9 dakika önce yazdı: Merhaba usta.Güncelleme ile geri gelmeyecekse,faydalı bir paylaşım olacak.şimdiden ellerine sağlık. Denendi geri gelmiyor... Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 5 Author Share Posted July 5 YILDIZ2361, 18 dakika önce yazdı: Merhaba usta.Güncelleme ile geri gelmeyecekse,faydalı bir paylaşım olacak.şimdiden ellerine sağlık. Geri gelmiyor, denendi. Quote Link to comment Share on other sites More sharing options...
YILDIZ2361 Posted July 5 Share Posted July 5 Usta o zaman biz de konudan faydalanmak istiyoruz. Quote Link to comment Share on other sites More sharing options...
AdemYakups Posted July 5 Share Posted July 5 (edited) Gerek yok bence buna.. Aşağıdaki kodu ".bat" olarak kaydedin ve yönetici olarak çalştırırsanız daha kolay olur. Spoiler @echo off :: Check if ran as Admin net session >nul 2>&1 || (echo. & echo Yonetici olarak calistir. & echo. & pause & exit) :: Set Exist Variable - Check if Edge is intalled *Show Message, if not installed set "EXIST=0" :: Stop Edge Task taskkill /im "msedge.exe" /f >nul 2>&1 taskkill /im "MicrosoftEdgeUpdate.exe" /f >nul 2>&1 :: Uninstall - Edge if exist "C:\Program Files (x86)\Microsoft\Edge\Application\" ( for /f "delims=" %%a in ('dir /b "C:\Program Files (x86)\Microsoft\Edge\Application\"') do ( cd /d "C:\Program Files (x86)\Microsoft\Edge\Application\%%a\Installer\" >nul 2>&1 if exist "setup.exe" ( set "EXIST=1" echo - Removing Microsoft Edge start /w setup.exe --uninstall --system-level --force-uninstall) )) @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\Edge\" >NUL 2>NUL @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\EdgeUpdate\" >NUL 2>NUL @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\EdgeCore\" >NUL 2>NUL @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\Temp\" >NUL 2>NUL :: Uninstall - EdgeWebView if exist "C:\Program Files (x86)\Microsoft\EdgeWebView\Application\" ( for /f "delims=" %%a in ('dir /b "C:\Program Files (x86)\Microsoft\EdgeWebView\Application\"') do ( cd /d "C:\Program Files (x86)\Microsoft\EdgeWebView\Application\%%a\Installer\" >nul 2>&1 if exist "setup.exe" ( echo - Removing EdgeWebView start /w setup.exe --uninstall --msedgewebview --system-level --force-uninstall) )) :: Delete Edge desktop icon, from all users for /f "delims=" %%a in ('dir /b "C:\Users"') do ( del /S /Q "C:\Users\%%a\Desktop\edge.lnk" >nul 2>&1 del /S /Q "C:\Users\%%a\Desktop\Microsoft Edge.lnk" >nul 2>&1) del /f /q "%AppData%\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk" 2>nul del /f /q "%SystemRoot%\System32\config\systemprofile\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk" 2>nul :: Delete additional files if exist "C:\Windows\System32\MicrosoftEdgeCP.exe" ( for /f "delims=" %%a in ('dir /b "C:\Windows\System32\MicrosoftEdge*"') do ( takeown /f "C:\Windows\System32\%%a" > NUL 2>&1 icacls "C:\Windows\System32\%%a" /inheritance:e /grant "%UserName%:(OI)(CI)F" /T /C > NUL 2>&1 del /S /Q "C:\Windows\System32\%%a" > NUL 2>&1)) ::Kaldır-Yeni Eklemeler ::Reg kaydı reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul reg delete "HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul ::Klasör içeriği echo. for /D %%i in ("%u_path%\Edge SxS\Application\*") do if exist "%%i\installer\setup.exe" ( echo Canary... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-sxs --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" ( echo Internal... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" ( echo Dev... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" ( echo Beta... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" ( echo Stable... start "" /w "%%i\installer\setup.exe" --uninstall --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\EdgeWebView\Application\*") do if exist "%%i\installer\setup.exe" ( echo WebView2 Runtime... start "" /w "%%i\installer\setup.exe" --uninstall --msedgewebview --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\EdgeWebView\Application\*") do if exist "%%i\installer\setup.exe" ( echo WebView2 Runtime... start "" /w "%%i\installer\setup.exe" --uninstall --msedgewebview --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" ( echo Stable... start "" /w "%%i\installer\setup.exe" --uninstall --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" ( echo Beta... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" ( echo Dev... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" ( echo Internal... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --system-level --verbose-logging --force-uninstall --delete-profile ) ::Son reg add "HKLM\SOFTWARE\Microsoft\EdgeUpdate" /v DoNotUpdateToEdgeWithChromium /t REG_DWORD /d 1 /f 1>nul :: Not Installed if "%EXIST%"=="0" echo. & echo Edge ^(Chromium^) Yuklu Degil & echo. & timeout /t 4 & exit Edited July 5 by AdemYakups 2 3 Quote Link to comment Share on other sites More sharing options...
amd_turkey Posted July 6 Share Posted July 6 İçindeki pohpohlanma arzusunu dizginlediğiniz zaman farklı bir seviyeye ulaşmış olacaksınız. Ltsc 19 konumda bir Allahın kulu yorum yapmamış(tı, bu sabah alakasız bir yorum atmışlar), umurumda mı değil. Sanat sanat içindir, kendinizi nasıl konumlandırıyorsunuz bilmiyorum ama nihai amacınız konularım çok yorum alsın, üst listelerde yer alsın olmamalı. Bu sağlıklı bir düşünce tarzı değil. Bazen p.ştluğuna sistemlerimi Pe sistem içerisinden veriyorum, amaç bakın böyle bir şey var, öğrensinler diye. Allah rızası için şu fakire bir beğeni atın tarzı yaklaşım sizin felsefeniz olmamalı. Hem, çok beğeni gelirse regleri paylaşırım, şunu buldum ama paylaşmam tarzı ifadeleriniz rahatsız edici. Burası bir forum, herkesin amacı bilgi birikimine katkıda bulunmak. Ben şunu buldum, nette ilk, ama bilgi bende saklı konularınızı direk kapatıyorum merak da etmiyorum, bilginiz olsun. Çoğu konuda benden ve birçok üyeden daha iyisiniz. Bunları samimi ve sizi iyiye götürecek eleştiriler olarak kabul edin. La gene geldi herif konumu kirletti gitti diye düşünme, yazının içeriğini tekrar okuduğun zaman samimi olumlu eleştiri olduğunu göreceksin. 7 Quote Link to comment Share on other sites More sharing options...
alcalmc Posted July 6 Share Posted July 6 Please register to see this content. 2 Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 6 Author Share Posted July 6 AdemYakups, 10 saat önce yazdı: Gerek yok bence buna.. Aşağıdaki kodu ".bat" olarak kaydedin ve yönetici olarak çalştırırsanız daha kolay olur. İçeriği Görüntüle @echo off :: Check if ran as Admin net session >nul 2>&1 || (echo. & echo Yonetici olarak calistir. & echo. & pause & exit) :: Set Exist Variable - Check if Edge is intalled *Show Message, if not installed set "EXIST=0" :: Stop Edge Task taskkill /im "msedge.exe" /f >nul 2>&1 taskkill /im "MicrosoftEdgeUpdate.exe" /f >nul 2>&1 :: Uninstall - Edge if exist "C:\Program Files (x86)\Microsoft\Edge\Application\" ( for /f "delims=" %%a in ('dir /b "C:\Program Files (x86)\Microsoft\Edge\Application\"') do ( cd /d "C:\Program Files (x86)\Microsoft\Edge\Application\%%a\Installer\" >nul 2>&1 if exist "setup.exe" ( set "EXIST=1" echo - Removing Microsoft Edge start /w setup.exe --uninstall --system-level --force-uninstall) )) @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\Edge\" >NUL 2>NUL @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\EdgeUpdate\" >NUL 2>NUL @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\EdgeCore\" >NUL 2>NUL @RD /S /Q "%SystemDrive%\Program Files (x86)\Microsoft\Temp\" >NUL 2>NUL :: Uninstall - EdgeWebView if exist "C:\Program Files (x86)\Microsoft\EdgeWebView\Application\" ( for /f "delims=" %%a in ('dir /b "C:\Program Files (x86)\Microsoft\EdgeWebView\Application\"') do ( cd /d "C:\Program Files (x86)\Microsoft\EdgeWebView\Application\%%a\Installer\" >nul 2>&1 if exist "setup.exe" ( echo - Removing EdgeWebView start /w setup.exe --uninstall --msedgewebview --system-level --force-uninstall) )) :: Delete Edge desktop icon, from all users for /f "delims=" %%a in ('dir /b "C:\Users"') do ( del /S /Q "C:\Users\%%a\Desktop\edge.lnk" >nul 2>&1 del /S /Q "C:\Users\%%a\Desktop\Microsoft Edge.lnk" >nul 2>&1) del /f /q "%AppData%\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk" 2>nul del /f /q "%SystemRoot%\System32\config\systemprofile\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\Microsoft Edge*.lnk" 2>nul :: Delete additional files if exist "C:\Windows\System32\MicrosoftEdgeCP.exe" ( for /f "delims=" %%a in ('dir /b "C:\Windows\System32\MicrosoftEdge*"') do ( takeown /f "C:\Windows\System32\%%a" > NUL 2>&1 icacls "C:\Windows\System32\%%a" /inheritance:e /grant "%UserName%:(OI)(CI)F" /T /C > NUL 2>&1 del /S /Q "C:\Windows\System32\%%a" > NUL 2>&1)) ::Kaldır-Yeni Eklemeler ::Reg kaydı reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul reg delete "HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge" /v NoRemove /f 2>nul ::Klasör içeriği echo. for /D %%i in ("%u_path%\Edge SxS\Application\*") do if exist "%%i\installer\setup.exe" ( echo Canary... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-sxs --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" ( echo Internal... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" ( echo Dev... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" ( echo Beta... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" ( echo Stable... start "" /w "%%i\installer\setup.exe" --uninstall --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\EdgeWebView\Application\*") do if exist "%%i\installer\setup.exe" ( echo WebView2 Runtime... start "" /w "%%i\installer\setup.exe" --uninstall --msedgewebview --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\EdgeWebView\Application\*") do if exist "%%i\installer\setup.exe" ( echo WebView2 Runtime... start "" /w "%%i\installer\setup.exe" --uninstall --msedgewebview --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" ( echo Stable... start "" /w "%%i\installer\setup.exe" --uninstall --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" ( echo Beta... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" ( echo Dev... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" ( echo Internal... start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --system-level --verbose-logging --force-uninstall --delete-profile ) ::Son reg add "HKLM\SOFTWARE\Microsoft\EdgeUpdate" /v DoNotUpdateToEdgeWithChromium /t REG_DWORD /d 1 /f 1>nul :: Not Installed if "%EXIST%"=="0" echo. & echo Edge ^(Chromium^) Yuklu Degil & echo. & timeout /t 4 & exit alcalmc, 11 dakika önce yazdı: Please register to see this content. Ben yorumlarda yazılan kaldırma işlemlerine bir şey yazmadım ama, benim yaptığım işlemin güzel tarafı; Format atmadan önce Dism++ ile -Microsoft klasörünü silmek ve NTLite ile reg kaydını girmek. Bu şekilde kurulu hiçbir şeyi gelmiyor. Ayrıca Dism++ ile başlangıç hizmetlerini kaldırıyor ve NTLite ile Update görevini devre dışı bırakıyorum. Önceden beri kullandığım yöntemlere ek olarak, edge-sil reg kaydını ekledim. Bilginize... 1 Quote Link to comment Share on other sites More sharing options...
alcalmc Posted July 6 Share Posted July 6 Bu zaten Windows içinden kaldırmak. İsodan kaldırmak için her program seçenek sunuyor. Reg kaydınızı da ekleyebilirsiniz. 1 Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 8 Author Share Posted July 8 (edited) YILDIZ2361, 05.07.2024 - 22:50 yazdı: Usta o zaman biz de konudan faydalanmak istiyoruz. alcalmc, 06.07.2024 - 10:28 yazdı: Bu zaten Windows içinden kaldırmak. İsodan kaldırmak için her program seçenek sunuyor. Reg kaydınızı da ekleyebilirsiniz. Linkler eklendi amd_turkey, 06.07.2024 - 08:44 yazdı: İçindeki pohpohlanma arzusunu dizginlediğiniz zaman farklı bir seviyeye ulaşmış olacaksınız. Sözünüzü dikkate alacağım. Edited July 8 by relati7ity 1 1 Quote Link to comment Share on other sites More sharing options...
Apocalypse_34 Posted July 9 Share Posted July 9 Please register to see this content. teşekkürler ama linke tıklayınca birşey çıkmıyor indirme yeri yok Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 9 Author Share Posted July 9 (edited) Apocalypse_34, 1 dakika önce yazdı: Please register to see this content. teşekkürler ama linke tıklayınca birşey çıkmıyor indirme yeri yok Kocaman bir mavi buton var Download yazıyor... Edited July 9 by relati7ity Quote Link to comment Share on other sites More sharing options...
Apocalypse_34 Posted July 9 Share Posted July 9 relati7ity, 54 dakika önce yazdı: Kocaman bir mavi buton var Download yazıyor... tmm tıklayınca linke çıkmadı ondan yazdım arkadaşim Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 9 Author Share Posted July 9 Apocalypse_34, Şimdi yazdı: tmm tıklayınca linke çıkmadı ondan yazdım arkadaşim Şuan bende mediafire linklerime tıklayınca boş ekran geliyor.. MEDİAFİREDE SORUN VAR SANIRIM, DÜZELİR YAKINDA... Quote Link to comment Share on other sites More sharing options...
Apocalypse_34 Posted July 9 Share Posted July 9 reg içeriğini burdan not olarak verirmisin arkadaşım Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 9 Author Share Posted July 9 (edited) Apocalypse_34, 1 dakika önce yazdı: reg içeriğini burdan not olarak verirmisin arkadaşım Şuan veremem regleri bekleyin... Medianın düzelmesini yani. Linkler düzeldi.. Edited July 9 by relati7ity Quote Link to comment Share on other sites More sharing options...
YILDIZ2361 Posted July 9 Share Posted July 9 Paylaşım için teşekkürler tekrardan. 1 Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 10 Author Share Posted July 10 (edited) YILDIZ2361, 09.07.2024 - 15:40 yazdı: Bu tarz regedit kayıtlarına, çoğu kişinin beğenmediği ve kurmak dahi istemediği Hibit Uninstaller ile ulaşıyorum... Apocalypse_34, 09.07.2024 - 14:05 yazdı: Bu tarz regedit kayıtlarına, çoğu kişinin beğenmediği ve kurmak dahi istemediği Hibit Uninstaller ile ulaşıyorum... alcalmc, 06.07.2024 - 10:28 yazdı: Bu tarz regedit kayıtlarına, çoğu kişinin beğenmediği ve kurmak dahi istemediği Hibit Uninstaller ile ulaşıyorum... amd_turkey, 06.07.2024 - 08:44 yazdı: Bu tarz regedit kayıtlarına, çoğu kişinin beğenmediği ve kurmak dahi istemediği Hibit Uninstaller ile ulaşıyorum... AdemYakups, 05.07.2024 - 23:17 yazdı: Bu tarz regedit kayıtlarına, çoğu kişinin beğenmediği ve kurmak dahi istemediği Hibit Uninstaller ile ulaşıyorum... Edited July 10 by relati7ity Quote Link to comment Share on other sites More sharing options...
alcalmc Posted July 10 Share Posted July 10 (edited) Ben zaten müptelasıyım çok zamandır. 👍👍👍 Please register to see this content. Edited July 10 by alcalmc 1 Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 10 Author Share Posted July 10 (edited) alcalmc, 30 dakika önce yazdı: Ben zaten müptelasıyım çok zamandır. 👍👍👍 Açılış süresinde neden o kadar bekletiyor dostum. Değiştirmelisin işletim sistemini @alcalmc Şekil 1 A Edited July 10 by relati7ity Quote Link to comment Share on other sites More sharing options...
alcalmc Posted July 10 Share Posted July 10 (edited) 13 yaşında pc, w11 hızı gene iyidir. Kullanamayana kadar w11,12,13.... devam inşaAllah... Edited July 10 by alcalmc 1 Quote Link to comment Share on other sites More sharing options...
relati7ity Posted July 10 Author Share Posted July 10 alcalmc, 2 dakika önce yazdı: 13 yaşında pc, w11 hızı gene iyidir. Kullanamayana kadar w11,12,13.... devam inşaAllah... Benim PC' Çok eski Letgodan ucuza bulmuştum ama, Biosu 2020 datalı Şuana kadar bir sorun yaşamadım. linux kurarken yaşadığım sorun ekran kartımla ilgiliydi... 1 Quote Link to comment Share on other sites More sharing options...
Mycrosoft Posted July 11 Share Posted July 11 Edge WebView'ı sisteminizden kesinlikle silmemelisiniz. Outlook, Teams ve daha bir sürü program Edge WebView'ı bağımlılık olarak kullanıyor. Edge kaldırılabilir ama bu bileşen için bunu mutlaka göz önünde bulundurun. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.