mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
16 lines
301 B
PowerShell
Executable File
16 lines
301 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
open-onedrive.ps1
|
|
.DESCRIPTION
|
|
Opens the user's OneDrive folder
|
|
.EXAMPLE
|
|
PS> ./open-onedrive
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
Start-Process "$($env:USERPROFILE)\AppData\Local\Microsoft\OneDrive\OneDrive.exe"
|
|
exit 0
|