Tag Archives: remove

Remove / Uninstall OneDrive in Windows 10

1. Run CMD as administrator, and then kill OneDrive process

    taskkill /f /im OneDrive.exe

2. Uninstall OneDrive for 32bit Windows 10

    %SystemRoot%System32OneDriveSetup.exe /uninstall

3. Uninstall OneDrive for 64bit Windows 10

    %SystemRoot%SysWOW64OneDriveSetup.exe /uninstall

4. Delete OneDrive folder

    rd "%UserProfile%OneDrive" /Q /S
    rd "%LocalAppData%MicrosoftOneDrive" /Q /S
    rd "%ProgramData%Microsoft OneDrive" /Q /S
    rd "C:OneDriveTemp" /Q /S

5. Delete registry keys for OneDrive.

    REG Delete "HKEY_CLASSES_ROOTCLSID{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f
    REG Delete "HKEY_CLASSES_ROOTWow6432NodeCLSID{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f

Remove Windows 10 build-in Apps

Uninstall 3D Builder:

    Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Uninstall Alarms and Clock:

    Get-AppxPackage *windowsalarms* | Remove-AppxPackage

Uninstall Calculator:

    Get-AppxPackage *windowscalculator* | Remove-AppxPackage

Uninstall Calendar and Mail:

    Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage

Uninstall Camera:

    Get-AppxPackage *windowscamera* | Remove-AppxPackage

Uninstall Contact Support:

This app can’t be removed.

Uninstall Cortana:

This app can’t be removed.

Uninstall Get Office:

    Get-AppxPackage *officehub* | Remove-AppxPackage

Uninstall Get Skype:

    Get-AppxPackage *skypeapp* | Remove-AppxPackage

Uninstall Get Started:

    Get-AppxPackage *getstarted* | Remove-AppxPackage

Uninstall Groove Music:

    Get-AppxPackage *zunemusic* | Remove-AppxPackage

Uninstall Maps:

    Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Uninstall Microsoft Edge:

This app can’t be removed.

Uninstall Microsoft Solitaire Collection:

    Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Uninstall Money:

    Get-AppxPackage *bingfinance* | Remove-AppxPackage

Uninstall Movies & TV:

    Get-AppxPackage *zunevideo* | Remove-AppxPackage

Uninstall News:

    Get-AppxPackage *bingnews* | Remove-AppxPackage

Uninstall OneNote:

    Get-AppxPackage *onenote* | Remove-AppxPackage

Uninstall People:

    Get-AppxPackage *people* | Remove-AppxPackage

Uninstall Phone Companion:

    Get-AppxPackage *windowsphone* | Remove-AppxPackage

Uninstall Photos:

Get-AppxPackage *photos* | Remove-AppxPackage

Uninstall Store:

    Get-AppxPackage *windowsstore* | Remove-AppxPackage

Uninstall Sports:

    Get-AppxPackage *bingsports* | Remove-AppxPackage

Uninstall Voice Recorder:

    Get-AppxPackage *soundrecorder* | Remove-AppxPackage

Uninstall Weather:

    Get-AppxPackage *bingweather* | Remove-AppxPackage

Uninstall Windows Feedback:

This app can’t be removed.

Uninstall Xbox:

    Get-AppxPackage *xboxapp* | Remove-AppxPackage

ubuntu下内核的升级、卸载

用apt-get dist-upgrade发现内核升级了。
直接安装
 
然后查看/boot/grub/menu.1st
发现以前的内核还在,应该是从安全考虑
 
可既然我正常启动了,就不需要了。留着占空间。卸载!
 
首先,执行
#uname -a
显示了当前的内核
然后用
#dpkg -l|grep linux
来查看当前系统安装了哪几个内核。
 
然后就可以卸载了
一定要确定卸载的包的准确名称
然后
#apt-remove ***(这里是包的准确名称)
不过这里似乎需要加上-purge更好些,是去除残余信息。
 
 
卸载完成后,重新启动,就可以了:0