PowerShell/Scripts/open-c-drive.ps1

16 lines
314 B
PowerShell
Raw Normal View History

2021-10-23 16:37:09 +02:00
<#
.SYNOPSIS
Opens the C: drive folder
.DESCRIPTION
2021-11-03 16:46:35 +01:00
This script launches the File Explorer with the C: drive folder.
2021-10-23 16:37:09 +02:00
.EXAMPLE
PS> ./open-c-drive
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
2021-11-03 16:46:35 +01:00
& "$PSScriptRoot/open-file-explorer.ps1" "C:"
exit 0 # success