PowerShell/Scripts/close-file-explorer.ps1

17 lines
318 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
close-file-explorer.ps1
.DESCRIPTION
Closes Microsoft File Explorer gracefully
.EXAMPLE
PS> .\close-file-explorer.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2020-12-29 15:14:21 +01:00
#>
2021-04-07 14:37:12 +02:00
& "$PSScriptRoot/close-program.ps1" "File Explorer" "explorer" "explorer"
exit 0