Update the manuals in Docs/

This commit is contained in:
Markus Fleschutz 2022-11-17 20:05:34 +01:00
parent 7f79a2afbb
commit 8e9e963a78
515 changed files with 1548 additions and 516 deletions

View File

@ -1,4 +1,4 @@
## The add-firewall-rules.ps1 PowerShell Script
## The PowerShell Script: add-firewall-rules.ps1
This PowerShell script adds firewall rules for the given executable. Administrator rights are required.
@ -36,6 +36,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Adds firewall rules for executables (needs admin rights)
@ -100,5 +101,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of add-firewall-rules.ps1*

View File

@ -1,4 +1,4 @@
## The add-memo.ps1 PowerShell Script
## The PowerShell Script: add-memo.ps1
This PowerShell script adds the given memo text to $HOME/Memos.csv.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Adds a memo text
@ -71,5 +72,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of add-memo.ps1*

View File

@ -1,4 +1,4 @@
## The alert.ps1 PowerShell Script
## The PowerShell Script: alert.ps1
This PowerShell script handles and escalates the given alert message.
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Handles and escalates an alert
@ -62,5 +63,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of alert.ps1*

View File

@ -1,4 +1,4 @@
## The build-repo.ps1 PowerShell Script
## The PowerShell Script: build-repo.ps1
This PowerShell script supports building with cmake, configure, autogen, Imakefile and Makefile.
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Builds a Git repository
@ -161,5 +162,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1*

View File

@ -1,4 +1,4 @@
## The build-repos.ps1 PowerShell Script
## The PowerShell Script: build-repos.ps1
This PowerShell script builds all Git repositories in a folder.
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Builds Git repositories
@ -73,5 +74,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of build-repos.ps1*

View File

@ -1,4 +1,4 @@
## The cd-autostart.ps1 PowerShell Script
## The PowerShell Script: cd-autostart.ps1
This PowerShell script changes the working directory to the user's autostart folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's autostart folder
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-autostart.ps1*

View File

@ -1,4 +1,4 @@
## The cd-desktop.ps1 PowerShell Script
## The PowerShell Script: cd-desktop.ps1
This PowerShell script changes the working directory to the user's desktop folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's desktop folder
@ -55,5 +56,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-desktop.ps1*

View File

@ -1,4 +1,4 @@
## The cd-docs.ps1 PowerShell Script
## The PowerShell Script: cd-docs.ps1
This PowerShell script changes the working directory to the documents folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the documents folder
@ -55,5 +56,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-docs.ps1*

View File

@ -1,4 +1,4 @@
## The cd-downloads.ps1 PowerShell Script
## The PowerShell Script: cd-downloads.ps1
This PowerShell script changes the working directory to the user's downloads folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's downloads folder
@ -55,5 +56,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-downloads.ps1*

View File

@ -1,4 +1,4 @@
## The cd-dropbox.ps1 PowerShell Script
## The PowerShell Script: cd-dropbox.ps1
This PowerShell script changes the working directory to the user's Dropbox folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's Dropbox folder
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-dropbox.ps1*

View File

@ -1,4 +1,4 @@
## The cd-fonts.ps1 PowerShell Script
## The PowerShell Script: cd-fonts.ps1
This PowerShell script changes the working directory to the fonts folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the fonts folder
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-fonts.ps1*

View File

@ -1,4 +1,4 @@
## The cd-home.ps1 PowerShell Script
## The PowerShell Script: cd-home.ps1
This PowerShell script changes the working directory to the user's home directory.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's home directory
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-home.ps1*

View File

@ -1,4 +1,4 @@
## The cd-music.ps1 PowerShell Script
## The PowerShell Script: cd-music.ps1
This PowerShell script changes the working directory to the user's music folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's music folder
@ -55,5 +56,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-music.ps1*

View File

@ -1,4 +1,4 @@
## The cd-onedrive.ps1 PowerShell Script
## The PowerShell Script: cd-onedrive.ps1
This PowerShell script changes the working directory to the user's OneDrive folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's OneDrive folder
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-onedrive.ps1*

View File

@ -1,4 +1,4 @@
## The cd-pics.ps1 PowerShell Script
## The PowerShell Script: cd-pics.ps1
This PowerShell script changes the working directory to the user's pictures folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's pictures folder
@ -55,5 +56,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-pics.ps1*

