Files
PowerShell/scripts/open-c-drive.ps1
2025-07-09 15:09:20 +02:00

18 lines
348 B
PowerShell
Executable File

<#
.SYNOPSIS
Opens the C: drive folder
.DESCRIPTION
This PowerShell script launches the File Explorer with the C: drive folder.
.EXAMPLE
PS> ./open-c-drive
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
#requires -version 5.1
& "$PSScriptRoot/open-file-explorer.ps1" "C:"
exit 0 # success