Update the manuals

This commit is contained in:
Markus Fleschutz 2023-07-29 10:04:38 +02:00
parent d4d37d66dd
commit 2e7c40cc3f
554 changed files with 6927 additions and 3740 deletions

View File

@ -1,8 +1,10 @@
## Script: *add-firewall-rules.ps1* PS> *add-firewall-rules.ps1*
====================
This PowerShell script adds firewall rules for the given executable. Administrator rights are required. This PowerShell script adds firewall rules for the given executable. Administrator rights are required.
## Parameters Parameters
----------
```powershell ```powershell
add-firewall-rules.ps1 [[-PathToExecutables] <String>] [<CommonParameters>] add-firewall-rules.ps1 [[-PathToExecutables] <String>] [<CommonParameters>]
@ -20,7 +22,8 @@ add-firewall-rules.ps1 [[-PathToExecutables] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./add-firewall-rules C:\MyApp\bin PS> ./add-firewall-rules C:\MyApp\bin
Adding firewall rule for C:\MyApp\bin\app1.exe Adding firewall rule for C:\MyApp\bin\app1.exe
@ -29,13 +32,16 @@ Adding firewall rule for C:\MyApp\bin\app2.exe
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -103,4 +109,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of add-firewall-rules.ps1 as of 07/29/2023 09:55:08)* *(generated by convert-ps2md.ps1 using the comment-based help of add-firewall-rules.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *add-memo.ps1* PS> *add-memo.ps1*
====================
This PowerShell script saves the given memo text to Memos.csv in your home folder. This PowerShell script saves the given memo text to Memos.csv in your home folder.
## Parameters Parameters
----------
```powershell ```powershell
add-memo.ps1 [[-text] <String>] [<CommonParameters>] add-memo.ps1 [[-text] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ add-memo.ps1 [[-text] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./add-memo "Buy apples" PS> ./add-memo "Buy apples"
✔️ saved to 📄/home/markus/Memos.csv ✔️ saved to 📄/home/markus/Memos.csv
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -73,4 +79,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of add-memo.ps1 as of 07/29/2023 09:55:08)* *(generated by convert-ps2md.ps1 using the comment-based help of add-memo.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *alert.ps1* PS> *alert.ps1*
====================
This PowerShell script handles and escalates the given alert message. This PowerShell script handles and escalates the given alert message.
## Parameters Parameters
----------
```powershell ```powershell
alert.ps1 [[-Message] <String>] [<CommonParameters>] alert.ps1 [[-Message] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ alert.ps1 [[-Message] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./alert "Harddisk failure" PS> ./alert "Harddisk failure"
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -65,4 +71,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of alert.ps1 as of 07/29/2023 09:55:08)* *(generated by convert-ps2md.ps1 using the comment-based help of alert.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *build-repo.ps1* PS> *build-repo.ps1*
====================
This PowerShell script builds a repository by supporting: cmake, configure, autogen, Imakefile, and Makefile. This PowerShell script builds a repository by supporting: cmake, configure, autogen, Imakefile, and Makefile.
## Parameters Parameters
----------
```powershell ```powershell
build-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>] build-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ build-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./build-repo C:\MyRepo PS> ./build-repo C:\MyRepo
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -171,4 +177,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 07/29/2023 09:55:08)* *(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *build-repos.ps1* PS> *build-repos.ps1*
====================
This PowerShell script builds all Git repositories in a folder. This PowerShell script builds all Git repositories in a folder.
## Parameters Parameters
----------
```powershell ```powershell
build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>] build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./build-repos C:\MyRepos PS> ./build-repos C:\MyRepos
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -76,4 +82,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of build-repos.ps1 as of 07/29/2023 09:55:08)* *(generated by convert-ps2md.ps1 using the comment-based help of build-repos.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-autostart.ps1* PS> *cd-autostart.ps1*
====================
This PowerShell script changes the working directory to the user's autostart folder. This PowerShell script changes the working directory to the user's autostart folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-autostart.ps1 [<CommonParameters>] cd-autostart.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-autostart.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-autostart PS> ./cd-autostart
📂C:\Users\Markus\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 📂C:\Users\Markus\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-autostart.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-autostart.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-crashdumps.ps1* PS> *cd-crashdumps.ps1*
====================
This PowerShell script changes the working directory to the crash dumps directory (Windows only). This PowerShell script changes the working directory to the crash dumps directory (Windows only).
## Parameters Parameters
----------
```powershell ```powershell
cd-crashdumps.ps1 [<CommonParameters>] cd-crashdumps.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-crashdumps.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-crashdumps PS> ./cd-crashdumps
📂C:\Users\Markus\AppData\Local\CrashDumps 📂C:\Users\Markus\AppData\Local\CrashDumps
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-crashdumps.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-crashdumps.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-desktop.ps1* PS> *cd-desktop.ps1*
====================
This PowerShell script changes the working directory to the user's desktop folder. This PowerShell script changes the working directory to the user's desktop folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-desktop.ps1 [<CommonParameters>] cd-desktop.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-desktop.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-desktop PS> ./cd-desktop
📂/home/Markus/Desktop 📂/home/Markus/Desktop
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-desktop.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-desktop.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-docs.ps1* PS> *cd-docs.ps1*
====================
This PowerShell script changes the working directory to the documents folder. This PowerShell script changes the working directory to the documents folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-docs.ps1 [<CommonParameters>] cd-docs.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-docs.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-docs PS> ./cd-docs
📂C:\Users\Markus\Documents 📂C:\Users\Markus\Documents
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-docs.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-docs.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-downloads.ps1* PS> *cd-downloads.ps1*
====================
This PowerShell script changes the working directory to the user's downloads folder. This PowerShell script changes the working directory to the user's downloads folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-downloads.ps1 [<CommonParameters>] cd-downloads.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-downloads.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-downloads PS> ./cd-downloads
📂C:\Users\Markus\Downloads 📂C:\Users\Markus\Downloads
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-downloads.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-downloads.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-dropbox.ps1* PS> *cd-dropbox.ps1*
====================
This PowerShell script changes the working directory to the user's Dropbox folder. This PowerShell script changes the working directory to the user's Dropbox folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-dropbox.ps1 [<CommonParameters>] cd-dropbox.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-dropbox.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-dropbox PS> ./cd-dropbox
📂/home/Markus/Dropbox 📂/home/Markus/Dropbox
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-dropbox.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-dropbox.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-etc.ps1* PS> *cd-etc.ps1*
====================
This PowerShell script changes the working directory to the /etc directory. This PowerShell script changes the working directory to the /etc directory.
## Parameters Parameters
----------
```powershell ```powershell
cd-etc.ps1 [<CommonParameters>] cd-etc.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-etc.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-etc PS> ./cd-etc
📂C:\Windows\System32\drivers\etc 📂C:\Windows\System32\drivers\etc
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-etc.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-etc.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-fonts.ps1* PS> *cd-fonts.ps1*
====================
This PowerShell script changes the working directory to the fonts folder. This PowerShell script changes the working directory to the fonts folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-fonts.ps1 [<CommonParameters>] cd-fonts.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-fonts.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-fonts PS> ./cd-fonts
📂C:\Windows\Fonts 📂C:\Windows\Fonts
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-fonts.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-fonts.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-home.ps1* PS> *cd-home.ps1*
====================
This PowerShell script changes the working directory to the user's home directory. This PowerShell script changes the working directory to the user's home directory.
## Parameters Parameters
----------
```powershell ```powershell
cd-home.ps1 [<CommonParameters>] cd-home.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-home.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-home PS> ./cd-home
📂/home/Markus 📂/home/Markus
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-home.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-home.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,9 +1,11 @@
## Script: *cd-logs.ps1* PS> *cd-logs.ps1*
====================
cd-logs.ps1 cd-logs.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ cd-logs.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -45,4 +48,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-logs.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-logs.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-music.ps1* PS> *cd-music.ps1*
====================
This PowerShell script changes the working directory to the user's music folder. This PowerShell script changes the working directory to the user's music folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-music.ps1 [<CommonParameters>] cd-music.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-music.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-music PS> ./cd-music
📂/home/Markus/Music 📂/home/Markus/Music
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-music.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-music.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-onedrive.ps1* PS> *cd-onedrive.ps1*
====================
This PowerShell script changes the working directory to the user's OneDrive folder. This PowerShell script changes the working directory to the user's OneDrive folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-onedrive.ps1 [<CommonParameters>] cd-onedrive.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-onedrive.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-onedrive PS> ./cd-onedrive
📂/home/Markus/OneDrive 📂/home/Markus/OneDrive
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-onedrive.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-onedrive.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-pics.ps1* PS> *cd-pics.ps1*
====================
This PowerShell script changes the working directory to the user's pictures folder. This PowerShell script changes the working directory to the user's pictures folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-pics.ps1 [<CommonParameters>] cd-pics.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-pics.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-pics PS> ./cd-pics
📂/home/Markus/Pictures 📂/home/Markus/Pictures
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-pics.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-pics.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-public.ps1* PS> *cd-public.ps1*
====================
This PowerShell script changes the working directory to the Public folder. This PowerShell script changes the working directory to the Public folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-public.ps1 [<CommonParameters>] cd-public.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-public.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-public PS> ./cd-public
📂C:\Users\Public 📂C:\Users\Public
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-public.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-public.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,9 +1,11 @@
## Script: *cd-recycle-bin.ps1* PS> *cd-recycle-bin.ps1*
====================
cd-recycle-bin.ps1 cd-recycle-bin.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ cd-recycle-bin.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -52,4 +55,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-recycle-bin.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-recycle-bin.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-repos.ps1* PS> *cd-repos.ps1*
====================
This PowerShell script changes the working directory to the user's Git repositories folder. This PowerShell script changes the working directory to the user's Git repositories folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-repos.ps1 [[-Subpath] <String>] [<CommonParameters>] cd-repos.ps1 [[-Subpath] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ cd-repos.ps1 [[-Subpath] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-repos PS> ./cd-repos
📂C:\Users\Markus\Repos 📂C:\Users\Markus\Repos
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -76,4 +82,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-repos.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-repos.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-root.ps1* PS> *cd-root.ps1*
====================
This PowerShell script changes the current working directory to the root directory (C:\ on Windows). This PowerShell script changes the current working directory to the root directory (C:\ on Windows).
## Parameters Parameters
----------
```powershell ```powershell
cd-root.ps1 [<CommonParameters>] cd-root.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-root.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-root PS> ./cd-root
📂C:\ 📂C:\
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -51,4 +57,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-root.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-root.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,9 +1,11 @@
## Script: *cd-screenshots.ps1* PS> *cd-screenshots.ps1*
====================
cd-screenshots.ps1 cd-screenshots.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ cd-screenshots.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -52,4 +55,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-screenshots.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-screenshots.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-scripts.ps1* PS> *cd-scripts.ps1*
====================
This PowerShell script changes the working directory to the PowerShell scripts folder. This PowerShell script changes the working directory to the PowerShell scripts folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-scripts.ps1 [<CommonParameters>] cd-scripts.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-scripts.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-scripts PS> ./cd-scripts
📂/home/Markus/PowerShell/Scripts 📂/home/Markus/PowerShell/Scripts
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-scripts.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-scripts.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-ssh.ps1* PS> *cd-ssh.ps1*
====================
This PowerShell script changes the working directory to the user's SSH folder. This PowerShell script changes the working directory to the user's SSH folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-ssh.ps1 [<CommonParameters>] cd-ssh.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-ssh.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-ssh PS> ./cd-ssh
📂/home/Markus/.ssh 📂/home/Markus/.ssh
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-ssh.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-ssh.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,9 +1,11 @@
## Script: *cd-temp.ps1* PS> *cd-temp.ps1*
====================
cd-temp.ps1 cd-temp.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ cd-temp.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -49,4 +52,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-temp.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-temp.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-templates.ps1* PS> *cd-templates.ps1*
====================
This PowerShell script changes the working directory to the templates folder. This PowerShell script changes the working directory to the templates folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-templates.ps1 [<CommonParameters>] cd-templates.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-templates.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-templates PS> ./cd-templates
📂/home/Markus/Templates 📂/home/Markus/Templates
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-templates.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-templates.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,9 +1,11 @@
## Script: *cd-trash.ps1* PS> *cd-trash.ps1*
====================
cd-trash.ps1 cd-trash.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ cd-trash.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -52,4 +55,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-trash.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-trash.ps1 as of 07/29/2023 10:04:03)*

View File

@ -1,8 +1,10 @@
## Script: *cd-up.ps1* PS> *cd-up.ps1*
====================
This PowerShell script changes the working directory to one directory level up. This PowerShell script changes the working directory to one directory level up.
## Parameters Parameters
----------
```powershell ```powershell
cd-up.ps1 [<CommonParameters>] cd-up.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-up.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> .\cd-up PS> .\cd-up
📂C:\Users 📂C:\Users
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-up.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *cd-up2.ps1* PS> *cd-up2.ps1*
====================
This PowerShell script changes the working directory to two directory level up. This PowerShell script changes the working directory to two directory level up.
## Parameters Parameters
----------
```powershell ```powershell
cd-up2.ps1 [<CommonParameters>] cd-up2.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-up2.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-up2 PS> ./cd-up2
📂C:\ 📂C:\
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up2.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-up2.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *cd-up3.ps1* PS> *cd-up3.ps1*
====================
This PowerShell script changes the working directory to three directory levels up. This PowerShell script changes the working directory to three directory levels up.
## Parameters Parameters
----------
```powershell ```powershell
cd-up3.ps1 [<CommonParameters>] cd-up3.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-up3.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-up3 PS> ./cd-up3
📂C:\ 📂C:\
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up3.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-up3.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *cd-up4.ps1* PS> *cd-up4.ps1*
====================
This PowerShell script changes the working directory to four directory levels up. This PowerShell script changes the working directory to four directory levels up.
## Parameters Parameters
----------
```powershell ```powershell
cd-up4.ps1 [<CommonParameters>] cd-up4.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-up4.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-up4 PS> ./cd-up4
📂C:\ 📂C:\
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-up4.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-up4.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *cd-users.ps1* PS> *cd-users.ps1*
====================
This PowerShell script changes the working directory to the users directory. This PowerShell script changes the working directory to the users directory.
## Parameters Parameters
----------
```powershell ```powershell
cd-users.ps1 [<CommonParameters>] cd-users.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-users.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-users PS> ./cd-users
📂C:\Users 📂C:\Users
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-users.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-users.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *cd-videos.ps1* PS> *cd-videos.ps1*
====================
This PowerShell script changes the working directory to the user's videos folder. This PowerShell script changes the working directory to the user's videos folder.
## Parameters Parameters
----------
```powershell ```powershell
cd-videos.ps1 [<CommonParameters>] cd-videos.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-videos.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-videos PS> ./cd-videos
📂C:\Users\Markus\Videos 📂C:\Users\Markus\Videos
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-videos.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-videos.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *cd-windows.ps1* PS> *cd-windows.ps1*
====================
This PowerShell script changes the working directory to the Windows directory. This PowerShell script changes the working directory to the Windows directory.
## Parameters Parameters
----------
```powershell ```powershell
cd-windows.ps1 [<CommonParameters>] cd-windows.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ cd-windows.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./cd-windows PS> ./cd-windows
📂C:\Windows 📂C:\Windows
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of cd-windows.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of cd-windows.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *change-wallpaper.ps1* PS> *change-wallpaper.ps1*
====================
This PowerShell script downloads a random photo from Unsplash and sets it as desktop background. This PowerShell script downloads a random photo from Unsplash and sets it as desktop background.
## Parameters Parameters
----------
```powershell ```powershell
change-wallpaper.ps1 [[-Category] <String>] [<CommonParameters>] change-wallpaper.ps1 [[-Category] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ change-wallpaper.ps1 [[-Category] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./change-wallpaper PS> ./change-wallpaper
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -73,4 +79,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of change-wallpaper.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of change-wallpaper.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-apps.ps1* PS> *check-apps.ps1*
====================
This PowerShell script queries the application status and prints it. This PowerShell script queries the application status and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-apps.ps1 [<CommonParameters>] check-apps.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-apps.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-apps PS> ./check-apps
✅ 119 apps installed, 11 upgrades available ✅ 119 apps installed, 11 upgrades available
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -66,4 +72,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-apps.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-apps.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-battery.ps1* PS> *check-battery.ps1*
====================
This PowerShell script queries the status of the system battery and prints it. This PowerShell script queries the status of the system battery and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-battery.ps1 [<CommonParameters>] check-battery.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-battery.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-battery PS> ./check-battery
✅ 21% battery life, 54 min remaining ✅ 21% battery life, 54 min remaining
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -77,4 +83,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-battery.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-battery.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-bios.ps1* PS> *check-bios.ps1*
====================
This PowerShell script queries the BIOS status and prints it. This PowerShell script queries the BIOS status and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-bios.ps1 [<CommonParameters>] check-bios.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-bios.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-bios PS> ./check-bios
✅ BIOS 'F6', release ALASKA - 1072009, S/N NXA82EV0EBB0760 by American Megatrends Inc. ✅ BIOS 'F6', release ALASKA - 1072009, S/N NXA82EV0EBB0760 by American Megatrends Inc.
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -68,4 +74,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-bios.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-bios.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-cpu.ps1* PS> *check-cpu.ps1*
====================
check-cpu.ps1 check-cpu.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-cpu.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -100,4 +103,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-cpu.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-cpu.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-day.ps1* PS> *check-day.ps1*
====================
This PowerShell script determines and speaks the current day by text-to-speech (TTS). This PowerShell script determines and speaks the current day by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-day.ps1 [<CommonParameters>] check-day.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-day.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-day PS> ./check-day
✔️ It's Sunday. ✔️ It's Sunday.
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -51,4 +57,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-day.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-day.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-dns.ps1* PS> *check-dns.ps1*
====================
This PowerShell script measures and prints the DNS resolution speed by using 200 popular domains. This PowerShell script measures and prints the DNS resolution speed by using 200 popular domains.
## Parameters Parameters
----------
```powershell ```powershell
check-dns.ps1 [<CommonParameters>] check-dns.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-dns.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-dns PS> ./check-dns
✅ DNS resolves 156.5 domains per second ✅ DNS resolves 156.5 domains per second
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -68,4 +74,4 @@ foreach($row in $table){$nop=Resolve-DNSName $row.Domain}
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-dns.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-dns.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-drive-space.ps1* PS> *check-drive-space.ps1*
====================
This PowerShell script checks a drive for free space left (20 GB by default). This PowerShell script checks a drive for free space left (20 GB by default).
## Parameters Parameters
----------
```powershell ```powershell
check-drive-space.ps1 [[-Drive] <String>] [[-MinLevel] <Int32>] [<CommonParameters>] check-drive-space.ps1 [[-Drive] <String>] [[-MinLevel] <Int32>] [<CommonParameters>]
@ -29,20 +31,24 @@ check-drive-space.ps1 [[-Drive] <String>] [[-MinLevel] <Int32>] [<CommonParamete
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-drive-space C PS> ./check-drive-space C
✔️ 172 GB left on drive C (61 of 233 GB used) ✔️ 172 GB left on drive C (61 of 233 GB used)
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -85,4 +91,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-drive-space.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-drive-space.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-drives.ps1* PS> *check-drives.ps1*
====================
This PowerShell script checks all drives for free space left. This PowerShell script checks all drives for free space left.
## Parameters Parameters
----------
```powershell ```powershell
check-drives.ps1 [[-MinLevel] <Int32>] [<CommonParameters>] check-drives.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-drives.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-drives PS> ./check-drives
✅ C drive uses 87GB of 249GB ✅ C drive uses 87GB of 249GB
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -99,4 +105,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-drives.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-drives.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-dusk.ps1* PS> *check-dusk.ps1*
====================
check-dusk.ps1 check-dusk.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-dusk.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -59,4 +62,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-dusk.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-dusk.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-easter-sunday.ps1* PS> *check-easter-sunday.ps1*
====================
This PowerShell script checks the time until Easter Sunday and replies by text-to-speech (TTS). This PowerShell script checks the time until Easter Sunday and replies by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-easter-sunday.ps1 [<CommonParameters>] check-easter-sunday.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-easter-sunday.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-easter-sunday PS> ./check-easter-sunday
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -55,4 +61,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-easter-sunday.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-easter-sunday.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-file-system.ps1* PS> *check-file-system.ps1*
====================
This PowerShell script checks the file system of a drive. It needs admin rights. This PowerShell script checks the file system of a drive. It needs admin rights.
## Parameters Parameters
----------
```powershell ```powershell
check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>] check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-file-system C PS> ./check-file-system C
✔️ file system on drive C is clean ✔️ file system on drive C is clean
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -69,4 +75,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-file-system.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-file-system.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-file.ps1* PS> *check-file.ps1*
====================
This PowerShell script determines and prints the file type of the given file. This PowerShell script determines and prints the file type of the given file.
## Parameters Parameters
----------
```powershell ```powershell
check-file.ps1 [[-Path] <String>] [<CommonParameters>] check-file.ps1 [[-Path] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ check-file.ps1 [[-Path] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-file C:\my.exe PS> ./check-file C:\my.exe
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -164,4 +170,4 @@ function Check-Header { param( $path )
Check-Header $Path Check-Header $Path
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-file.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-file.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-firewall.ps1* PS> *check-firewall.ps1*
====================
This PowerShell script queries the status of the firewall and prints it. This PowerShell script queries the status of the firewall and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-firewall.ps1 [<CommonParameters>] check-firewall.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-firewall.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-firewall PS> ./check-firewall
✅ Firewall enabled ✅ Firewall enabled
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -59,4 +65,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-firewall.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-firewall.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-gpu.ps1* PS> *check-gpu.ps1*
====================
check-gpu.ps1 check-gpu.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-gpu.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -62,4 +65,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-gpu.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-gpu.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-hardware.ps1* PS> *check-hardware.ps1*
====================
This PowerShell script queries the hardware details of the local computer and prints it. This PowerShell script queries the hardware details of the local computer and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-hardware.ps1 [<CommonParameters>] check-hardware.ps1 [<CommonParameters>]
@ -11,7 +13,8 @@ check-hardware.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-hardware.ps1 PS> ./check-hardware.ps1
@ -21,13 +24,16 @@ H A R D W A R E
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -57,4 +63,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-hardware.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-hardware.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-health.ps1* PS> *check-health.ps1*
====================
This PowerShell script queries the system health of the local computer (hardware, software, and network) and prints it. This PowerShell script queries the system health of the local computer (hardware, software, and network) and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-health.ps1 [<CommonParameters>] check-health.ps1 [<CommonParameters>]
@ -11,7 +13,8 @@ check-health.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-health.ps1 PS> ./check-health.ps1
@ -21,13 +24,16 @@ H A R D W A R E
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -52,4 +58,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-health.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-health.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-independence-day.ps1* PS> *check-independence-day.ps1*
====================
This PowerShell script checks the time until Indepence Day and replies by text-to-speech (TTS). This PowerShell script checks the time until Indepence Day and replies by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-independence-day.ps1 [<CommonParameters>] check-independence-day.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-independence-day.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-independence-day PS> ./check-independence-day
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -55,4 +61,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-independence-day.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-independence-day.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-ipv4-address.ps1* PS> *check-ipv4-address.ps1*
====================
This PowerShell script checks the given IPv4 address for validity. This PowerShell script checks the given IPv4 address for validity.
## Parameters Parameters
----------
```powershell ```powershell
check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>] check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-ipv4-address 192.168.11.22 PS> ./check-ipv4-address 192.168.11.22
✔️ IPv4 192.168.11.22 is valid ✔️ IPv4 192.168.11.22 is valid
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -78,4 +84,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-ipv4-address.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-ipv4-address.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-ipv6-address.ps1* PS> *check-ipv6-address.ps1*
====================
This PowerShell script checks the given IPv6 address for validity This PowerShell script checks the given IPv6 address for validity
## Parameters Parameters
----------
```powershell ```powershell
check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>] check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-ipv6-address fe80::200:5aee:feaa:20a2 PS> ./check-ipv6-address fe80::200:5aee:feaa:20a2
✔️ IPv6 fe80::200:5aee:feaa:20a2 is valid ✔️ IPv6 fe80::200:5aee:feaa:20a2 is valid
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -92,4 +98,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-ipv6-address.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-ipv6-address.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-iss-position.ps1* PS> *check-iss-position.ps1*
====================
This PowerShell script queries the position of the International Space Station (ISS) and replies by text-to-speech (TTS). This PowerShell script queries the position of the International Space Station (ISS) and replies by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-iss-position.ps1 [<CommonParameters>] check-iss-position.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-iss-position.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-iss-position PS> ./check-iss-position
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -49,4 +55,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-iss-position.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-iss-position.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-mac-address.ps1* PS> *check-mac-address.ps1*
====================
This PowerShell script checks the given MAC address for validity This PowerShell script checks the given MAC address for validity
Supported MAC address formats are: 00:00:00:00:00:00 or 00-00-00-00-00-00 or 000000000000. Supported MAC address formats are: 00:00:00:00:00:00 or 00-00-00-00-00-00 or 000000000000.
## Parameters Parameters
----------
```powershell ```powershell
check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>] check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>]
@ -21,20 +23,24 @@ check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-mac-address 11:22:33:44:55:66 PS> ./check-mac-address 11:22:33:44:55:66
✔️ MAC address 11:22:33:44:55:66 is valid ✔️ MAC address 11:22:33:44:55:66 is valid
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -81,4 +87,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-mac-address.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-mac-address.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-midnight.ps1* PS> *check-midnight.ps1*
====================
check-midnight.ps1 check-midnight.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-midnight.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -57,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-midnight.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-midnight.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-month.ps1* PS> *check-month.ps1*
====================
This PowerShell script determines and speaks the current month name by text-to-speech (TTS). This PowerShell script determines and speaks the current month name by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-month.ps1 [<CommonParameters>] check-month.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-month.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-month PS> ./check-month
✔️ It's December. ✔️ It's December.
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -51,4 +57,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-month.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-month.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-moon-phase.ps1* PS> *check-moon-phase.ps1*
====================
This PowerShell script determines the Moon phase and answers by text-to-speech (TTS). This PowerShell script determines the Moon phase and answers by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-moon-phase.ps1 [<CommonParameters>] check-moon-phase.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-moon-phase.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-moon-phase PS> ./check-moon-phase
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -70,4 +76,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-moon-phase.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-moon-phase.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-network.ps1* PS> *check-network.ps1*
====================
This PowerShell script queries the network details of the local computer and prints it. This PowerShell script queries the network details of the local computer and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-network.ps1 [<CommonParameters>] check-network.ps1 [<CommonParameters>]
@ -11,7 +13,8 @@ check-network.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-network.ps1 PS> ./check-network.ps1
@ -23,13 +26,16 @@ N E T W O R K
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -57,4 +63,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-network.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-network.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-new-year.ps1* PS> *check-new-year.ps1*
====================
This PowerShell script checks the time until New Year and replies by text-to-speech (TTS). This PowerShell script checks the time until New Year and replies by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-new-year.ps1 [<CommonParameters>] check-new-year.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-new-year.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-new-year PS> ./check-new-year
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-new-year.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-new-year.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-noon.ps1* PS> *check-noon.ps1*
====================
check-noon.ps1 check-noon.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-noon.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -56,4 +59,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-noon.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-noon.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-os.ps1* PS> *check-os.ps1*
====================
This PowerShell script queries the operating system status and prints it. This PowerShell script queries the operating system status and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-os.ps1 [<CommonParameters>] check-os.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-os.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-os PS> ./check-os
✅ Windows 10 Pro 64-bit (v10.0.19045, since 6/22/2021, S/N 00123-45678-15135-AAOEM, P/K AB123-CD456-EF789-GH000-WFR6P) ✅ Windows 10 Pro 64-bit (v10.0.19045, since 6/22/2021, S/N 00123-45678-15135-AAOEM, P/K AB123-CD456-EF789-GH000-WFR6P)
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -67,4 +73,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-os.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-os.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-outlook.ps1* PS> *check-outlook.ps1*
====================
This PowerShell script checks the inbox of Outlook for new/unread mails. This PowerShell script checks the inbox of Outlook for new/unread mails.
## Parameters Parameters
----------
```powershell ```powershell
check-outlook.ps1 [<CommonParameters>] check-outlook.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-outlook.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-outlook PS> ./check-outlook
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -57,4 +63,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-outlook.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-outlook.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-password.ps1* PS> *check-password.ps1*
====================
This PowerShell script checks the security status of the given password by haveibeenpwned.com This PowerShell script checks the security status of the given password by haveibeenpwned.com
## Parameters Parameters
----------
```powershell ```powershell
check-password.ps1 [[-password] <String>] [<CommonParameters>] check-password.ps1 [[-password] <String>] [<CommonParameters>]
@ -19,20 +21,24 @@ check-password.ps1 [[-password] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-password qwerty PS> ./check-password qwerty
⚠️ Bad password, it's already listed in 10584568 known security breaches! ⚠️ Bad password, it's already listed in 10584568 known security breaches!
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -88,4 +94,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-password.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-password.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-pending-reboot.ps1* PS> *check-pending-reboot.ps1*
====================
check-pending-reboot.ps1 check-pending-reboot.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-pending-reboot.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -88,4 +91,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-pending-reboot.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-pending-reboot.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-ping.ps1* PS> *check-ping.ps1*
====================
This PowerShell script measures the ping roundtrip times from the local computer to 10 Internet servers. This PowerShell script measures the ping roundtrip times from the local computer to 10 Internet servers.
## Parameters Parameters
----------
```powershell ```powershell
check-ping.ps1 [[-hosts] <String>] [<CommonParameters>] check-ping.ps1 [[-hosts] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-ping.ps1 [[-hosts] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-ping PS> ./check-ping
✅ Ping latency is 29ms average (13ms...109ms, 0 loss) ✅ Ping latency is 29ms average (13ms...109ms, 0 loss)
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -82,4 +88,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-ping.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-ping.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-powershell.ps1* PS> *check-powershell.ps1*
====================
This PowerShell script queries the PowerShell status and prints it. This PowerShell script queries the PowerShell status and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-powershell.ps1 [<CommonParameters>] check-powershell.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-powershell.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-powershell PS> ./check-powershell
✅ PowerShell Desktop edition 5.1.19041.2673 (10 modules, 1458 cmdlets, 172 aliases) ✅ PowerShell Desktop edition 5.1.19041.2673 (10 modules, 1458 cmdlets, 172 aliases)
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -58,4 +64,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-powershell.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-powershell.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-ps1-file.ps1* PS> *check-ps1-file.ps1*
====================
This PowerShell script checks the given PowerShell script file(s) for validity. This PowerShell script checks the given PowerShell script file(s) for validity.
## Parameters Parameters
----------
```powershell ```powershell
check-ps1-file.ps1 [[-filePattern] <String>] [<CommonParameters>] check-ps1-file.ps1 [[-filePattern] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-ps1-file.ps1 [[-filePattern] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-ps1-file *.ps1 PS> ./check-ps1-file *.ps1
✔️ Valid PowerShell in myfile.ps1 ✔️ Valid PowerShell in myfile.ps1
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -70,4 +76,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-ps1-file.ps1 as of 07/29/2023 09:55:09)* *(generated by convert-ps2md.ps1 using the comment-based help of check-ps1-file.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-ram.ps1* PS> *check-ram.ps1*
====================
check-ram.ps1 check-ram.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-ram.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -95,4 +98,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-ram.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-ram.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-repo.ps1* PS> *check-repo.ps1*
====================
This PowerShell script verifies the integrity of a local Git repository. This PowerShell script verifies the integrity of a local Git repository.
## Parameters Parameters
----------
```powershell ```powershell
check-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>] check-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
@ -20,7 +22,8 @@ check-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-repo.ps1 C:\MyRepo PS> ./check-repo.ps1 C:\MyRepo
⏳ (1/10) Searching for Git executable... git version 2.41.0.windows.3 ⏳ (1/10) Searching for Git executable... git version 2.41.0.windows.3
@ -34,13 +37,16 @@ PS> ./check-repo.ps1 C:\MyRepo
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -122,4 +128,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-repo.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-repo.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-santa.ps1* PS> *check-santa.ps1*
====================
This PowerShell script checks the time until Saint Nicholas Day and replies by text-to-speech (TTS). This PowerShell script checks the time until Saint Nicholas Day and replies by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-santa.ps1 [<CommonParameters>] check-santa.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-santa.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-santa PS> ./check-santa
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -50,4 +56,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-santa.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-santa.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-smart-devices.ps1* PS> *check-smart-devices.ps1*
====================
check-smart-devices.ps1 check-smart-devices.ps1
## Parameters Parameters
----------
```powershell ```powershell
@ -12,7 +14,8 @@ check-smart-devices.ps1
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -92,4 +95,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-smart-devices.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-smart-devices.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-software.ps1* PS> *check-software.ps1*
====================
This PowerShell script queries the software details of the local computer and prints it. This PowerShell script queries the software details of the local computer and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-software.ps1 [<CommonParameters>] check-software.ps1 [<CommonParameters>]
@ -11,7 +13,8 @@ check-software.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-software.ps1 PS> ./check-software.ps1
@ -23,13 +26,16 @@ S O F T W A R E
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -61,4 +67,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-software.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-software.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-subnet-mask.ps1* PS> *check-subnet-mask.ps1*
====================
This PowerShell script checks the given subnet mask for validity. This PowerShell script checks the given subnet mask for validity.
## Parameters Parameters
----------
```powershell ```powershell
check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>] check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-subnet-mask 255.255.255.0 PS> ./check-subnet-mask 255.255.255.0
✔️ subnet mask 255.255.255.0 is valid ✔️ subnet mask 255.255.255.0 is valid
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -78,4 +84,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-subnet-mask.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-subnet-mask.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-swap-space.ps1* PS> *check-swap-space.ps1*
====================
This PowerShell script queries the status of the swap space and prints it. This PowerShell script queries the status of the swap space and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-swap-space.ps1 [[-MinLevel] <Int32>] [<CommonParameters>] check-swap-space.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-swap-space.ps1 [[-MinLevel] <Int32>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-swap-space PS> ./check-swap-space
✅ Swap space uses 63GB of 1856GB ✅ Swap space uses 63GB of 1856GB
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -101,4 +107,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-swap-space.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-swap-space.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *check-symlinks.ps1* PS> *check-symlinks.ps1*
====================
This PowerShell script checks every symbolic link in a folder (including subfolders). This PowerShell script checks every symbolic link in a folder (including subfolders).
It returns the number of broken symlinks as exit value. It returns the number of broken symlinks as exit value.
## Parameters Parameters
----------
```powershell ```powershell
check-symlinks.ps1 [[-Folder] <String>] [<CommonParameters>] check-symlinks.ps1 [[-Folder] <String>] [<CommonParameters>]
@ -21,19 +23,23 @@ check-symlinks.ps1 [[-Folder] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-symlinks C:\Users PS> ./check-symlinks C:\Users
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -90,4 +96,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-symlinks.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-symlinks.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-time-zone.ps1* PS> *check-time-zone.ps1*
====================
This PowerShell script queries the time zone and prints it. This PowerShell script queries the time zone and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-time-zone.ps1 [<CommonParameters>] check-time-zone.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-time-zone.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-time-zone PS> ./check-time-zone
✅ 11:13 AM W. Europe Summer Time (UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna (+01:00 DST) ✅ 11:13 AM W. Europe Summer Time (UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna (+01:00 DST)
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -59,4 +65,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-time-zone.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-time-zone.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-uptime.ps1* PS> *check-uptime.ps1*
====================
This PowerShell script queries the computer's uptime and prints it. This PowerShell script queries the computer's uptime and prints it.
## Parameters Parameters
----------
```powershell ```powershell
check-uptime.ps1 [<CommonParameters>] check-uptime.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-uptime.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-uptime PS> ./check-uptime
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -74,4 +80,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-uptime.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-uptime.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-vpn.ps1* PS> *check-vpn.ps1*
====================
This PowerShell script queries and prints the status of the VPN connection(s). This PowerShell script queries and prints the status of the VPN connection(s).
## Parameters Parameters
----------
```powershell ```powershell
check-vpn.ps1 [<CommonParameters>] check-vpn.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-vpn.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-vpn.ps1 PS> ./check-vpn.ps1
✅ VPN to NASA L2TP is disconnected ✅ VPN to NASA L2TP is disconnected
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -59,4 +65,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-vpn.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-vpn.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-weather.ps1* PS> *check-weather.ps1*
====================
This PowerShell script checks the current weather report. This PowerShell script checks the current weather report.
## Parameters Parameters
----------
```powershell ```powershell
check-weather.ps1 [[-location] <String>] [<CommonParameters>] check-weather.ps1 [[-location] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ check-weather.ps1 [[-location] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-weather PS> ./check-weather
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -75,4 +81,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-weather.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-weather.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-week.ps1* PS> *check-week.ps1*
====================
This PowerShell script determines and speaks the current week number by text-to-speech (TTS). This PowerShell script determines and speaks the current week number by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-week.ps1 [<CommonParameters>] check-week.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ check-week.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-week PS> ./check-week
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -48,4 +54,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-week.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-week.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-wind.ps1* PS> *check-wind.ps1*
====================
This PowerShell script determines the current wind conditions and replies by text-to-speech (TTS). This PowerShell script determines the current wind conditions and replies by text-to-speech (TTS).
## Parameters Parameters
----------
```powershell ```powershell
check-wind.ps1 [[-location] <String>] [<CommonParameters>] check-wind.ps1 [[-location] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ check-wind.ps1 [[-location] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-wind PS> ./check-wind
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -66,4 +72,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-wind.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-wind.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-windows-system-files.ps1* PS> *check-windows-system-files.ps1*
====================
This PowerShell script checks the validity of the Windows system files. It requires admin rights. This PowerShell script checks the validity of the Windows system files. It requires admin rights.
## Parameters Parameters
----------
```powershell ```powershell
check-windows-system-files.ps1 [<CommonParameters>] check-windows-system-files.ps1 [<CommonParameters>]
@ -11,20 +13,24 @@ check-windows-system-files.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-windows-system-files PS> ./check-windows-system-files
✔️ checked Windows system files ✔️ checked Windows system files
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -54,4 +60,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-windows-system-files.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-windows-system-files.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *check-xml-file.ps1* PS> *check-xml-file.ps1*
====================
This PowerShell script checks the given XML file for validity. This PowerShell script checks the given XML file for validity.
## Parameters Parameters
----------
```powershell ```powershell
check-xml-file.ps1 [[-file] <String>] [<CommonParameters>] check-xml-file.ps1 [[-file] <String>] [<CommonParameters>]
@ -20,20 +22,24 @@ check-xml-file.ps1 [[-file] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./check-xml-file myfile.xml PS> ./check-xml-file myfile.xml
✔️ XML file is valid ✔️ XML file is valid
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -82,4 +88,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of check-xml-file.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of check-xml-file.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *clean-repo.ps1* PS> *clean-repo.ps1*
====================
This PowerShell script deletes all untracked files and folders in a local Git repository (including submodules). This PowerShell script deletes all untracked files and folders in a local Git repository (including submodules).
NOTE: To be used with care! This cannot be undone! NOTE: To be used with care! This cannot be undone!
## Parameters Parameters
----------
```powershell ```powershell
clean-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>] clean-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
@ -21,19 +23,23 @@ clean-repo.ps1 [[-RepoDir] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./clean-repo C:\MyRepo PS> ./clean-repo C:\MyRepo
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -85,4 +91,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of clean-repo.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of clean-repo.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *clean-repos.ps1* PS> *clean-repos.ps1*
====================
This PowerShell script cleans all Git repositories in a folder from untracked files (including submodules). This PowerShell script cleans all Git repositories in a folder from untracked files (including submodules).
## Parameters Parameters
----------
```powershell ```powershell
clean-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>] clean-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ clean-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./clean-repos C:\MyRepos PS> ./clean-repos C:\MyRepos
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -86,4 +92,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of clean-repos.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of clean-repos.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *clear-dns-cache.ps1* PS> *clear-dns-cache.ps1*
====================
This PowerShell script clears the DNS client cache of the local computer. This PowerShell script clears the DNS client cache of the local computer.
## Parameters Parameters
----------
```powershell ```powershell
clear-dns-cache.ps1 [<CommonParameters>] clear-dns-cache.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ clear-dns-cache.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./clear-dns-cache PS> ./clear-dns-cache
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -52,4 +58,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of clear-dns-cache.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of clear-dns-cache.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,9 +1,11 @@
## Script: *clear-recycle-bin.ps1* PS> *clear-recycle-bin.ps1*
====================
This PowerShell script removes the content of the recycle bin folder permanently. This PowerShell script removes the content of the recycle bin folder permanently.
IMPORTANT NOTE: this cannot be undo! IMPORTANT NOTE: this cannot be undo!
## Parameters Parameters
----------
```powershell ```powershell
clear-recycle-bin.ps1 [<CommonParameters>] clear-recycle-bin.ps1 [<CommonParameters>]
@ -12,19 +14,23 @@ clear-recycle-bin.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./clear-recycle-bin PS> ./clear-recycle-bin
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -52,4 +58,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of clear-recycle-bin.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of clear-recycle-bin.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *clone-repos.ps1* PS> *clone-repos.ps1*
====================
This PowerShell script clones popular Git repositories into a target directory. This PowerShell script clones popular Git repositories into a target directory.
## Parameters Parameters
----------
```powershell ```powershell
clone-repos.ps1 [[-TargetDir] <String>] [<CommonParameters>] clone-repos.ps1 [[-TargetDir] <String>] [<CommonParameters>]
@ -20,19 +22,23 @@ clone-repos.ps1 [[-TargetDir] <String>] [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./clone-repos C:\Repos PS> ./clone-repos C:\Repos
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -103,4 +109,4 @@ try {
} }
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of clone-repos.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of clone-repos.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-calculator.ps1* PS> *close-calculator.ps1*
====================
This PowerShell script closes the calculator application gracefully. This PowerShell script closes the calculator application gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-calculator.ps1 [<CommonParameters>] close-calculator.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-calculator.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-calculator PS> ./close-calculator
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -42,4 +48,4 @@ Stop-Process -name "CalculatorApp"
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-calculator.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-calculator.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-chrome.ps1* PS> *close-chrome.ps1*
====================
This PowerShell script closes the Google Chrome Web browser gracefully. This PowerShell script closes the Google Chrome Web browser gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-chrome.ps1 [<CommonParameters>] close-chrome.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-chrome.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-chrome PS> ./close-chrome
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-chrome.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-chrome.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-cortana.ps1* PS> *close-cortana.ps1*
====================
This PowerShell script closes Microsoft's Cortana application gracefully. This PowerShell script closes Microsoft's Cortana application gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-cortana.ps1 [<CommonParameters>] close-cortana.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-cortana.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-cortana PS> ./close-cortana
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-cortana.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-cortana.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-edge.ps1* PS> *close-edge.ps1*
====================
This PowerShell script closes the Microsoft Edge Web browser gracefully. This PowerShell script closes the Microsoft Edge Web browser gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-edge.ps1 [<CommonParameters>] close-edge.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-edge.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-edge PS> ./close-edge
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -46,4 +52,4 @@ if ($lastExitCode -ne "0") {
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-edge.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-edge.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-file-explorer.ps1* PS> *close-file-explorer.ps1*
====================
This PowerShell script closes the Microsoft File Explorer application gracefully. This PowerShell script closes the Microsoft File Explorer application gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-file-explorer.ps1 [<CommonParameters>] close-file-explorer.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-file-explorer.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-file-explorer PS> ./close-file-explorer
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-file-explorer.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-file-explorer.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-firefox.ps1* PS> *close-firefox.ps1*
====================
This PowerShell script closes the Mozilla Firefox Web browser gracefully. This PowerShell script closes the Mozilla Firefox Web browser gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-firefox.ps1 [<CommonParameters>] close-firefox.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-firefox.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-firefox PS> ./close-firefox
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -42,4 +48,4 @@ https://github.com/fleschutz/PowerShell
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-firefox.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-firefox.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-git-extensions.ps1* PS> *close-git-extensions.ps1*
====================
This PowerShell script closes the Git Extensions application gracefully. This PowerShell script closes the Git Extensions application gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-git-extensions.ps1 [<CommonParameters>] close-git-extensions.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-git-extensions.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-git-extensions PS> ./close-git-extensions
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -46,4 +52,4 @@ if ($lastExitCode -ne "0") {
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-git-extensions.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-git-extensions.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-magnifier.ps1* PS> *close-magnifier.ps1*
====================
This PowerShell script closes the Windows Screen Magnifier application gracefully. This PowerShell script closes the Windows Screen Magnifier application gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-magnifier.ps1 [<CommonParameters>] close-magnifier.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-magnifier.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-magnifier PS> ./close-magnifier
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -42,4 +48,4 @@ tskill magnify
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-magnifier.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-magnifier.ps1 as of 07/29/2023 10:04:04)*

View File

@ -1,8 +1,10 @@
## Script: *close-microsoft-paint.ps1* PS> *close-microsoft-paint.ps1*
====================
This PowerShell script closes the Microsoft Paint application gracefully. This PowerShell script closes the Microsoft Paint application gracefully.
## Parameters Parameters
----------
```powershell ```powershell
close-microsoft-paint.ps1 [<CommonParameters>] close-microsoft-paint.ps1 [<CommonParameters>]
@ -11,19 +13,23 @@ close-microsoft-paint.ps1 [<CommonParameters>]
WarningVariable, OutBuffer, PipelineVariable, and OutVariable. WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
``` ```
## Example Example
-------
```powershell ```powershell
PS> ./close-microsoft-paint PS> ./close-microsoft-paint
``` ```
## Notes Notes
-----
Author: Markus Fleschutz | License: CC0 Author: Markus Fleschutz | License: CC0
## Related Links Related Links
-------------
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
## Script Content Script Content
--------------
```powershell ```powershell
<# <#
.SYNOPSIS .SYNOPSIS
@ -46,4 +52,4 @@ if ($lastExitCode -ne "0") {
exit 0 # success exit 0 # success
``` ```
*(generated by convert-ps2md.ps1 using the comment-based help of close-microsoft-paint.ps1 as of 07/29/2023 09:55:10)* *(generated by convert-ps2md.ps1 using the comment-based help of close-microsoft-paint.ps1 as of 07/29/2023 10:04:05)*

Some files were not shown because too many files have changed in this diff Show More