Add more scripts

This commit is contained in:
Markus Fleschutz 2021-11-01 12:06:51 +01:00
parent 736bfc276a
commit 531d99dc71
25 changed files with 375 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows activation settings
.DESCRIPTION
This script launches the Windows activation settings.
.EXAMPLE
PS> ./open-activation-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:activation
exit 0 # success

15
Scripts/open-apps-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows apps settings
.DESCRIPTION
This script launches the Windows aps settings.
.EXAMPLE
PS> ./open-apps-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:appsfeatures
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows background settings
.DESCRIPTION
This script launches the Windows background settings.
.EXAMPLE
PS> ./open-background-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:personalization-background
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows backup settings
.DESCRIPTION
This script launches the Windows backup settings.
.EXAMPLE
PS> ./open-backup-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:backup
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows Bluetooth settings
.DESCRIPTION
This script launches the Windows Bluetooth settings application.
.EXAMPLE
PS> ./open-bluetooth-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:bluetooth
exit 0 # success

15
Scripts/open-color-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows color settings
.DESCRIPTION
This script launches the Windows color settings.
.EXAMPLE
PS> ./open-color-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:colors
exit 0 # success

15
Scripts/open-date-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.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

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows default apps settings
.DESCRIPTION
This script launches the Windows default apps settings.
.EXAMPLE
PS> ./open-default-apps-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:defaultapps
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows developer settings
.DESCRIPTION
This script launches the Windows developer settings.
.EXAMPLE
PS> ./open-developer-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:developers
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows display settings
.DESCRIPTION
This script launches the Windows display settings application.
.EXAMPLE
PS> ./open-display-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:display
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows Ethernet settings
.DESCRIPTION
This script launches the Windows Ethernet settings.
.EXAMPLE
PS> ./open-ethernet-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:network-ethernet
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows lockscreen settings
.DESCRIPTION
This script launches the Windows lockscreen settings application.
.EXAMPLE
PS> ./open-lockscreen-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:lockscreen
exit 0 # success

15
Scripts/open-maps-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows maps settings
.DESCRIPTION
This script launches the Windows maps settings.
.EXAMPLE
PS> ./open-maps-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:maps
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows printer settings
.DESCRIPTION
This script launches the Windows printer settings.
.EXAMPLE
PS> ./open-printer-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:printers
exit 0 # success

15
Scripts/open-proxy-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows proxy settings
.DESCRIPTION
This script launches the Windows proxy settings.
.EXAMPLE
PS> ./open-proxy-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:network-proxy
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows recovery settings
.DESCRIPTION
This script launches the Windows recovery settings.
.EXAMPLE
PS> ./open-recovery-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:recovery
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows speech settings
.DESCRIPTION
This script launches the Windows speech settings application.
.EXAMPLE
PS> ./open-speech-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:speech
exit 0 # success

15
Scripts/open-start-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows start settings
.DESCRIPTION
This script launches the Windows start settings.
.EXAMPLE
PS> ./open-start-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:personalization-start
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows taskbar settings
.DESCRIPTION
This script launches the Windows taskbar settings application.
.EXAMPLE
PS> ./open-taskbar-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:taskbar
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows themes settings
.DESCRIPTION
This script launches the Windows themes settings.
.EXAMPLE
PS> ./open-themes-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:themes
exit 0 # success

15
Scripts/open-time-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows date & time settings
.DESCRIPTION
This script launches the Windows date & time settings.
.EXAMPLE
PS> ./open-time-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:dateandtime
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows Update settings
.DESCRIPTION
This script launches the Windows Update settings.
.EXAMPLE
PS> ./open-update-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:windowsupdate
exit 0 # success

15
Scripts/open-usb-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows USB settings
.DESCRIPTION
This script launches the Windows USB settings application.
.EXAMPLE
PS> ./open-usb-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:usb
exit 0 # success

15
Scripts/open-vpn-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows VPN settings
.DESCRIPTION
This script launches the Windows VPN (virtual private network) settings.
.EXAMPLE
PS> ./open-vpn-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:network-vpn
exit 0 # success

15
Scripts/open-wifi-settings.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens Windows WLAN settings
.DESCRIPTION
This script launches the Windows WLAN settings application.
.EXAMPLE
PS> ./open-wifi-settings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process ms-settings:network-wifi
exit 0 # success