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