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

Wireguard VPN: Notes

Notes while trying Wireguard VPN on some of my testbeds.

Docker for Windows: Access Denied

Today, I get this error when running Docker for Windows on Windows 10 Build 1803. So, I check my current username (run whoami ) and add that user to docker-users local group, which has only NT AUTHORITY\SYSTEM account in members list. I must log out and log in again to run Docker for Windows.

Windows Command: arp - Address Resolution Protocol

Notes from daily work situation. While troubleshooting HSRP, I need to delete arp table on my computer. arp -d * Take a look at other options with arp command: C:\Users\Administrator>arp /? Displays and modifies the IP-to-Physical address translation tables used by address resolution protocol (ARP). ARP -s inet_addr eth_addr [if_addr] ARP -d inet_addr [if_addr] ARP -a [inet_addr] [-N if_addr] [-v] -a Displays current ARP entries by interrogating the current protocol data. If inet_addr is specified, the IP and Physical addresses for only the specified computer are displayed. If more than one network interface uses ARP, entries for each ARP table are displayed. -g Same as -a. -v Displays current ARP entries in verbose mode. All invalid entries and entries on the loop-back interface will be shown. inet_addr Specifies an internet address. -N if_a...