View File

@ -1,4 +1,4 @@
## The cd-recycle-bin.ps1 PowerShell Script
## The PowerShell Script: cd-recycle-bin.ps1
cd-recycle-bin.ps1
@ -13,6 +13,7 @@ cd-recycle-bin.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's recycle bin folder
@ -45,5 +46,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-recycle-bin.ps1*

View File

@ -1,4 +1,4 @@
## The cd-repos.ps1 PowerShell Script
## The PowerShell Script: cd-repos.ps1
This PowerShell script changes the working directory to the user's Git repositories folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's repos folder
@ -57,5 +58,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-repos.ps1*

View File

@ -1,4 +1,4 @@
## The cd-root.ps1 PowerShell Script
## The PowerShell Script: cd-root.ps1
This PowerShell script changes the current working directory to the root directory (C:\ on Windows).
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the root directory
@ -48,5 +49,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-root.ps1*

View File

@ -1,4 +1,4 @@
## The cd-screenshots.ps1 PowerShell Script
## The PowerShell Script: cd-screenshots.ps1
This PowerShell script changes the working directory to the user's screenshots folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's screenshots folder
@ -56,5 +57,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-screenshots.ps1*

View File

@ -1,4 +1,4 @@
## The cd-scripts.ps1 PowerShell Script
## The PowerShell Script: cd-scripts.ps1
This PowerShell script changes the working directory to the PowerShell scripts folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the PowerShell scripts folder
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-scripts.ps1*

View File

@ -1,4 +1,4 @@
## The cd-ssh.ps1 PowerShell Script
## The PowerShell Script: cd-ssh.ps1
This PowerShell script changes the working directory to the user's SSH folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's SSH folder
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-ssh.ps1*

View File

@ -1,4 +1,4 @@
## The cd-temp.ps1 PowerShell Script
## The PowerShell Script: cd-temp.ps1
cd-temp.ps1
@ -13,6 +13,7 @@ cd-temp.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the temporary folder
@ -46,5 +47,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-temp.ps1*

View File

@ -1,4 +1,4 @@
## The cd-up.ps1 PowerShell Script
## The PowerShell Script: cd-up.ps1
This PowerShell script changes the working directory to one directory level up.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to one level up
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-up.ps1*

View File

@ -1,4 +1,4 @@
## The cd-up2.ps1 PowerShell Script
## The PowerShell Script: cd-up2.ps1
This PowerShell script changes the working directory to two directory level up.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to two directory levels up
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-up2.ps1*

View File

@ -1,4 +1,4 @@
## The cd-up3.ps1 PowerShell Script
## The PowerShell Script: cd-up3.ps1
This PowerShell script changes the working directory to three directory levels up.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to three directory levels up
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-up3.ps1*

View File

@ -1,4 +1,4 @@
## The cd-up4.ps1 PowerShell Script
## The PowerShell Script: cd-up4.ps1
This PowerShell script changes the working directory to four directory levels up.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to four directory levels up
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-up4.ps1*

View File

@ -1,4 +1,4 @@
## The cd-users.ps1 PowerShell Script
## The PowerShell Script: cd-users.ps1
This PowerShell script changes the working directory to the users directory.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the users directory
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-users.ps1*

View File

@ -1,4 +1,4 @@
## The cd-videos.ps1 PowerShell Script
## The PowerShell Script: cd-videos.ps1
This PowerShell script changes the working directory to the user's videos folder.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the user's videos folder
@ -55,5 +56,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-videos.ps1*

View File

@ -1,4 +1,4 @@
## The cd-windows.ps1 PowerShell Script
## The PowerShell Script: cd-windows.ps1
This PowerShell script changes the working directory to the Windows directory.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Sets the working directory to the Windows directory
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of cd-windows.ps1*

View File

@ -1,4 +1,4 @@
## The change-wallpaper.ps1 PowerShell Script
## The PowerShell Script: change-wallpaper.ps1
This PowerShell script downloads a random photo from Unsplash and sets it as desktop background.
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Changes the wallpaper
@ -70,5 +71,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of change-wallpaper.ps1*

View File

