PowerShell/Scripts/open-f-drive.ps1

16 lines
324 B
PowerShell
Raw Normal View History

2021-11-03 16:46:35 +01:00
<#
.SYNOPSIS
Opens the F: drive folder
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script launches the File Explorer with the F: drive folder.
2021-11-03 16:46:35 +01:00
.EXAMPLE
PS> ./open-f-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-11-03 16:46:35 +01:00
#>
& "$PSScriptRoot/open-file-explorer.ps1" "F:"
exit 0 # success