Skip to main content

Microsoft OneDrive for Business: Notes

To get the latest version of OneDrive, check OneDrive release notes.

Back up your Documents, Pictures, and Desktop folders with OneDrive

File exceeds the maximum path length: Make sure the entire file path, including the file name, contains fewer than 260 characters. An example of a file path is:

C:\Users\<UserName>\Pictures\Saved\2017\December\Holiday\NewYears\Family…

To resolve this, shorten the name of your file or the name of subfolders in OneDrive, or select a sub-folder that's closer to the top-level folder.

OneDrive sync reports in the Apps Admin Center

Read https://docs.microsoft.com/en-us/onedrive/sync-health

Edit registry

# Run cmd as Administrator
REM Enable OneDrive
set TenantAssociationKey=Paste-your-Tenant-Association-Key-here
reg.exe add HKLM\SOFTWARE\Policies\Microsoft\OneDrive /v SyncAdminReports /t REG_SZ /d %TenantAssociationKey% /f

Popular posts from this blog

Microsoft Photos App

Reset, uninstall and Reinstall Microsoft Photos app, the default photo viewer on Microsoft Windows 10.

ManageEngine ServiceDesk Plus - Reset password

Let's reset the default administrator's password to 'admin'

[Powershell]: Get system information with systeminfo command

Get system information with systeminfo command 1. Create get-systeminfo.ps1 file Use notepad or any text editor to create get-systeminfo.ps1 # Description: powershell script to get computer's system information # get computer name $computername = gc env:computername # get year month date hour minute $today = (get-date).ToString("yyyyMMddHHMM") # get computer's system information systeminfo >> $computername-$today.txt # end of script 2. Create scheduled task to run get-systeminfo.ps1