mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 03:54:46 +01:00
16 lines
312 B
PowerShell
Executable File
16 lines
312 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Opens Windows date & time settings
|
|
.DESCRIPTION
|
|
This script launches the Windows date & time settings.
|
|
.EXAMPLE
|
|
PS> ./open-date-settings
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
Start-Process ms-settings:dateandtime
|
|
exit 0 # success
|