PowerShell/Scripts/open-onedrive.ps1
2021-08-29 17:50:03 +02:00

16 lines
307 B
PowerShell
Executable File

<#
.SYNOPSIS
open-onedrive.ps1
.DESCRIPTION
Opens the user's OneDrive folder.
.EXAMPLE
PS> .\open-onedrive.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process "$($env:USERPROFILE)\AppData\Local\Microsoft\OneDrive\OneDrive.exe"
exit 0