Add open-mozilla-firefox.ps1 and rename to close-mozilla-firefox.ps1

This commit is contained in:
Markus Fleschutz
2021-10-29 13:02:03 +02:00
parent a5d61a40b0
commit 8274022544
7 changed files with 126 additions and 3 deletions

View File

@ -0,0 +1,26 @@
## close-mozilla-firefox.ps1 - Closes Mozilla's Firefox Web browser
This script closes Mozilla's Firefox Web browser gracefully.
## Parameters
```powershell
close-mozilla-firefox.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./close-mozilla-firefox
```
## 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-mozilla-firefox.ps1*

View File

@ -0,0 +1,35 @@
## open-google-chrome.ps1 - Launches the Google Chrome Web browser
This script launches the Google Chrome Web browser.
## Parameters
```powershell
open-google-chrome.ps1 [[-URL] <String>] [<CommonParameters>]
-URL <String>
Specifies an optional URL
Required? false
Position? 1
Default value
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./open-google-chrome
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of open-google-chrome.ps1*

View File

@ -0,0 +1,35 @@
## open-mozilla-firefox.ps1 - Launches the Mozilla Firefox Web browser
This script launches the Mozilla Firefox Web browser.
## Parameters
```powershell
open-mozilla-firefox.ps1 [[-URL] <String>] [<CommonParameters>]
-URL <String>
Specifies an optional URL
Required? false
Position? 1
Default value
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS> ./open-mozilla-firefox
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of open-mozilla-firefox.ps1*