2015-10-05 05:08:31 +08:00
---
2017-01-09 13:09:19 +08:00
title: "Microsoft OneDrive"
description: "Rclone docs for Microsoft OneDrive"
2015-10-05 05:08:31 +08:00
date: "2015-10-14"
---
2017-01-09 13:09:19 +08:00
< i class = "fa fa-windows" > < / i > Microsoft OneDrive
2015-10-05 05:08:31 +08:00
-----------------------------------------
Paths are specified as `remote:path`
Paths may be as deep as required, eg `remote:directory/subdirectory` .
2017-01-09 13:09:19 +08:00
The initial setup for OneDrive involves getting a token from
2015-10-05 05:08:31 +08:00
Microsoft which you need to do in your browser. `rclone config` walks
you through it.
Here is an example of how to make a remote called `remote` . First run:
rclone config
This will guide you through an interactive setup process:
```
2018-08-26 22:17:30 +08:00
e) Edit existing remote
2015-10-05 05:08:31 +08:00
n) New remote
2018-08-26 22:17:30 +08:00
d) Delete remote
r) Rename remote
c) Copy remote
2016-02-21 21:39:04 +08:00
s) Set configuration password
2018-08-26 22:17:30 +08:00
q) Quit config
e/n/d/r/c/s/q> n
2015-10-05 05:08:31 +08:00
name> remote
2016-02-21 21:39:04 +08:00
Type of storage to configure.
2018-08-26 22:17:30 +08:00
Enter a string value. Press Enter for the default ("").
2016-02-21 21:39:04 +08:00
Choose a number from below, or type in your own value
2018-08-26 22:17:30 +08:00
...
17 / Microsoft OneDrive
2016-02-21 21:39:04 +08:00
\ "onedrive"
2018-08-26 22:17:30 +08:00
...
Storage> 17
Microsoft App Client Id
Leave blank normally.
Enter a string value. Press Enter for the default ("").
2017-01-09 13:09:19 +08:00
client_id>
2018-08-26 22:17:30 +08:00
Microsoft App Client Secret
Leave blank normally.
Enter a string value. Press Enter for the default ("").
2017-01-09 13:09:19 +08:00
client_secret>
2018-08-26 22:17:30 +08:00
Edit advanced config? (y/n)
y) Yes
n) No
y/n> n
2015-10-05 05:08:31 +08:00
Remote config
2016-02-21 21:39:04 +08:00
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes
n) No
y/n> y
2015-10-05 05:08:31 +08:00
If your browser doesn't open automatically go to the following link: http://127.0.0.1:53682/auth
Log in and authorize rclone for access
Waiting for code...
Got code
2018-08-26 22:17:30 +08:00
Choose a number from below, or type in an existing value
1 / OneDrive Personal or Business
\ "onedrive"
2 / Sharepoint site
\ "sharepoint"
3 / Type in driveID
\ "driveid"
4 / Type in SiteID
\ "siteid"
5 / Search a Sharepoint site
\ "search"
Your choice> 1
Found 1 drives, please select the one you want to use:
0: OneDrive (business) id=b!Eqwertyuiopasdfghjklzxcvbnm-7mnbvcxzlkjhgfdsapoiuytrewqk
Chose drive to use:> 0
Found drive 'root' of type 'business', URL: https://org-my.sharepoint.com/personal/you/Documents
Is that okay?
y) Yes
n) No
y/n> y
2015-10-05 05:08:31 +08:00
--------------------
[remote]
2018-08-26 22:17:30 +08:00
type = onedrive
token = {"access_token":"youraccesstoken","token_type":"Bearer","refresh_token":"yourrefreshtoken","expiry":"2018-08-26T22:39:52.486512262+08:00"}
drive_id = b!Eqwertyuiopasdfghjklzxcvbnm-7mnbvcxzlkjhgfdsapoiuytrewqk
drive_type = business
2015-10-05 05:08:31 +08:00
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d> y
```
2016-01-07 23:20:32 +08:00
See the [remote setup docs ](/remote_setup/ ) for how to set it up on a
machine with no Internet browser available.
2015-10-05 05:08:31 +08:00
Note that rclone runs a webserver on your local machine to collect the
token as returned from Microsoft. This only runs from the moment it
opens your browser to the moment you get back the verification
code. This is on `http://127.0.0.1:53682/` and this it may require
you to unblock it temporarily if you are running a host firewall.
Once configured you can then use `rclone` like this,
2017-01-09 13:09:19 +08:00
List directories in top level of your OneDrive
2015-10-05 05:08:31 +08:00
rclone lsd remote:
2017-01-09 13:09:19 +08:00
List all the files in your OneDrive
2015-10-05 05:08:31 +08:00
rclone ls remote:
2017-01-09 13:09:19 +08:00
To copy a local directory to an OneDrive directory called backup
2015-10-05 05:08:31 +08:00
rclone copy /home/source remote:backup
2018-08-26 22:17:30 +08:00
### Getting your own Client ID and Key ###
2017-08-04 03:57:42 +08:00
2018-08-26 22:17:30 +08:00
rclone uses a pair of Client ID and Key shared by all rclone users when performing requests by default.
If you are having problems with them (E.g., seeing a lot of throttling), you can get your own
Client ID and Key by following the steps below:
1. Open https://apps.dev.microsoft.com/#/appList, then click `Add an app` (Choose `Converged applications` if applicable)
2. Enter a name for your app, and click continue. Copy and keep the `Application Id` under the app name for later use.
3. Under section `Application Secrets` , click `Generate New Password` . Copy and keep that password for later use.
4. Under section `Platforms` , click `Add platform` , then `Web` . Enter `http://localhost:53682/` in
`Redirect URLs` .
5. Under section `Microsoft Graph Permissions` , `Add` these `delegated permissions` :
`Files.Read` , `Files.ReadWrite` , `Files.Read.All` , `Files.ReadWrite.All` , `offline_access` , `User.Read` .
6. Scroll to the bottom and click `Save` .
Now the application is complete. Run `rclone config` to create or edit a OneDrive remote.
Supply the app ID and password as Client ID and Secret, respectively. rclone will walk you through the remaining steps.
2017-08-04 03:57:42 +08:00
2016-01-13 18:29:43 +08:00
### Modified time and hashes ###
2015-10-05 05:08:31 +08:00
2017-01-09 13:09:19 +08:00
OneDrive allows modification times to be set on objects accurate to 1
2015-10-05 05:08:31 +08:00
second. These will be used to detect whether objects need syncing or
not.
2018-04-20 19:55:49 +08:00
OneDrive personal supports SHA1 type hashes. OneDrive for business and
Sharepoint Server support
[QuickXorHash ](https://docs.microsoft.com/en-us/onedrive/developer/code-snippets/quickxorhash ).
2016-01-13 18:29:43 +08:00
2018-04-20 19:55:49 +08:00
For all types of OneDrive you can use the `--checksum` flag.
2015-10-05 05:08:31 +08:00
### Deleting files ###
Any files you delete with rclone will end up in the trash. Microsoft
doesn't provide an API to permanently delete files, nor to empty the
trash, so you will have to do that with one of Microsoft's apps or via
2017-01-09 13:09:19 +08:00
the OneDrive website.
2015-10-05 05:08:31 +08:00
2015-11-14 19:38:35 +08:00
### Specific options ###
Here are the command line options specific to this cloud storage
system.
#### --onedrive-chunk-size=SIZE ####
Above this size files will be chunked - must be multiple of 320k. The
default is 10MB. Note that the chunks will be buffered into memory.
2015-10-05 05:08:31 +08:00
### Limitations ###
2017-01-09 13:09:19 +08:00
Note that OneDrive is case insensitive so you can't have a
2015-10-05 05:08:31 +08:00
file called "Hello.doc" and one called "hello.doc".
2017-01-09 13:09:19 +08:00
There are quite a few characters that can't be in OneDrive file
2015-10-05 05:08:31 +08:00
names. These can't occur on Windows platforms, but on non-Windows
platforms they are common. Rclone will map these names to and from an
identical looking unicode equivalent. For example if a file has a `?`
in it will be mapped to `? ` instead.
2016-11-14 12:23:26 +08:00
The largest allowed file size is 10GiB (10,737,418,240 bytes).
2018-03-15 15:06:17 +08:00
### Versioning issue ###
Every change in OneDrive causes the service to create a new version.
2018-06-01 18:28:17 +08:00
This counts against a users quota.
2018-03-15 15:06:17 +08:00
For example changing the modification time of a file creates a second
version, so the file is using twice the space.
The `copy` is the only rclone command affected by this as we copy
the file and then afterwards set the modification time to match the
source file.
User [Weropol ](https://github.com/Weropol ) has found a method to disable
versioning on OneDrive
1. Open the settings menu by clicking on the gear symbol at the top of the OneDrive Business page.
2. Click Site settings.
3. Once on the Site settings page, navigate to Site Administration > Site libraries and lists.
4. Click Customize "Documents".
5. Click General Settings > Versioning Settings.
2018-06-01 18:28:17 +08:00
6. Under Document Version History select the option No versioning.
2018-03-15 15:06:17 +08:00
Note: This will disable the creation of new file versions, but will not remove any previous versions. Your documents are safe.
7. Apply the changes by clicking OK.
8. Use rclone to upload or modify files. (I also use the --no-update-modtime flag)
9. Restore the versioning settings after using rclone. (Optional)
2018-06-01 18:28:17 +08:00
### Troubleshooting ###
```
Error: access_denied
Code: AADSTS65005
Description: Using application 'rclone' is currently not supported for your organization [YOUR_ORGANIZATION] because it is in an unmanaged state. An administrator needs to claim ownership of the company by DNS validation of [YOUR_ORGANIZATION] before the application rclone can be provisioned.
```
This means that rclone can't use the OneDrive for Business API with your account. You can't do much about it, maybe write an email to your admins.
However, there are other ways to interact with your OneDrive account. Have a look at the webdav backend: https://rclone.org/webdav/#sharepoint