Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace SkyDrive with OneDrive in winconfig.md #90

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions input/winconfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ Help Install-WindowsUpdate -Full
Libraries are special folders that map to a specific location on disk. These are usually found somewhere under $env:userprofile. This function can be used to redirect the library folder to a new location on disk. If the new location does not already exist, the directory will be created. Any content in the former library directory will be moved to the new location unless the DoNotMoveOldContent switch is used. Use Get-LibraryNames to discover the names of different libraries and their current physical directories.

```powershell
Move-LibraryDirectory "Personal" "$env:UserProfile\skydrive\documents"
Move-LibraryDirectory "Personal" "$env:UserProfile\OneDrive\documents"
```

This moves the Personal library (aka Documents) to the documents folder off of the default SkyDrive directory.
This moves the Personal library (aka Documents) to the documents folder off of the default OneDrive directory.

## Set-StartScreenOptions

Expand Down
Loading