@ -1,4 +1,4 @@
## The check-bios.ps1 PowerShell Script
## The PowerShell Script: check-bios.ps1
This PowerShell script queries BIOS details and prints it.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks BIOS details
@ -53,5 +54,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-bios.ps1*

View File

@ -1,4 +1,4 @@
## The check-cpu.ps1 PowerShell Script
## The PowerShell Script: check-cpu.ps1
check-cpu.ps1
@ -13,6 +13,7 @@ check-cpu.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks the CPU temperature
@ -68,5 +69,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-cpu.ps1*

View File

@ -1,4 +1,4 @@
## The check-day.ps1 PowerShell Script
## The PowerShell Script: check-day.ps1
This PowerShell script determines and speaks the current day by text-to-speech (TTS).
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Determines the current day
@ -48,5 +49,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-day.ps1*

View File

@ -1,4 +1,4 @@
## The check-dns-server.ps1 PowerShell Script
## The PowerShell Script: check-dns-server.ps1
check-dns-server.ps1
@ -13,6 +13,7 @@ check-dns-server.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks DNS server
@ -66,5 +67,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-dns-server.ps1*

View File

@ -1,4 +1,4 @@
## The check-dns.ps1 PowerShell Script
## The PowerShell Script: check-dns.ps1
This PowerShell script measures and prints the DNS resolution speed by using 200 frequently used domain names.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the DNS resolution
@ -63,5 +64,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-dns.ps1*

View File

@ -1,4 +1,4 @@
## The check-drive-space.ps1 PowerShell Script
## The PowerShell Script: check-drive-space.ps1
This PowerShell script checks a drive for free space left (20 GB by default).
@ -43,6 +43,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks a drive for free space left
@ -82,5 +83,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-drive-space.ps1*

View File

@ -1,4 +1,4 @@
## The check-drives.ps1 PowerShell Script
## The PowerShell Script: check-drives.ps1
This PowerShell script checks all drives for free space left.
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the drive space
@ -90,5 +91,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-drives.ps1*

View File

@ -1,4 +1,4 @@
## The check-dusk.ps1 PowerShell Script
## The PowerShell Script: check-dusk.ps1
check-dusk.ps1
@ -13,6 +13,7 @@ check-dusk.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks the time of dusk
@ -56,5 +57,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-dusk.ps1*

View File

@ -1,4 +1,4 @@
## The check-easter-sunday.ps1 PowerShell Script
## The PowerShell Script: check-easter-sunday.ps1
This PowerShell script checks the time until Easter Sunday and replies by text-to-speech (TTS).
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the time until Easter Sunday
@ -52,5 +53,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-easter-sunday.ps1*

View File

@ -1,4 +1,4 @@
## The check-file-system.ps1 PowerShell Script
## The PowerShell Script: check-file-system.ps1
This PowerShell script checks the file system of a drive. It needs admin rights.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the file system of a drive (needs admin rights)
@ -66,5 +67,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-file-system.ps1*

View File

@ -1,4 +1,4 @@
## The check-gpu.ps1 PowerShell Script
## The PowerShell Script: check-gpu.ps1
check-gpu.ps1
@ -13,6 +13,7 @@ check-gpu.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks the GPU
@ -57,5 +58,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-gpu.ps1*

View File

@ -1,4 +1,4 @@
## The check-health.ps1 PowerShell Script
## The PowerShell Script: check-health.ps1
This PowerShell script checks some health parameter of the local computer.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the system health
@ -52,5 +53,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/check-vpn.ps1"
& "$PSScriptRoot/check-pending-reboot.ps1"
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-health.ps1*

View File

@ -1,4 +1,4 @@
## The check-independence-day.ps1 PowerShell Script
## The PowerShell Script: check-independence-day.ps1
This PowerShell script checks the time until Indepence Day and replies by text-to-speech (TTS).
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the time until Independence Day
@ -52,5 +53,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-independence-day.ps1*

View File

@ -1,4 +1,4 @@
## The check-ipv4-address.ps1 PowerShell Script
## The PowerShell Script: check-ipv4-address.ps1
This PowerShell script checks the given IPv4 address for validity.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks an IPv4 address for validity
@ -75,5 +76,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-ipv4-address.ps1*

View File

