Skip to content

Commit d20acb7

Browse files
committed
Updated the manuals
1 parent b4c21af commit d20acb7

665 files changed

Lines changed: 2601 additions & 2601 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/add-firewall-rules.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *add-firewall-rules.ps1* Script
2-
===========================
1+
PowerShell Script: *add-firewall-rules.ps1*
2+
===================================
33

44
This PowerShell script adds firewall rules for the given executable. Administrator rights are required.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/add-firewall-rules.ps1 [[-PathToExecutables] <String>] [[-Direction] <String>] [[-FirewallProfile] <Array>] [<CommonParameters>]
9+
PS> ./add-firewall-rules.ps1 [[-PathToExecutables] <String>] [[-Direction] <String>] [[-FirewallProfile] <Array>] [<CommonParameters>]
1010
1111
-PathToExecutables <String>
1212
Specifies the path to the executables.
@@ -116,4 +116,4 @@ try {
116116
117117
```
118118

119-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
119+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/alert.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *alert.ps1* Script
2-
===========================
1+
PowerShell Script: *alert.ps1*
2+
===================================
33

44
This PowerShell script handles and escalates the given alert message.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/alert.ps1 [[-Message] <String>] [<CommonParameters>]
9+
PS> ./alert.ps1 [[-Message] <String>] [<CommonParameters>]
1010
1111
-Message <String>
1212
Specifies the alert message
@@ -72,4 +72,4 @@ try {
7272
}
7373
```
7474

75-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
75+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/build-repo.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
The *build-repo.ps1* Script
2-
===========================
1+
PowerShell Script: *build-repo.ps1*
2+
===================================
33

44
This PowerShell script builds a Git repository by supporting the following build
55
systems: autogen, cargo, cmake, configure, Gradle, Imakefile, Makefile, and Meson.
66

77
Parameters
88
----------
99
```powershell
10-
/Repos/PowerShell/scripts/build-repo.ps1 [[-path] <String>] [<CommonParameters>]
10+
PS> ./build-repo.ps1 [[-path] <String>] [<CommonParameters>]
1111
1212
-path <String>
1313
Specifies the file path to the Git repository (default: current working directory)
@@ -209,10 +209,10 @@ try {
209209
}
210210
exit 0 # success
211211
} catch {
212-
"⚠️ ERROR: $($Error[0]) in script line $($_.InvocationInfo.ScriptLineNumber)."
212+
"⚠️ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
213213
Set-Location "$previousPath"
214214
exit 1
215215
}
216216
```
217217

218-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
218+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/build-repos.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *build-repos.ps1* Script
2-
===========================
1+
PowerShell Script: *build-repos.ps1*
2+
===================================
33

44
This PowerShell script builds all Git repositories in a folder.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
9+
PS> ./build-repos.ps1 [[-ParentDir] <String>] [<CommonParameters>]
1010
1111
-ParentDir <String>
1212
Specifies the path to the parent folder
@@ -83,4 +83,4 @@ try {
8383
}
8484
```
8585

86-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
86+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/calculate-BMI.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *calculate-BMI.ps1* Script
2-
===========================
1+
PowerShell Script: *calculate-BMI.ps1*
2+
===================================
33

44
This PowerShell script calculates the BMI.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/calculate-BMI.ps1 [<CommonParameters>]
9+
PS> ./calculate-BMI.ps1 [<CommonParameters>]
1010
1111
[<CommonParameters>]
1212
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
@@ -58,4 +58,4 @@ try {
5858
}
5959
```
6060

61-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
61+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/cd-autostart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *cd-autostart.ps1* Script
2-
===========================
1+
PowerShell Script: *cd-autostart.ps1*
2+
===================================
33

44
This PowerShell script changes the working directory to the user's autostart folder.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/cd-autostart.ps1 [<CommonParameters>]
9+
PS> ./cd-autostart.ps1 [<CommonParameters>]
1010
1111
[<CommonParameters>]
1212
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
@@ -62,4 +62,4 @@ try {
6262
}
6363
```
6464

65-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
65+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/cd-crashdumps.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *cd-crashdumps.ps1* Script
2-
===========================
1+
PowerShell Script: *cd-crashdumps.ps1*
2+
===================================
33

44
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.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/cd-crashdumps.ps1 [<CommonParameters>]
9+
PS> ./cd-crashdumps.ps1 [<CommonParameters>]
1010
1111
[<CommonParameters>]
1212
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
@@ -67,4 +67,4 @@ try {
6767
}
6868
```
6969

70-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
70+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/cd-desktop.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *cd-desktop.ps1* Script
2-
===========================
1+
PowerShell Script: *cd-desktop.ps1*
2+
===================================
33

44
This PowerShell script changes the working directory to the user's desktop folder.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/cd-desktop.ps1 [<CommonParameters>]
9+
PS> ./cd-desktop.ps1 [<CommonParameters>]
1010
1111
[<CommonParameters>]
1212
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
@@ -71,4 +71,4 @@ try {
7171
}
7272
```
7373

74-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
74+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/cd-docs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *cd-docs.ps1* Script
2-
===========================
1+
PowerShell Script: *cd-docs.ps1*
2+
===================================
33

44
This PowerShell script changes the current working directory to the documents folder.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/cd-docs.ps1 [<CommonParameters>]
9+
PS> ./cd-docs.ps1 [<CommonParameters>]
1010
1111
[<CommonParameters>]
1212
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
@@ -71,4 +71,4 @@ try {
7171
}
7272
```
7373

74-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
74+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

docs/cd-downloads.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
The *cd-downloads.ps1* Script
2-
===========================
1+
PowerShell Script: *cd-downloads.ps1*
2+
===================================
33

44
This PowerShell script changes the working directory to the user's downloads folder.
55

66
Parameters
77
----------
88
```powershell
9-
/Repos/PowerShell/scripts/cd-downloads.ps1 [<CommonParameters>]
9+
PS> ./cd-downloads.ps1 [<CommonParameters>]
1010
1111
[<CommonParameters>]
1212
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
@@ -71,4 +71,4 @@ try {
7171
}
7272
```
7373

74-
*(page generated by convert-ps2md.ps1 as of 08/06/2025 15:18:20)*
74+
*(page generated by convert-ps2md.ps1 as of 08/07/2025 15:48:08)*

0 commit comments

Comments
 (0)