-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
26 lines (26 loc) · 904 Bytes
/
Copy pathconfig.example.json
File metadata and controls
26 lines (26 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"// help": "Deploy this as config.json to %ProgramData%\\OneDriveAsADrive\\ (machine-wide, IT) or %LOCALAPPDATA%\\OneDriveAsADrive\\ (per-user). 'port' is the local WebDAV port. Each mount becomes a drive letter.",
"// account": "Optional. UPN/email to sign in as, e.g. you@contoso.com. Pins the identity on a machine with several signed-in Microsoft accounts. Remove this line to use the default account.",
"port": 40323,
"account": "you@contoso.com",
"mounts": [
{
"letter": "O",
"type": "onedrive",
"name": "My OneDrive"
},
{
"letter": "S",
"type": "sharepoint",
"site": "contoso.sharepoint.com:/sites/Finance",
"library": "Documents",
"name": "Finance"
},
{
"letter": "T",
"type": "sharepoint",
"site": "contoso.sharepoint.com:/sites/Marketing",
"name": "Marketing (default library)"
}
]
}