Add close-serenade.ps1

This commit is contained in:
Markus Fleschutz 2021-10-23 17:22:04 +02:00
parent 94352bf11b
commit d32c7aba9f
4 changed files with 43 additions and 0 deletions

View File

@ -50,6 +50,7 @@ close-firefox.ps1, Closes the Firefox Web browser
close-program.ps1, Closes the given program gracefully
close-netflix.ps1, Closes the Netflix application gracefully
close-onedrive.ps1, Closes Microsoft OneDrive gracefully
close-serenade.ps1, Closes the Serenade.ai application gracefully
close-snipping-tool.ps1, Closes the Snipping Tool application gracefully
close-system-settings.ps1, Closes the System Settings gracefully
close-thunderbird.ps1, Closes Mozilla Thunderbird gracefully

1 Script Description
50 close-program.ps1 Closes the given program gracefully
51 close-netflix.ps1 Closes the Netflix application gracefully
52 close-onedrive.ps1 Closes Microsoft OneDrive gracefully
53 close-serenade.ps1 Closes the Serenade.ai application gracefully
54 close-snipping-tool.ps1 Closes the Snipping Tool application gracefully
55 close-system-settings.ps1 Closes the System Settings gracefully
56 close-thunderbird.ps1 Closes Mozilla Thunderbird gracefully

26
Docs/close-serenade.md Normal file
View File

@ -0,0 +1,26 @@
## close-serenade.ps1 - Closes the Serenade.ai application
This script closes the Serenade.ai application gracefully.
## Parameters
```powershell
close-serenade.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./close-serenade
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of close-serenade.ps1*

View File

@ -103,6 +103,7 @@ Mega Collection of PowerShell Scripts
| [close-program.ps1](Scripts/close-program.ps1) | Closes the given program gracefully | [Help](Docs/close-program.md) |
| [close-netflix.ps1](Scripts/close-netflix.ps1) | Closes the Netflix application | [Help](Docs/close-netflix.md) |
| [close-onedrive.ps1](Scripts/close-onedrive.ps1) | Closes Microsoft OneDrive | [Help](Docs/close-onedrive.md) |
| [close-serenade.ps1](Scripts/close-serenade.ps1) | Closes the Serenade application | [Help](Docs/close-serenade.md) |
| [close-snipping-tool.ps1](Scripts/close-snipping-tool.ps1)| Closes the Snipping Tool application | [Help](Docs/close-snipping-tool.md) |
| [close-system-settings.ps1](Scripts/close-system-settings.ps1) | Closes the System Settings window | [Help](Docs/close-system-settings.md)|
| [close-task-manager.ps1](Scripts/close-task-manager.ps1) | Closes the Task Manager | [Help](Docs/close-task-manager.md) |

15
Scripts/close-serenade.ps1 Executable file
View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Closes the Serenade.ai application
.DESCRIPTION
This script closes the Serenade.ai application gracefully.
.EXAMPLE
PS> ./close-serenade
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/close-program.ps1" "Serenade.ai" "serenade" ""
exit 0 # success