Changes between Version 1 and Version 2 of Onedrive Disable Issues


Ignore:
Timestamp:
12/12/24 04:43:23 (4 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Onedrive Disable Issues

    v1 v2  
    55Use whats approperiate for the system in question
    66
     7{{{
     8If you want to disable the connected service, you can block sign in with Registry Editor. But in this way, you are not able to sign in with any accounts. If you still want to do that, please follow the steps below:
     9
     10    Go to your Registry Editor
     11    Go to Computer\HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Internet\UseOnlineContent
     12    Set the value to 0.
     13
     14Important: This page contains information about editing the registry. Before you edit the registry, make sure you understand how to restore it if a problem occurs. For information about how to do this, view How to back up and restore the registry in Windows. Modifying Registry incorrectly can cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that problems resulting from the incorrect use of Registry can be solved. Modify Registry at your own risk.
     15}}}
     16
     17{{{
     18Folder Locations :
     19
     20HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User\Shell\Folders
     21}}}
     22
     23{{{
     24Turn On/Off Suggestions
     25
     26On :
     27[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard]
     28"Disabled"=dword:00000000
     29
     30reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard" /v "Disabled"  /t REG_DWORD /d "0" /f
     31
     32Off:
     33[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard]
     34"Disabled"=dword:00000000
     35
     36reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\SmartActionPlatform\SmartClipboard" /v "Disabled"  /t REG_DWORD /d "1" /f
     37
     38}}}
     39
     40
     41{{{
     42Disable One Drive Prompt for Backup in Explorer :
     43
     44    Open RegEdit
     45    Go to HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StorageProvider\OneDrive
     46    Remove or rename the key StorageProviderKnownFolderSyncInfoSourceFactory
     47    Restart Windows Explorer
     48
     49}}}
     50
     51{{{
     52Remove Onedrive from Quick Access ?
     53
     54Method 1: Disable OneDrive Integration
     55
     56    Press Win + R: This will open the Run dialog.
     57    Type "gpedit.msc" and press Enter: This will open the Group Policy Editor.
     58    Navigate to "Computer Configuration" > "Administrative Templates" > "Windows Components" > "OneDrive".
     59    Find the policy called "Prevent the usage of OneDrive for file storage".
     60    Double-click on the policy to open its properties.
     61    Select "Enabled" to disable OneDrive integration.
     62    Click "Apply" and then "OK".
     63
     64Method 2: Modify the Windows Registry
     65
     66    Press Win + R to open the Run dialog.
     67    Type "regedit" and press Enter to open the Windows Registry Editor.
     68    Navigate to "HKEY_CLASSES_ROOT\CLSID{018D5C66-4533-4307-9B53-224DE2ED1FE6}".
     69    Right-click on this key and choose "Export". Save it to your computer as a backup.
     70    Delete the key (folder) "{018D5C66-4533-4307-9B53-224DE2ED1FE6}".
     71    Restart your computer.
     72
     73
     74}}}
     75
     76{{{
     77Disable One Drive Backup Prompting
     78
     79reg add HKLM\SOFTWARE\Policies\Microsoft\OneDrive /v KFMBlockOptIn /t REG_DWORD /d 1 /f
     80
     81}}}
     82
     83