mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 03:54:46 +01:00
10 lines
266 B
PowerShell
Executable File
10 lines
266 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
<#
|
|
.SYNTAX ./close-file-explorer.ps1
|
|
.DESCRIPTION closes Microsoft File Explorer gracefully
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
./close-process "explorer" "File Explorer"
|