Add open-onedrive.ps1

This commit is contained in:
Markus Fleschutz
2021-08-17 20:39:53 +02:00
parent f8bbb5835d
commit 2c29ec284f
3 changed files with 18 additions and 0 deletions

16
Scripts/open-onedrive.ps1 Executable file
View File

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