mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
Add close-serenade.ps1
This commit is contained in:
parent
94352bf11b
commit
d32c7aba9f
@ -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
|
||||
|
|
26
Docs/close-serenade.md
Normal file
26
Docs/close-serenade.md
Normal 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*
|
@ -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
15
Scripts/close-serenade.ps1
Executable 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
|
Loading…
Reference in New Issue
Block a user