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

16 lines
314 B
PowerShell
Executable File

<#
.SYNOPSIS
close-onedrive.ps1
.DESCRIPTION
Closes Microsoft OneDrive gracefully.
.EXAMPLE
PS> .\close-onedrive.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Microsoft OneDrive" "onedrive" "onedrive.exe"
exit 0