mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
16 lines
313 B
PowerShell
Executable File
16 lines
313 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Opens the M: drive folder
|
|
.DESCRIPTION
|
|
This script launches the File Explorer with the M: drive folder.
|
|
.EXAMPLE
|
|
PS> ./open-m-drive
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
& "$PSScriptRoot/open-file-explorer.ps1" "M:"
|
|
exit 0 # success
|