Rename to open/close-visual-studio-app.ps1

This commit is contained in:
Markus Fleschutz 2021-11-21 12:14:18 +01:00
parent 729054f0d4
commit 5f395f6e9a
3 changed files with 13 additions and 6 deletions

View File

@ -28,8 +28,8 @@ More supported voice commands are:
[wake word], open NAME app [wake word], open NAME app
-------------------------- --------------------------
* this launches the given application. * this launches the given application.
* replace NAME by: "calculator", or "Netflix". * replace NAME by: "Calculator", "Netflix", or "Visual Studio".
* when finished use: *[wake word], close NAME* to stop the application. * when finished use: *[wake word], close NAME app* to stop the application.
[wake word], open NAME drive [wake word], open NAME drive
@ -46,6 +46,13 @@ More supported voice commands are:
* when finished use: *[wake word], close file explorer* to stop the File Explorer. * when finished use: *[wake word], close file explorer* to stop the File Explorer.
[wake word], open NAME settings
-------------------------------
* this launches the corresponding Windows settings.
* replace NAME by: "activation", "apps", "background", "backup", "bluetooth", "color", "date", "default apps", "developer", "display", "ethernet", "lockscreen", "maps", "printer", "proxy", "recovery", "speech", "start", "system", "taskbar", "themes", "time", "update", "usb", "vpn", or "wifi". Use "system" as top level settings.
* when finished use: *[wake word], close system settings* to stop the Windows settings.
[wake word], open NAME website [wake word], open NAME website
------------------------------ ------------------------------
* this launches the default Web browser with the given website. * this launches the default Web browser with the given website.

View File

@ -1,10 +1,10 @@
<# <#
.SYNOPSIS .SYNOPSIS
Closes Visual Studio Closes the Visual Studio app
.DESCRIPTION .DESCRIPTION
This script closes the Microsoft Visual Studio application gracefully. This script closes the Microsoft Visual Studio application gracefully.
.EXAMPLE .EXAMPLE
PS> ./close-visual-studio PS> ./close-visual-studio-app
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK

View File

@ -1,10 +1,10 @@
<# <#
.SYNOPSIS .SYNOPSIS
Launches Visual Studio Launches the Visual Studio app
.DESCRIPTION .DESCRIPTION
This script launches the Microsoft Visual Studio application. This script launches the Microsoft Visual Studio application.
.EXAMPLE .EXAMPLE
PS> ./open-visual-studio PS> ./open-visual-studio-app
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK