PowerShell/Scripts/open-c-drive.ps1

16 lines
324 B
PowerShell
Raw Normal View History

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