Skip to content

Commit d32c7ab

Browse files
committed
Add close-serenade.ps1
1 parent 94352bf commit d32c7ab

4 files changed

Lines changed: 43 additions & 0 deletions

File tree

Data/scripts.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ close-firefox.ps1, Closes the Firefox Web browser
5050
close-program.ps1, Closes the given program gracefully
5151
close-netflix.ps1, Closes the Netflix application gracefully
5252
close-onedrive.ps1, Closes Microsoft OneDrive gracefully
53+
close-serenade.ps1, Closes the Serenade.ai application gracefully
5354
close-snipping-tool.ps1, Closes the Snipping Tool application gracefully
5455
close-system-settings.ps1, Closes the System Settings gracefully
5556
close-thunderbird.ps1, Closes Mozilla Thunderbird gracefully

Docs/close-serenade.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## close-serenade.ps1 - Closes the Serenade.ai application
2+
3+
This script closes the Serenade.ai application gracefully.
4+
5+
## Parameters
6+
```powershell
7+
close-serenade.ps1 [<CommonParameters>]
8+
9+
[<CommonParameters>]
10+
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
11+
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
12+
```
13+
14+
## Example
15+
```powershell
16+
PS> ./close-serenade
17+
18+
```
19+
20+
## Notes
21+
Author: Markus Fleschutz · License: CC0
22+
23+
## Related Links
24+
https://github.com/fleschutz/PowerShell
25+
26+
*Generated by convert-ps2md.ps1 using the comment-based help of close-serenade.ps1*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ Mega Collection of PowerShell Scripts
103103
| [close-program.ps1](Scripts/close-program.ps1) | Closes the given program gracefully | [Help](Docs/close-program.md) |
104104
| [close-netflix.ps1](Scripts/close-netflix.ps1) | Closes the Netflix application | [Help](Docs/close-netflix.md) |
105105
| [close-onedrive.ps1](Scripts/close-onedrive.ps1) | Closes Microsoft OneDrive | [Help](Docs/close-onedrive.md) |
106+
| [close-serenade.ps1](Scripts/close-serenade.ps1) | Closes the Serenade application | [Help](Docs/close-serenade.md) |
106107
| [close-snipping-tool.ps1](Scripts/close-snipping-tool.ps1)| Closes the Snipping Tool application | [Help](Docs/close-snipping-tool.md) |
107108
| [close-system-settings.ps1](Scripts/close-system-settings.ps1) | Closes the System Settings window | [Help](Docs/close-system-settings.md)|
108109
| [close-task-manager.ps1](Scripts/close-task-manager.ps1) | Closes the Task Manager | [Help](Docs/close-task-manager.md) |

Scripts/close-serenade.ps1

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<#
2+
.SYNOPSIS
3+
Closes the Serenade.ai application
4+
.DESCRIPTION
5+
This script closes the Serenade.ai application gracefully.
6+
.EXAMPLE
7+
PS> ./close-serenade
8+
.NOTES
9+
Author: Markus Fleschutz · License: CC0
10+
.LINK
11+
https://github.com/fleschutz/PowerShell
12+
#>
13+
14+
& "$PSScriptRoot/close-program.ps1" "Serenade.ai" "serenade" ""
15+
exit 0 # success

0 commit comments

Comments
 (0)