diff --git a/Scripts/open-activation-settings.ps1 b/Scripts/open-activation-settings.ps1 new file mode 100755 index 00000000..982dc2b4 --- /dev/null +++ b/Scripts/open-activation-settings.ps1 @@ -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 diff --git a/Scripts/open-apps-settings.ps1 b/Scripts/open-apps-settings.ps1 new file mode 100755 index 00000000..39752f0d --- /dev/null +++ b/Scripts/open-apps-settings.ps1 @@ -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 diff --git a/Scripts/open-background-settings.ps1 b/Scripts/open-background-settings.ps1 new file mode 100755 index 00000000..6c274429 --- /dev/null +++ b/Scripts/open-background-settings.ps1 @@ -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 diff --git a/Scripts/open-backup-settings.ps1 b/Scripts/open-backup-settings.ps1 new file mode 100755 index 00000000..e7ae984c --- /dev/null +++ b/Scripts/open-backup-settings.ps1 @@ -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 diff --git a/Scripts/open-bluetooth-settings.ps1 b/Scripts/open-bluetooth-settings.ps1 new file mode 100755 index 00000000..76f05203 --- /dev/null +++ b/Scripts/open-bluetooth-settings.ps1 @@ -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 diff --git a/Scripts/open-color-settings.ps1 b/Scripts/open-color-settings.ps1 new file mode 100755 index 00000000..20706bab --- /dev/null +++ b/Scripts/open-color-settings.ps1 @@ -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 diff --git a/Scripts/open-date-settings.ps1 b/Scripts/open-date-settings.ps1 new file mode 100755 index 00000000..c4e4fad6 --- /dev/null +++ b/Scripts/open-date-settings.ps1 @@ -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 diff --git a/Scripts/open-default-apps-settings.ps1 b/Scripts/open-default-apps-settings.ps1 new file mode 100755 index 00000000..d66a8ad6 --- /dev/null +++ b/Scripts/open-default-apps-settings.ps1 @@ -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 diff --git a/Scripts/open-developer-settings.ps1 b/Scripts/open-developer-settings.ps1 new file mode 100755 index 00000000..1a547908 --- /dev/null +++ b/Scripts/open-developer-settings.ps1 @@ -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 diff --git a/Scripts/open-display-settings.ps1 b/Scripts/open-display-settings.ps1 new file mode 100755 index 00000000..9a7bb087 --- /dev/null +++ b/Scripts/open-display-settings.ps1 @@ -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 diff --git a/Scripts/open-ethernet-settings.ps1 b/Scripts/open-ethernet-settings.ps1 new file mode 100755 index 00000000..e35f5d0c --- /dev/null +++ b/Scripts/open-ethernet-settings.ps1 @@ -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 diff --git a/Scripts/open-lockscreen-settings.ps1 b/Scripts/open-lockscreen-settings.ps1 new file mode 100755 index 00000000..4347f42d --- /dev/null +++ b/Scripts/open-lockscreen-settings.ps1 @@ -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 diff --git a/Scripts/open-maps-settings.ps1 b/Scripts/open-maps-settings.ps1 new file mode 100755 index 00000000..93c1f4d4 --- /dev/null +++ b/Scripts/open-maps-settings.ps1 @@ -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 diff --git a/Scripts/open-printer-settings.ps1 b/Scripts/open-printer-settings.ps1 new file mode 100755 index 00000000..e7fbc2a9 --- /dev/null +++ b/Scripts/open-printer-settings.ps1 @@ -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 diff --git a/Scripts/open-proxy-settings.ps1 b/Scripts/open-proxy-settings.ps1 new file mode 100755 index 00000000..79b094b8 --- /dev/null +++ b/Scripts/open-proxy-settings.ps1 @@ -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 diff --git a/Scripts/open-recovery-settings.ps1 b/Scripts/open-recovery-settings.ps1 new file mode 100755 index 00000000..8690964c --- /dev/null +++ b/Scripts/open-recovery-settings.ps1 @@ -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 diff --git a/Scripts/open-speech-settings.ps1 b/Scripts/open-speech-settings.ps1 new file mode 100755 index 00000000..18d82f52 --- /dev/null +++ b/Scripts/open-speech-settings.ps1 @@ -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 diff --git a/Scripts/open-start-settings.ps1 b/Scripts/open-start-settings.ps1 new file mode 100755 index 00000000..edf0eef3 --- /dev/null +++ b/Scripts/open-start-settings.ps1 @@ -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 diff --git a/Scripts/open-taskbar-settings.ps1 b/Scripts/open-taskbar-settings.ps1 new file mode 100755 index 00000000..aee475fd --- /dev/null +++ b/Scripts/open-taskbar-settings.ps1 @@ -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 diff --git a/Scripts/open-themes-settings.ps1 b/Scripts/open-themes-settings.ps1 new file mode 100755 index 00000000..8190c904 --- /dev/null +++ b/Scripts/open-themes-settings.ps1 @@ -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 diff --git a/Scripts/open-time-settings.ps1 b/Scripts/open-time-settings.ps1 new file mode 100755 index 00000000..ad9ee2ea --- /dev/null +++ b/Scripts/open-time-settings.ps1 @@ -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 diff --git a/Scripts/open-update-settings.ps1 b/Scripts/open-update-settings.ps1 new file mode 100755 index 00000000..c51d5492 --- /dev/null +++ b/Scripts/open-update-settings.ps1 @@ -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 diff --git a/Scripts/open-usb-settings.ps1 b/Scripts/open-usb-settings.ps1 new file mode 100755 index 00000000..e41fd6e8 --- /dev/null +++ b/Scripts/open-usb-settings.ps1 @@ -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 diff --git a/Scripts/open-vpn-settings.ps1 b/Scripts/open-vpn-settings.ps1 new file mode 100755 index 00000000..d62da3de --- /dev/null +++ b/Scripts/open-vpn-settings.ps1 @@ -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 diff --git a/Scripts/open-wifi-settings.ps1 b/Scripts/open-wifi-settings.ps1 new file mode 100755 index 00000000..30a6342b --- /dev/null +++ b/Scripts/open-wifi-settings.ps1 @@ -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