Jump to content

Win10clean V0.14.0


nrnr
 Share

Recommended Posts

Win10Clean v0.14.0 347 KB

icon.ico

Kokteyl benzeri OneDrive, Windows Defender, Metro Apps gibi Windows 10 işletim sisteminde çoğu kişinin istemediği yazılımları kaldırmaya yarayan açık kaynak kodlu temizleme aracı.

GitHub sayfası: https://github.com/ElPumpo/Win10Clean

Ekran Görüntüleri

Spoiler

687474703a2f2f692e696d6775722e636f6d2f78

687474703a2f2f692e696d6775722e636f6d2f63

https://github.com/ElPumpo/Win10Clean/releases/download/v0.14.0/Win10Clean.v0.14.0.exe

 

Edited by nrnr
  • Like 3
  • Thanks 1
Link to comment
Share on other sites

EgeGrkn, 4 dakika önce yazdı:

mydigitallifeda bu projenin reg dosyalarını beraber hazırlamıştık arkadaşla. o arayüz yaptı ben katılımsız. yolları ayırmıştık... biraz geri kalmış arkadaş ama güzel programdır

Evet Sizinki varken gerek yok böylelerine

  • Like 1
Link to comment
Share on other sites


Get-AppxPackage -AllUsers | where-object {$_.name –notlike “*store*”} | Remove-AppxPackage

yukarıdaki komutla powershellden magaza hariç tüm uygulamaları kaldırabilirsiniz pc den programa gerek olmadan iyi iş çıkarır ;)

ie11 kaldırma cmd ile kaldırma

FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /norestart"

 

txt dosyasına kopyala uzantısını bat yap onedrive kaldırma komutu

@echo off
cls
set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe"
set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe"
echo OneDrive islemi kapatiliyor.
echo.
taskkill /f /im OneDrive.exe > NUL 2>&1
ping 127.0.0.1 -n 5 > NUL 2>&1
echo OneDrive kaldiriliyor.
echo.
if exist %x64% (
%x64% /uninstall
) else (
%x86% /uninstall
)
ping 127.0.0.1 -n 5 > NUL 2>&1
echo OneDrive'dan arda kalanlar temizleniyor.
echo.
rd "%USERPROFILE%\OneDrive" /Q /S > NUL 2>&1
rd "C:\OneDriveTemp" /Q /S > NUL 2>&1
rd "%LOCALAPPDATA%\Microsoft\OneDrive" /Q /S > NUL 2>&1
rd "%PROGRAMDATA%\Microsoft OneDrive" /Q /S > NUL 2>&1 
echo OneDrive, Dosya Gezgini yan panelinden kaldırılıyor.
echo.

  • Like 1
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...