Removing Various Apps from Windows 10

marka211

Weaksauce
Joined
Oct 1, 2000
Messages
127
As far as removing OneDrive from Windows 10, this command removed it for me:

Code:
@echo off
cls

set x86="%SYSTEMROOT%\System32\OneDriveSetup.exe"
set x64="%SYSTEMROOT%\SysWOW64\OneDriveSetup.exe"

echo Closing OneDrive process.
echo.
taskkill /f /im OneDrive.exe > NUL 2>&1
ping 127.0.0.1 -n 5 > NUL 2>&1

echo Uninstalling OneDrive.
echo.
if exist %x64% (
%x64% /uninstall
) else (
%x86% /uninstall
)
ping 127.0.0.1 -n 5 > NUL 2>&1

echo Removing OneDrive leftovers.
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 Removeing OneDrive from the Explorer Side Panel.
echo.
REG DELETE "HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1
REG DELETE "HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f > NUL 2>&1

pause

copy into notepad and save as OneDrive Uninstaller.cmd, then run it and it should remove Onedrive from Windows 10.

Removing all the Modern apps from Windows 10

Most power users already have programs that they like. Microsoft are pushing their apps instead, I find this unacceptable and they also removed the uninstall option for these apps that you had in the previous builds.

Just another person's example;

instead of Clock/Alarm app: I use my mobile Alarm app.
instead of Camera app: I use the app that comes with the camera.
instead of Photos app: I use ACDSee app.
instead of Music app: I use Winamp app.
instead of OneDrive app: I use Dropbox app.
instead of Search app: I use the own Windows Search.
instead of Video app: I use VLC app.

so go into Run Powershell as a admin and run this command;

get-appxpackage -allusers | remove-appxpackage

To get rid of the search box next to the Start Menu Button, just right click on the taskbar, go to search and pick either hidden or show search icon, Voila! The search box gone. You can still do the Windows Key and start typing and search will work like it has in the past.

Here’s how to prevent automatic driver updates in Windows 10:

Navigate to Control Panel>System and click Advanced System Settings
Open the “Hardware” tab and click the Device Installation Settings button
Change the setting to “No, let me choose what to do” and then enable the option to “Never install driver software from Windows Update
Click the Save Changes button at the bottom.

This was tested on a clean install of Windows 10 Pro 64-bit. Other versions of Windows 10 may work but YMMV.
 
haha i knew they would fuck it ip, funny is that vista sp2 mongols are now stuck forever with that ignominious ancient bloated slow crap lol. say, until when you guys think i will be able to enjoy this improved masterpiece stable and god-like nt-xp-pro-64 for the new age called win8? as of it now i dont even feel like bothering to spend an hour or two of my time to try 10 on one of my machines, maybe next month lol :p
 
I don't mind having some of those apps, but I want a way to sort or hide them. I have my typical 6-folder Star Menu looking and working well, but those damned modern apps are cluttering it up. Anyone know of a way to put them in a folder or hide them?
 
lol i guess that came out a little meanie :p well im downloading the x64pro version and installing on the kitchen nb, this machine here: http://hardforum.com/showthread.php?t=1722366&highlight= frigging thing is still alive, its hardware is all default, it is constantly on in the kitchen for the last 5~6 years and it never gave me any trouble lol, i'll post how it goes later, might even like it after a few tweaks, who knows :)
 
Back
Top