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

16 lines
320 B
PowerShell
Executable File

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