mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 13:04:59 +02:00
Updated the manuals
This commit is contained in:
@ -1,12 +1,12 @@
|
||||
The *add-firewall-rules.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *add-firewall-rules.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script adds firewall rules for the given executable. Administrator rights are required.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/add-firewall-rules.ps1 [[-PathToExecutables] <String>] [[-Direction] <String>] [[-FirewallProfile] <Array>] [<CommonParameters>]
|
||||
PS> ./add-firewall-rules.ps1 [[-PathToExecutables] <String>] [[-Direction] <String>] [[-FirewallProfile] <Array>] [<CommonParameters>]
|
||||
|
||||
-PathToExecutables <String>
|
||||
Specifies the path to the executables.
|
||||
@ -116,4 +116,4 @@ try {
|
||||
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *alert.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *alert.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script handles and escalates the given alert message.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/alert.ps1 [[-Message] <String>] [<CommonParameters>]
|
||||
PS> ./alert.ps1 [[-Message] <String>] [<CommonParameters>]
|
||||
|
||||
-Message <String>
|
||||
Specifies the alert message
|
||||
@ -72,4 +72,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *build-repo.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *build-repo.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script builds a Git repository by supporting the following build
|
||||
systems: autogen, cargo, cmake, configure, Gradle, Imakefile, Makefile, and Meson.
|
||||
@ -7,7 +7,7 @@ systems: autogen, cargo, cmake, configure, Gradle, Imakefile, Makefile, and Meso
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/build-repo.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
PS> ./build-repo.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
|
||||
-path <String>
|
||||
Specifies the file path to the Git repository (default: current working directory)
|
||||
@ -209,10 +209,10 @@ try {
|
||||
}
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ ERROR: $($Error[0]) in script line $($_.InvocationInfo.ScriptLineNumber)."
|
||||
"⚠️ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
|
||||
Set-Location "$previousPath"
|
||||
exit 1
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *build-repos.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *build-repos.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script builds all Git repositories in a folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
PS> ./build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
|
||||
|
||||
-ParentDir <String>
|
||||
Specifies the path to the parent folder
|
||||
@ -83,4 +83,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *calculate-BMI.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *calculate-BMI.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script calculates the BMI.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/calculate-BMI.ps1 [<CommonParameters>]
|
||||
PS> ./calculate-BMI.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -58,4 +58,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-autostart.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-autostart.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's autostart folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-autostart.ps1 [<CommonParameters>]
|
||||
PS> ./cd-autostart.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -62,4 +62,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-crashdumps.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-crashdumps.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the crash dumps directory (Windows only). Whenever a software crashes and crash dumps are enabled(!) a crash dump file is written. This file helps to identify the reason for the crash.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-crashdumps.ps1 [<CommonParameters>]
|
||||
PS> ./cd-crashdumps.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -67,4 +67,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-desktop.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-desktop.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's desktop folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-desktop.ps1 [<CommonParameters>]
|
||||
PS> ./cd-desktop.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-docs.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-docs.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the documents folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-docs.ps1 [<CommonParameters>]
|
||||
PS> ./cd-docs.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-downloads.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-downloads.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's downloads folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-downloads.ps1 [<CommonParameters>]
|
||||
PS> ./cd-downloads.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-dropbox.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-dropbox.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's Dropbox folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-dropbox.ps1 [<CommonParameters>]
|
||||
PS> ./cd-dropbox.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -64,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-etc.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-etc.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the /etc directory.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-etc.ps1 [<CommonParameters>]
|
||||
PS> ./cd-etc.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -68,4 +68,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-fonts.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-fonts.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script sets the current working directory to the fonts folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-fonts.ps1 [<CommonParameters>]
|
||||
PS> ./cd-fonts.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -63,4 +63,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-home.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-home.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's home directory.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-home.ps1 [<CommonParameters>]
|
||||
PS> ./cd-home.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -62,4 +62,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-jenkins.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-jenkins.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the Jenkins home directory.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-jenkins.ps1 [<CommonParameters>]
|
||||
PS> ./cd-jenkins.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -67,4 +67,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-logs.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-logs.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the logs directory.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-logs.ps1 [<CommonParameters>]
|
||||
PS> ./cd-logs.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -67,4 +67,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-music.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-music.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's music folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-music.ps1 [<CommonParameters>]
|
||||
PS> ./cd-music.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-nextcloud.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-nextcloud.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's NextCloud folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-nextcloud.ps1 [<CommonParameters>]
|
||||
PS> ./cd-nextcloud.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -64,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-onedrive.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-onedrive.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script sets the current working directory to the user's OneDrive folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-onedrive.ps1 [<CommonParameters>]
|
||||
PS> ./cd-onedrive.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -64,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-pics.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-pics.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the user's pictures folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-pics.ps1 [<CommonParameters>]
|
||||
PS> ./cd-pics.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-public.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-public.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the Public folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-public.ps1 [<CommonParameters>]
|
||||
PS> ./cd-public.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-recent.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-recent.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the 'recent' folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-recent.ps1 [<CommonParameters>]
|
||||
PS> ./cd-recent.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -63,4 +63,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-recycle-bin.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-recycle-bin.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the user's recycle bin folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-recycle-bin.ps1 [<CommonParameters>]
|
||||
PS> ./cd-recycle-bin.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -74,4 +74,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-repo.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-repo.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the given local Git repository.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-repo.ps1 [[-folderName] <String>] [<CommonParameters>]
|
||||
PS> ./cd-repo.ps1 [[-folderName] <String>] [<CommonParameters>]
|
||||
|
||||
-folderName <String>
|
||||
Specifies the folder name of the Git repository
|
||||
@ -92,4 +92,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-repos.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-repos.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the folder for Git repositories.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-repos.ps1 [<CommonParameters>]
|
||||
PS> ./cd-repos.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-root.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-root.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the root directory (C:\ on Windows).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-root.ps1 [<CommonParameters>]
|
||||
PS> ./cd-root.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -61,4 +61,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-screenshots.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-screenshots.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script sets the current working directory to the user's screenshots folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-screenshots.ps1 [<CommonParameters>]
|
||||
PS> ./cd-screenshots.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -74,4 +74,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-scripts.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-scripts.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the currrent working directory to the PowerShell scripts folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-scripts.ps1 [<CommonParameters>]
|
||||
PS> ./cd-scripts.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -61,4 +61,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-ssh.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-ssh.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the user's secure shell (SSH) folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-ssh.ps1 [<CommonParameters>]
|
||||
PS> ./cd-ssh.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -64,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-sync.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-sync.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the user's Syncthing folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-sync.ps1 [<CommonParameters>]
|
||||
PS> ./cd-sync.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -64,4 +64,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-temp.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-temp.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the temporary folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-temp.ps1 [<CommonParameters>]
|
||||
PS> ./cd-temp.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -69,4 +69,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-templates.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-templates.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script sets the current working directory to the templates folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-templates.ps1 [<CommonParameters>]
|
||||
PS> ./cd-templates.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -71,4 +71,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-trash.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-trash.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to the user's trash folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-trash.ps1 [<CommonParameters>]
|
||||
PS> ./cd-trash.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -74,4 +74,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-up.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-up.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to one directory level up.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-up.ps1 [<CommonParameters>]
|
||||
PS> ./cd-up.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -60,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-up2.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-up2.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to two directory level up.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-up2.ps1 [<CommonParameters>]
|
||||
PS> ./cd-up2.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -60,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-up3.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-up3.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to three directory levels up.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-up3.ps1 [<CommonParameters>]
|
||||
PS> ./cd-up3.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -60,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-up4.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-up4.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the current working directory to four directory levels up.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-up4.ps1 [<CommonParameters>]
|
||||
PS> ./cd-up4.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -60,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-users.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-users.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script sets the current working directory to the users directory.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-users.ps1 [<CommonParameters>]
|
||||
PS> ./cd-users.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -62,4 +62,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-videos.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-videos.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script changes the working directory to the user's videos folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-videos.ps1 [<CommonParameters>]
|
||||
PS> ./cd-videos.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -68,4 +68,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *cd-windows.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *cd-windows.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script sets the current working directory to the Windows directory.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/cd-windows.ps1 [<CommonParameters>]
|
||||
PS> ./cd-windows.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -65,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *change-wallpaper.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *change-wallpaper.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script downloads a random photo from Unsplash and sets it as desktop background.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/change-wallpaper.ps1 [[-Category] <String>] [<CommonParameters>]
|
||||
PS> ./change-wallpaper.ps1 [[-Category] <String>] [<CommonParameters>]
|
||||
|
||||
-Category <String>
|
||||
Specifies the photo category (beach, city, ...)
|
||||
@ -80,4 +80,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-admin.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-admin.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks if the user has administrator rights.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-admin.ps1 [<CommonParameters>]
|
||||
PS> ./check-admin.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -67,4 +67,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-apps.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-apps.ps1*
|
||||
===================================
|
||||
|
||||
check-apps.ps1
|
||||
|
||||
@ -72,4 +72,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-bios.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-bios.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the BIOS status and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-bios.ps1 [<CommonParameters>]
|
||||
PS> ./check-bios.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -75,4 +75,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-cpu.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-cpu.ps1*
|
||||
===================================
|
||||
|
||||
check-cpu.ps1
|
||||
|
||||
@ -104,4 +104,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-credentials.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-credentials.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script asks for credentials and checks them against saved ones ("$HOME\my.credentials" by default).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-credentials.ps1 [[-TargetFile] <String>] [<CommonParameters>]
|
||||
PS> ./check-credentials.ps1 [[-TargetFile] <String>] [<CommonParameters>]
|
||||
|
||||
-TargetFile <String>
|
||||
Specifies the target file ("$HOME\my.credentials" by default)
|
||||
@ -83,4 +83,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-day.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-day.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script determines and speaks the current day by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-day.ps1 [<CommonParameters>]
|
||||
PS> ./check-day.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -57,4 +57,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-dns.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-dns.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script measures the DNS resolution speed using 100 internet domains and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-dns.ps1 [<CommonParameters>]
|
||||
PS> ./check-dns.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -72,4 +72,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-drive-space.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-drive-space.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the given drive for free space left (10 GB by default).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-drive-space.ps1 [[-driveName] <String>] [[-minLevel] <Int64>] [<CommonParameters>]
|
||||
PS> ./check-drive-space.ps1 [[-driveName] <String>] [[-minLevel] <Int64>] [<CommonParameters>]
|
||||
|
||||
-driveName <String>
|
||||
Specifies the drive name to check (e.g. "C")
|
||||
@ -112,4 +112,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-drives.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-drives.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the free space of all drives and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-drives.ps1 [[-minLevel] <Int64>] [<CommonParameters>]
|
||||
PS> ./check-drives.ps1 [[-minLevel] <Int64>] [<CommonParameters>]
|
||||
|
||||
-minLevel <Int64>
|
||||
Specifies the minimum warning level (5GB by default)
|
||||
@ -103,4 +103,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-dusk.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-dusk.ps1*
|
||||
===================================
|
||||
|
||||
check-dusk.ps1
|
||||
|
||||
@ -63,4 +63,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-easter-sunday.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-easter-sunday.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the time until Easter Sunday and replies by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-easter-sunday.ps1 [<CommonParameters>]
|
||||
PS> ./check-easter-sunday.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -61,4 +61,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-file-system.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-file-system.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the file system of a drive. It needs admin rights.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>]
|
||||
PS> ./check-file-system.ps1 [[-Drive] <String>] [<CommonParameters>]
|
||||
|
||||
-Drive <String>
|
||||
Specifies the drive to check
|
||||
@ -76,4 +76,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-file.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-file.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script determines and prints the file type of the given file.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-file.ps1 [[-Path] <String>] [<CommonParameters>]
|
||||
PS> ./check-file.ps1 [[-Path] <String>] [<CommonParameters>]
|
||||
|
||||
-Path <String>
|
||||
Specifies the path to the file
|
||||
@ -171,4 +171,4 @@ function Check-Header { param( $path )
|
||||
Check-Header $Path
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-firewall.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-firewall.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the status of the firewall and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-firewall.ps1 [<CommonParameters>]
|
||||
PS> ./check-firewall.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -65,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-gpu.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-gpu.ps1*
|
||||
===================================
|
||||
|
||||
check-gpu.ps1
|
||||
|
||||
@ -67,4 +67,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-hardware.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-hardware.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the hardware details of the local computer and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-hardware.ps1 [<CommonParameters>]
|
||||
PS> ./check-hardware.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -64,4 +64,4 @@ Write-Host "`n === H A R D W A R E ===" -foregroundColor green
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-health.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-health.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the system health of the local computer (hardware, software, and network) and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-health.ps1 [<CommonParameters>]
|
||||
PS> ./check-health.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -58,4 +58,4 @@ Script Content
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-independence-day.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-independence-day.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the time until Indepence Day and replies by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-independence-day.ps1 [<CommonParameters>]
|
||||
PS> ./check-independence-day.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -61,4 +61,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-ipv4-address.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-ipv4-address.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the given IPv4 address for validity.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
PS> ./check-ipv4-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
|
||||
-Address <String>
|
||||
Specifies the IPv4 address to check
|
||||
@ -85,4 +85,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-ipv6-address.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-ipv6-address.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the given IPv6 address for validity
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
PS> ./check-ipv6-address.ps1 [[-Address] <String>] [<CommonParameters>]
|
||||
|
||||
-Address <String>
|
||||
Specifies the IPv6 address to check
|
||||
@ -99,4 +99,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-iss-position.ps1* Script
|
||||
===========================
|
||||
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).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-iss-position.ps1 [<CommonParameters>]
|
||||
PS> ./check-iss-position.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -55,4 +55,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-mac-address.ps1* Script
|
||||
===========================
|
||||
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.
|
||||
@ -7,7 +7,7 @@ Supported MAC address formats are: 00:00:00:00:00:00 or 00-00-00-00-00-00 or 000
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>]
|
||||
PS> ./check-mac-address.ps1 [[-MAC] <String>] [<CommonParameters>]
|
||||
|
||||
-MAC <String>
|
||||
Specifies the MAC address to check
|
||||
@ -88,4 +88,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-midnight.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-midnight.ps1*
|
||||
===================================
|
||||
|
||||
check-midnight.ps1
|
||||
|
||||
@ -60,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-month.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-month.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script determines and speaks the current month name by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-month.ps1 [<CommonParameters>]
|
||||
PS> ./check-month.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -57,4 +57,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-moon-phase.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-moon-phase.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script determines the Moon phase and answers by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-moon-phase.ps1 [<CommonParameters>]
|
||||
PS> ./check-moon-phase.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -76,4 +76,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-motherboard.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-motherboard.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script lists the motherboard details.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-motherboard.ps1 [<CommonParameters>]
|
||||
PS> ./check-motherboard.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -59,4 +59,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-network.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-network.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the network details of the local computer and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-network.ps1 [<CommonParameters>]
|
||||
PS> ./check-network.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -67,4 +67,4 @@ Write-Host "`n === N E T W O R K ===" -foregroundColor green
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-noon.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-noon.ps1*
|
||||
===================================
|
||||
|
||||
check-noon.ps1
|
||||
|
||||
@ -59,4 +59,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-os.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-os.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the operating system status and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-os.ps1 [<CommonParameters>]
|
||||
PS> ./check-os.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -73,4 +73,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-outlook.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-outlook.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the inbox of Outlook for new/unread mails.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-outlook.ps1 [<CommonParameters>]
|
||||
PS> ./check-outlook.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -65,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-password.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-password.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the security status of the given password by haveibeenpwned.com
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-password.ps1 [[-password] <String>] [<CommonParameters>]
|
||||
PS> ./check-password.ps1 [[-password] <String>] [<CommonParameters>]
|
||||
|
||||
-password <String>
|
||||
|
||||
@ -95,4 +95,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-pending-reboot.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-pending-reboot.ps1*
|
||||
===================================
|
||||
|
||||
check-pending-reboot.ps1
|
||||
|
||||
@ -90,4 +90,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-pnp-devices.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-pnp-devices.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks all Plug'n'PLay devices connected to the local computer.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-pnp-devices.ps1 [<CommonParameters>]
|
||||
PS> ./check-pnp-devices.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -65,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-power.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-power.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the power status and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-power.ps1 [<CommonParameters>]
|
||||
PS> ./check-power.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -91,4 +91,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-powershell.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-powershell.ps1*
|
||||
===================================
|
||||
|
||||
check-powershell.ps1
|
||||
|
||||
@ -59,4 +59,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-ps1-file.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-ps1-file.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the given PowerShell script file(s) for validity.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-ps1-file.ps1 [[-filePattern] <String>] [<CommonParameters>]
|
||||
PS> ./check-ps1-file.ps1 [[-filePattern] <String>] [<CommonParameters>]
|
||||
|
||||
-filePattern <String>
|
||||
Specifies the file pattern to the PowerShell file(s)
|
||||
@ -77,4 +77,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-ram.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-ram.ps1*
|
||||
===================================
|
||||
|
||||
check-ram.ps1
|
||||
|
||||
@ -98,4 +98,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-repo.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-repo.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script verifies the integrity of a local Git repository and performs maintenance tasks.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-repo.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
PS> ./check-repo.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
|
||||
-path <String>
|
||||
Specifies the file path to the local Git repository (current working directory by default)
|
||||
@ -130,4 +130,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-repos.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-repos.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script verifies the data integrity of all Git repositories in a folder.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-repos.ps1 [[-parentDir] <String>] [<CommonParameters>]
|
||||
PS> ./check-repos.ps1 [[-parentDir] <String>] [<CommonParameters>]
|
||||
|
||||
-parentDir <String>
|
||||
Specifies the file path to the parent folder
|
||||
@ -92,4 +92,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-santa.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-santa.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the time until Saint Nicholas Day and replies by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-santa.ps1 [<CommonParameters>]
|
||||
PS> ./check-santa.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -56,4 +56,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-smart-devices.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-smart-devices.ps1*
|
||||
===================================
|
||||
|
||||
check-smart-devices.ps1
|
||||
|
||||
@ -120,4 +120,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-software.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-software.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the software status of the local computer and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-software.ps1 [<CommonParameters>]
|
||||
PS> ./check-software.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -64,4 +64,4 @@ Write-Host "`n === S O F T W A R E ===" -foregroundColor green
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-subnet-mask.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-subnet-mask.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the given subnet mask for validity.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>]
|
||||
PS> ./check-subnet-mask.ps1 [[-address] <String>] [<CommonParameters>]
|
||||
|
||||
-address <String>
|
||||
Specifies the subnet mask to check
|
||||
@ -85,4 +85,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-swap-space.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-swap-space.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the current status of the swap space and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-swap-space.ps1 [[-minLevel] <Int32>] [<CommonParameters>]
|
||||
PS> ./check-swap-space.ps1 [[-minLevel] <Int32>] [<CommonParameters>]
|
||||
|
||||
-minLevel <Int32>
|
||||
Specifies the minimum level in MB (10 MB by default)
|
||||
@ -108,4 +108,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-symlinks.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-symlinks.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks all symbolic links in a directory tree. It returns the number of broken symlinks as exit value.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-symlinks.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
PS> ./check-symlinks.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
|
||||
-path <String>
|
||||
Specifies the file path to the directory tree
|
||||
@ -101,4 +101,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-time-zone.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-time-zone.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the local time zone and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-time-zone.ps1 [<CommonParameters>]
|
||||
PS> ./check-time-zone.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -66,4 +66,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *check-uptime.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-uptime.ps1*
|
||||
===================================
|
||||
|
||||
check-uptime.ps1
|
||||
|
||||
@ -114,4 +114,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-vpn.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-vpn.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script queries the status of the VPN connection(s) and prints it.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-vpn.ps1 [<CommonParameters>]
|
||||
PS> ./check-vpn.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -65,4 +65,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-weather.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-weather.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the current weather report.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-weather.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
PS> ./check-weather.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
|
||||
-location <String>
|
||||
Specifies the location to use (determined automatically per default)
|
||||
@ -82,4 +82,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-week.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-week.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script determines and speaks the current week number by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-week.ps1 [<CommonParameters>]
|
||||
PS> ./check-week.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -54,4 +54,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-wind.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-wind.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script determines the current wind conditions and replies by text-to-speech (TTS).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-wind.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
PS> ./check-wind.ps1 [[-location] <String>] [<CommonParameters>]
|
||||
|
||||
-location <String>
|
||||
Specifies the location to use (determined automatically per default)
|
||||
@ -73,4 +73,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-windows-system-files.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-windows-system-files.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the validity of the Windows system files. It requires admin rights.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-windows-system-files.ps1 [<CommonParameters>]
|
||||
PS> ./check-windows-system-files.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -60,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-xml-file.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-xml-file.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script checks the given XML file for validity.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-xml-file.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
PS> ./check-xml-file.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
|
||||
-path <String>
|
||||
Specifies the path to the XML file
|
||||
@ -86,4 +86,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *check-xml-files.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *check-xml-files.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script verifies any XML file (with suffix .xml) in the given directory tree for validity.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/check-xml-files.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
PS> ./check-xml-files.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
|
||||
-path <String>
|
||||
Specifies the file path to the directory tree (current working dir by default)
|
||||
@ -85,4 +85,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *clean-repo.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *clean-repo.ps1*
|
||||
===================================
|
||||
|
||||
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!
|
||||
@ -7,7 +7,7 @@ NOTE: To be used with care! This cannot be undone!
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/clean-repo.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
PS> ./clean-repo.ps1 [[-path] <String>] [<CommonParameters>]
|
||||
|
||||
-path <String>
|
||||
Specifies the file path to the local Git repository (current working directory by default)
|
||||
@ -97,9 +97,9 @@ try {
|
||||
"✅ Repo '$repoName' cleaned in $($elapsed)s."
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ ERROR: $($Error[0]) in script line $($_.InvocationInfo.ScriptLineNumber)."
|
||||
"⚠️ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
|
||||
exit 1
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *clean-repos.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *clean-repos.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script cleans all Git repositories in a folder from untracked files (including submodules).
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/clean-repos.ps1 [[-parentDir] <String>] [<CommonParameters>]
|
||||
PS> ./clean-repos.ps1 [[-parentDir] <String>] [<CommonParameters>]
|
||||
|
||||
-parentDir <String>
|
||||
Specifies the path to the parent folder (current working dir by default)
|
||||
@ -101,4 +101,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *clear-dns-cache.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *clear-dns-cache.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script empties the DNS client cache of the local computer.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/clear-dns-cache.ps1 [<CommonParameters>]
|
||||
PS> ./clear-dns-cache.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -60,4 +60,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,5 +1,5 @@
|
||||
The *clear-recycle-bin.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *clear-recycle-bin.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script removes the content of the recycle bin folder permanently.
|
||||
IMPORTANT NOTE: this cannot be undo!
|
||||
@ -7,7 +7,7 @@ IMPORTANT NOTE: this cannot be undo!
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/clear-recycle-bin.ps1 [<CommonParameters>]
|
||||
PS> ./clear-recycle-bin.ps1 [<CommonParameters>]
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
@ -58,4 +58,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
@ -1,12 +1,12 @@
|
||||
The *clone-repos.ps1* Script
|
||||
===========================
|
||||
PowerShell Script: *clone-repos.ps1*
|
||||
===================================
|
||||
|
||||
This PowerShell script clones popular Git repositories into a common target directory.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
/Repos/PowerShell/scripts/clone-repos.ps1 [[-targetDir] <String>] [<CommonParameters>]
|
||||
PS> ./clone-repos.ps1 [[-targetDir] <String>] [<CommonParameters>]
|
||||
|
||||
-targetDir <String>
|
||||
Specifies the file path to the target directory (current working directory by default)
|
||||
@ -119,4 +119,4 @@ try {
|
||||
}
|
||||
```
|
||||
|
||||
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:21)*
|
||||
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:09)*
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user