How to disable OneDrive in build (9926)?

Discussion in 'Windows 10' started by dariwonka, Jan 24, 2015.

  1. dariwonka

    dariwonka MDL Novice

    Feb 23, 2012
    40
    5
    0
    how to uninstall it? or at least disable it for not seeing next to the clock.
    thanks
     
  2. spode

    spode MDL Novice

    Jul 8, 2010
    3
    0
    0
    #2 spode, Jan 24, 2015
    Last edited: Jan 24, 2015
    You can hide it via Settings (modern app) -> System -> Notifications & actions -> Turn system icons on and off

    Edit: Meh. Think I mistook it for something else when I had a look there earlier. :\
     
  3. l33tlinuxh4x0r

    l33tlinuxh4x0r MDL Novice

    Jul 31, 2009
    31
    1
    0
    right click on the icon and go to settings then uncheck start when computer starts. Then exit the application and reboot. No more onedrive.
     
  4. Cali4niaWK

    Cali4niaWK MDL Member

    Feb 13, 2010
    108
    11
    10
    #4 Cali4niaWK, Jan 24, 2015
    Last edited: Jan 25, 2015
    This only works if you set OneDrive up as the option is shaded grey if you don't set it up, what I did if you do not want to go through the steps of setting it up is either right click the start button and select Task Manager or press Ctrl+Alt+Del and bring up Task Manager, click on the Startup tab, find Microsoft OneDrive and right click on it and Disable it, right click on OneDrive icon in Taskbar and exit, next startup it will be disabled. ;)
     
  5. Mark722

    Mark722 MDL Junior Member

    Dec 2, 2014
    66
    2
    0
    i have the same problem
     
  6. Hadron-Curious

    Hadron-Curious MDL Guru

    Jul 4, 2014
    3,730
    603
    120
    I deleted mine by mistake. I have to download it from OneDrive official website.
     
  7. tsukasa80

    tsukasa80 MDL Novice

    Aug 4, 2012
    11
    4
    0
    Open gpedit.msc under computer policy /windows components /onedrive disable sync. Then remove it from startup.
     
  8. gururoop

    gururoop MDL Junior Member

    Aug 12, 2012
    94
    16
    0
    Any ideas how to remove this bloatware's icon from file explorer? I guess Microsoft will never learn from past lawsuits, shoving useless apps down end users' throats.:mad:
     
  9. WaltC

    WaltC MDL Addicted

    Mar 8, 2014
    518
    123
    30
    I think you've got 'em confused with Apple...:D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. bchat

    bchat MDL Smart Azz

    Nov 7, 2008
    1,722
    453
    60
    And Verizon and AT&T and anybody who has the ability to do so.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. WaltC

    WaltC MDL Addicted

    Mar 8, 2014
    518
    123
    30
    Interesting...in previous builds I noticed OneDrive was uninstallable from Programs & Features...not anymore! If you download it and reinstall it in 9926, do you get an entry in P&F, I wonder?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,415
    1,193
    60
    #12 Ace2, Jan 26, 2015
    Last edited by a moderator: Apr 20, 2017
    Disable Onedrive:

    Open gpedit.msc

    Expand Computer Configuration / Administrative Templates / Windows Components / OneDrive

    Settings:
    Code:
    Save documents to Onedrive by default = Disabled
    Prevent the usage of OneDrive for file storge = Enabled
    Prevent OneDrive files from syncing over metered connections = Enabled
    Regedit Disable OneDrive and remove icon from explorer:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Onedrive]
    "DisableLibrariesDefaultSaveToOneDrive"=dword:00000001
    "DisableFileSync"=dword:00000001
    "DisableMeteredNetworkFileSync"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Policies\Microsoft\Windows\Onedrive]
    "DisableLibrariesDefaultSaveToOneDrive"=dword:00000001
    "DisableFileSync"=dword:00000001
    "DisableMeteredNetworkFileSync"=dword:00000001
    
    [HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder]
    "Attributes"=dword:f090004d
    
    [HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder]
    "Attributes"=dword:f090004d
    
    [HKEY_CURRENT_USER\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder]
    "Attributes"=dword:f090004d
    
    [HKEY_CURRENT_USER\Software\Classes\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}\ShellFolder]
    "Attributes"=dword:f090004d
    Best to use both methods.;)