mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
12 lines
332 B
PowerShell
Executable File
12 lines
332 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
|
|
# Syntax: ./close-file-explorer.ps1
|
|
# Description: closes Microsoft File Explorer gracefully
|
|
# Author: Markus Fleschutz
|
|
# Source: github.com/fleschutz/PowerShell
|
|
# License: CC0
|
|
|
|
$PathToRepo=(get-item $MyInvocation.MyCommand.Path).directory.parent
|
|
|
|
."$PathToRepo/Scripts/close-program.ps1" "explorer"
|