@ -1,4 +1,4 @@
## The check-ipv6-address.ps1 PowerShell Script
## The PowerShell Script: check-ipv6-address.ps1
This PowerShell script checks the given IPv6 address for validity
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks an IPv6 address for validity
@ -89,5 +90,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-ipv6-address.ps1*

View File

@ -1,4 +1,4 @@
## The check-iss-position.ps1 PowerShell Script
## The PowerShell Script: check-iss-position.ps1
This PowerShell script queries the position of the International Space Station (ISS) and replies by text-to-speech (TTS).
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the ISS position
@ -46,5 +47,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-iss-position.ps1*

View File

@ -1,4 +1,4 @@
## The check-mac-address.ps1 PowerShell Script
## The PowerShell Script: check-mac-address.ps1
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.
@ -35,6 +35,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the given MAC address for validity
@ -78,5 +79,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-mac-address.ps1*

View File

@ -1,4 +1,4 @@
## The check-midnight.ps1 PowerShell Script
## The PowerShell Script: check-midnight.ps1
check-midnight.ps1
@ -13,6 +13,7 @@ check-midnight.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks for Midnight
@ -54,5 +55,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-midnight.ps1*

View File

@ -1,4 +1,4 @@
## The check-month.ps1 PowerShell Script
## The PowerShell Script: check-month.ps1
This PowerShell script determines and speaks the current month name by text-to-speech (TTS).
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Gets the current month name
@ -48,5 +49,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-month.ps1*

View File

@ -1,4 +1,4 @@
## The check-moon-phase.ps1 PowerShell Script
## The PowerShell Script: check-moon-phase.ps1
This PowerShell script determines the Moon phase and answers by text-to-speech (TTS).
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the Moon phase
@ -67,5 +68,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-moon-phase.ps1*

View File

@ -1,4 +1,4 @@
## The check-new-year.ps1 PowerShell Script
## The PowerShell Script: check-new-year.ps1
This PowerShell script checks the time until New Year and replies by text-to-speech (TTS).
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the time until New Year
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-new-year.ps1*

View File

@ -1,4 +1,4 @@
## The check-noon.ps1 PowerShell Script
## The PowerShell Script: check-noon.ps1
check-noon.ps1
@ -13,6 +13,7 @@ check-noon.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks for Noon
@ -53,5 +54,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-noon.ps1*

View File

@ -1,4 +1,4 @@
## The check-operating-system.ps1 PowerShell Script
## The PowerShell Script: check-operating-system.ps1
This PowerShell script queries and lists operating system details.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Query OS details
@ -58,5 +59,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-operating-system.ps1*

View File

