mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
16 lines
315 B
PowerShell
Executable File
16 lines
315 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
close-file-explorer.ps1
|
|
.DESCRIPTION
|
|
Closes Microsoft File Explorer gracefully
|
|
.EXAMPLE
|
|
PS> .\close-file-explorer.ps1
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "File Explorer" "explorer" "explorer"
|
|
exit 0
|