mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
Add close-onedrive.ps1
This commit is contained in:
parent
2c29ec284f
commit
5376c8402d
@ -45,6 +45,7 @@ close-file-explorer.ps1, closes Microsoft File Explorer gracefully
|
||||
close-firefox.ps1, closes the Firefox Web browser gracefully
|
||||
close-program.ps1, closes the given program gracefully
|
||||
close-netflix.ps1, closes Netflix gracefully
|
||||
close-onedrive.ps1, closes Microsoft OneDrive gracefully
|
||||
close-system-settings.ps1, closes the System Settings gracefully
|
||||
close-thunderbird.ps1, closes Mozilla Thunderbird gracefully
|
||||
close-vlc.ps1, closes the VLC media player gracefully
|
||||
|
|
@ -84,6 +84,7 @@ Mega Collection of PowerShell Scripts
|
||||
* [close-firefox.ps1](Scripts/close-firefox.ps1) - closes the Firefox Web browser gracefully
|
||||
* [close-program.ps1](Scripts/close-program.ps1) - closes the given program gracefully
|
||||
* [close-netflix.ps1](Scripts/close-netflix.ps1) - closes Netflix gracefully
|
||||
* [close-onedrive.ps1](Scripts/close-onedrive.ps1) - closes Microsoft OneDrive gracefully
|
||||
* [close-system-settings.ps1](Scripts/close-system-settings.ps1) - closes the System Settings gracefully
|
||||
* [close-thunderbird.ps1](Scripts/close-thunderbird.ps1) - closes Mozilla Thunderbird gracefully
|
||||
* [close-vlc.ps1](Scripts/close-vlc.ps1) - closes the VLC media player gracefully
|
||||
|
16
Scripts/close-onedrive.ps1
Executable file
16
Scripts/close-onedrive.ps1
Executable file
@ -0,0 +1,16 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
close-onedrive.ps1
|
||||
.DESCRIPTION
|
||||
Closes Microsoft OneDrive gracefully
|
||||
.EXAMPLE
|
||||
PS> .\close-onedrive.ps1
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz
|
||||
License: CC0
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/close-program.ps1" "Microsoft OneDrive" "onedrive.exe" "onedrive.exe"
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user