PowerShell/scripts/open-m-drive.ps1

16 lines
313 B
PowerShell
Raw Normal View History

2023-10-31 12:48:22 +01:00
<#
2021-11-03 16:46:35 +01:00
.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
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
2021-11-03 16:46:35 +01:00
#>
& "$PSScriptRoot/open-file-explorer.ps1" "M:"
exit 0 # success