PowerShell/Scripts/open-onedrive.ps1

17 lines
306 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-08-17 20:39:53 +02:00
.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
#>
2021-08-17 20:42:40 +02:00
Start-Process "$($env:USERPROFILE)\AppData\Local\Microsoft\OneDrive\OneDrive.exe"
2021-08-17 20:39:53 +02:00
exit 0