mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
16 lines
356 B
PowerShell
Executable File
16 lines
356 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Closes Microsoft's OneDrive folder
|
|
.DESCRIPTION
|
|
This script closes Microsoft's OneDrive folder gracefully.
|
|
.EXAMPLE
|
|
PS> ./close-onedrive
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "Microsoft OneDrive" "onedrive" "onedrive.exe"
|
|
exit 0 # success
|