@ -1,4 +1,4 @@
## The check-outlook.ps1 PowerShell Script
## The PowerShell Script: check-outlook.ps1
This PowerShell script checks the inbox of Outlook for new/unread mails.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks Outlook's inbox
@ -54,5 +55,6 @@ try {
"Sorry: $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-outlook.ps1*

View File

@ -1,4 +1,4 @@
## The check-pending-reboot.ps1 PowerShell Script
## The PowerShell Script: check-pending-reboot.ps1
check-pending-reboot.ps1
@ -13,6 +13,7 @@ check-pending-reboot.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Check for pending reboots
@ -76,5 +77,6 @@ if ($Reason -ne "") {
"✅ No pending reboot."
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-pending-reboot.ps1*

View File

@ -1,4 +1,4 @@
## The check-ping.ps1 PowerShell Script
## The PowerShell Script: check-ping.ps1
This PowerShell script checks the ping latency from the local computer to some Internet hosts.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the ping latency
@ -72,5 +73,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-ping.ps1*

View File

@ -1,4 +1,4 @@
## The check-ram.ps1 PowerShell Script
## The PowerShell Script: check-ram.ps1
check-ram.ps1
@ -13,6 +13,7 @@ check-ram.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks the RAM
@ -75,5 +76,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-ram.ps1*

View File

@ -1,4 +1,4 @@
## The check-repo.ps1 PowerShell Script
## The PowerShell Script: check-repo.ps1
This PowerShell script verifies the integrity of a local Git repository.
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks a Git repository
@ -110,5 +111,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-repo.ps1*

View File

@ -1,4 +1,4 @@
## The check-santa.ps1 PowerShell Script
## The PowerShell Script: check-santa.ps1
This PowerShell script checks the time until Saint Nicholas Day and replies by text-to-speech (TTS).
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the time until Saint Nicholas Day
@ -47,5 +48,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-santa.ps1*

View File

@ -1,4 +1,4 @@
## The check-smart-devices.ps1 PowerShell Script
## The PowerShell Script: check-smart-devices.ps1
check-smart-devices.ps1
@ -13,6 +13,7 @@ check-smart-devices.ps1
```
## Source Code
```powershell
<#
.SYNOPSIS
Checks SMART devices
@ -87,5 +88,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-smart-devices.ps1*

View File

@ -1,4 +1,4 @@
## The check-subnet-mask.ps1 PowerShell Script
## The PowerShell Script: check-subnet-mask.ps1
This PowerShell script checks the given subnet mask for validity.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the given subnet mask for validity
@ -75,5 +76,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-subnet-mask.ps1*

View File

@ -1,4 +1,4 @@
## The check-swap-space.ps1 PowerShell Script
## The PowerShell Script: check-swap-space.ps1
This PowerShell script checks the free swap space.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the swap space
@ -95,5 +96,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-swap-space.ps1*

View File

@ -1,4 +1,4 @@
## The check-symlinks.ps1 PowerShell Script
## The PowerShell Script: check-symlinks.ps1
This PowerShell script checks every symbolic link in a folder (including subfolders).
It returns the number of broken symlinks as exit value.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks symlinks in a folder
@ -89,5 +90,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-symlinks.ps1*

View File

@ -1,4 +1,4 @@
## The check-time-zone.ps1 PowerShell Script
## The PowerShell Script: check-time-zone.ps1
This PowerShell script determines and prints the current time zone.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the time zone setting
@ -48,5 +49,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-time-zone.ps1*

View File

@ -1,4 +1,4 @@
## The check-uptime.ps1 PowerShell Script
## The PowerShell Script: check-uptime.ps1
This PowerShell script queries and prints the uptime.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Check uptime
@ -70,5 +71,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-uptime.ps1*

View File

@ -1,4 +1,4 @@
## The check-vpn.ps1 PowerShell Script
## The PowerShell Script: check-vpn.ps1
This PowerShell script queries and prints the status of any VPN connection.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the VPN connection
@ -54,5 +55,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-vpn.ps1*

View File

@ -1,4 +1,4 @@
## The check-weather.ps1 PowerShell Script
## The PowerShell Script: check-weather.ps1
This PowerShell script checks the current weather report.
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the weather
@ -72,5 +73,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-weather.ps1*

View File

@ -1,4 +1,4 @@
## The check-week.ps1 PowerShell Script
## The PowerShell Script: check-week.ps1
This PowerShell script determines and speaks the current week number by text-to-speech (TTS).
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Determines the week number
@ -47,5 +48,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-week.ps1*

View File

@ -1,4 +1,4 @@
## The check-wind.ps1 PowerShell Script
## The PowerShell Script: check-wind.ps1
This PowerShell script determines the current wind conditions and replies by text-to-speech (TTS).
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the wind conditions
@ -63,5 +64,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-wind.ps1*

View File

@ -1,4 +1,4 @@
## The check-windows-system-files.ps1 PowerShell Script
## The PowerShell Script: check-windows-system-files.ps1
This PowerShell script checks the validity of the Windows system files. It requires admin rights.
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the validity of the Windows system files (requires admin rights)
@ -51,5 +52,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-windows-system-files.ps1*

View File

@ -1,4 +1,4 @@
## The check-xml-file.ps1 PowerShell Script
## The PowerShell Script: check-xml-file.ps1
This PowerShell script checks the given XML file for validity.
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Checks the given XML file for validity
@ -79,5 +80,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of check-xml-file.ps1*

View File

@ -1,4 +1,4 @@
## The clean-repo.ps1 PowerShell Script
## The PowerShell Script: clean-repo.ps1
This PowerShell script deletes all untracked files and folders in a Git repository (including submodules).
NOTE: To be used with care! This cannot be undone!
@ -34,6 +34,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Clean a repository
@ -82,5 +83,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of clean-repo.ps1*

View File

@ -1,4 +1,4 @@
## The clean-repos.ps1 PowerShell Script
## The PowerShell Script: clean-repos.ps1
This PowerShell script cleans all Git repositories in a folder from untracked files (including submodules).
@ -33,6 +33,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Cleans all Git repositories in a folder from untracked files
@ -83,5 +84,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of clean-repos.ps1*

View File

@ -1,4 +1,4 @@
## The clear-dns-cache.ps1 PowerShell Script
## The PowerShell Script: clear-dns-cache.ps1
This PowerShell script clears the DNS client cache of the local computer.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Clears the DNS cache
@ -49,5 +50,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of clear-dns-cache.ps1*

View File

@ -1,4 +1,4 @@
## The clear-recycle-bin.ps1 PowerShell Script
## The PowerShell Script: clear-recycle-bin.ps1
This PowerShell script removes the content of the recycle bin folder permanently.
IMPORTANT NOTE: this cannot be undo!
@ -25,6 +25,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Clears the recycle bin folder
@ -49,5 +50,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of clear-recycle-bin.ps1*

View File

@ -1,4 +1,4 @@
## The clone-repos.ps1 PowerShell Script
## The PowerShell Script: clone-repos.ps1
This PowerShell script clones well-known Git repositories into a folder.
@ -32,6 +32,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Clones Git repositories
@ -103,5 +104,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of clone-repos.ps1*

View File

@ -1,4 +1,4 @@
## The close-calculator.ps1 PowerShell Script
## The PowerShell Script: close-calculator.ps1
This PowerShell script closes the calculator application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the calculator application
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-calculator.ps1*

View File

@ -1,4 +1,4 @@
## The close-chrome.ps1 PowerShell Script
## The PowerShell Script: close-chrome.ps1
This PowerShell script closes the Google Chrome Web browser gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Chrome browser
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Google Chrome" "chrome" "chrome"
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-chrome.ps1*

View File

@ -1,4 +1,4 @@
## The close-cortana.ps1 PowerShell Script
## The PowerShell Script: close-cortana.ps1
This PowerShell script closes Microsoft's Cortana application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes Microsoft's Cortana application
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Cortana" "Cortana" "Cortana"
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-cortana.ps1*

View File

@ -1,4 +1,4 @@
## The close-edge.ps1 PowerShell Script
## The PowerShell Script: close-edge.ps1
This PowerShell script closes the Microsoft Edge Web browser gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Edge browser
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-edge.ps1*

View File

@ -1,4 +1,4 @@
## The close-file-explorer.ps1 PowerShell Script
## The PowerShell Script: close-file-explorer.ps1
This PowerShell script closes the Microsoft File Explorer application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the File Explorer
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
(New-Object -ComObject Shell.Application).Windows() | %{$_.quit()}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-file-explorer.ps1*

View File

@ -1,4 +1,4 @@
## The close-firefox.ps1 PowerShell Script
## The PowerShell Script: close-firefox.ps1
This PowerShell script closes the Mozilla Firefox Web browser gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Firefox browser
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Mozilla Firefox" "firefox" "firefox"
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-firefox.ps1*

View File

@ -1,4 +1,4 @@
## The close-git-extensions.ps1 PowerShell Script
## The PowerShell Script: close-git-extensions.ps1
This PowerShell script closes the Git Extensions application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Git Extensions app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-git-extensions.ps1*

View File

@ -1,4 +1,4 @@
## The close-magnifier.ps1 PowerShell Script
## The PowerShell Script: close-magnifier.ps1
This PowerShell script closes the Windows Screen Magnifier application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Magnifier
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
tskill magnify
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-magnifier.ps1*

View File

@ -1,4 +1,4 @@
## The close-microsoft-paint.ps1 PowerShell Script
## The PowerShell Script: close-microsoft-paint.ps1
This PowerShell script closes the Microsoft Paint application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Microsoft Paint app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-microsoft-paint.ps1*

View File

@ -1,4 +1,4 @@
## The close-microsoft-store.ps1 PowerShell Script
## The PowerShell Script: close-microsoft-store.ps1
This PowerShell script closes the Microsoft Store application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Microsoft Store app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-microsoft-store.ps1*

View File

@ -1,4 +1,4 @@
## The close-netflix.ps1 PowerShell Script
## The PowerShell Script: close-netflix.ps1
This PowerShell script closes the Netflix application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Netflix app
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Netflix" "ApplicationFrameHost" "RuntimeBroker"
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-netflix.ps1*

View File

@ -1,4 +1,4 @@
## The close-note-pad.ps1 PowerShell Script
## The PowerShell Script: close-note-pad.ps1
This PowerShell script closes the Notepad application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Notepad app
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Notepad" "notepad" "notepad"
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-note-pad.ps1*

View File

@ -1,4 +1,4 @@
## The close-obs-studio.ps1 PowerShell Script
## The PowerShell Script: close-obs-studio.ps1
This PowerShell script closes the OBS Studio application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes OBS Studio
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-obs-studio.ps1*

View File

@ -1,4 +1,4 @@
## The close-one-calendar.ps1 PowerShell Script
## The PowerShell Script: close-one-calendar.ps1
This PowerShell script closes the OneCalendar application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the OneCalendar app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-one-calendar.ps1*

View File

@ -1,4 +1,4 @@
## The close-outlook.ps1 PowerShell Script
## The PowerShell Script: close-outlook.ps1
This PowerShell script closes the Microsoft Outlook email application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Microsoft Outlook app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-outlook.ps1*

View File

@ -1,4 +1,4 @@
## The close-paint-three-d.ps1 PowerShell Script
## The PowerShell Script: close-paint-three-d.ps1
This PowerShell script closes the Paint 3D application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Paint 3D app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-paint-three-d.ps1*

View File

@ -1,4 +1,4 @@
## The close-program.ps1 PowerShell Script
## The PowerShell Script: close-program.ps1
This PowerShell script closes a program's processes gracefully.
@ -51,6 +51,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes a program's processes
@ -109,5 +110,6 @@ try {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-program.ps1*

View File

@ -1,4 +1,4 @@
## The close-serenade.ps1 PowerShell Script
## The PowerShell Script: close-serenade.ps1
This PowerShell script closes the Serenade.ai application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Serenade.ai application
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Serenade.ai" "serenade" ""
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-serenade.ps1*

View File

@ -1,4 +1,4 @@
## The close-snipping-tool.ps1 PowerShell Script
## The PowerShell Script: close-snipping-tool.ps1
This PowerShell script closes the Snipping Tool application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Snipping Tool
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Snipping Tool" "SnippingTool.exe" ""
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-snipping-tool.ps1*

View File

@ -1,4 +1,4 @@
## The close-spotify.ps1 PowerShell Script
## The PowerShell Script: close-spotify.ps1
This PowerShell script closes the Spotify application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes Spotify
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
& "$PSScriptRoot/close-program.ps1" "Spotify" "spotify" ""
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-spotify.ps1*

View File

@ -1,4 +1,4 @@
## The close-task-manager.ps1 PowerShell Script
## The PowerShell Script: close-task-manager.ps1
This PowerShell script closes the Task Manager application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Task Manager
@ -39,5 +40,6 @@ https://github.com/fleschutz/PowerShell
tskill taskmgr
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-task-manager.ps1*

View File

@ -1,4 +1,4 @@
## The close-three-d-viewer.ps1 PowerShell Script
## The PowerShell Script: close-three-d-viewer.ps1
This PowerShell script closes the 3D-Viewer application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the 3D-Viewer app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-three-d-viewer.ps1*

View File

@ -1,4 +1,4 @@
## The close-thunderbird.ps1 PowerShell Script
## The PowerShell Script: close-thunderbird.ps1
This PowerShell script closes the Mozilla Thunderbird email application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Thunderbird app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-thunderbird.ps1*

View File

@ -1,4 +1,4 @@
## The close-visual-studio.ps1 PowerShell Script
## The PowerShell Script: close-visual-studio.ps1
This PowerShell script closes the Microsoft Visual Studio application gracefully.
@ -24,6 +24,7 @@ Author: Markus Fleschutz | License: CC0
https://github.com/fleschutz/PowerShell
## Source Code
```powershell
<#
.SYNOPSIS
Closes the Visual Studio app
@ -43,5 +44,6 @@ if ($lastExitCode -ne "0") {
exit 1
}
exit 0 # success
```
*Generated by convert-ps2md.ps1 using the comment-based help of close-visual-studio.ps1*

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