PowerShell/scripts/open-g-drive.ps1

16 lines
324 B
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2021-12-07 22:50:15 +01:00
.SYNOPSIS
Opens the G: drive folder
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script launches the File Explorer with the G: drive folder.
2021-12-07 22:50:15 +01:00
.EXAMPLE
PS> ./open-g-drive
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-12-07 22:50:15 +01:00
#>
& "$PSScriptRoot/open-file-explorer.ps1" "G:"
exit 0 # success