Update description

This commit is contained in:
Markus Fleschutz 2021-09-08 15:17:27 +02:00
parent db0e0d37e5
commit 2a36ac2d98
4 changed files with 6 additions and 6 deletions

View File

@ -20,8 +20,8 @@ cd-up4.ps1, go four directory levels up
cd-videos.ps1, go to the user's videos folder
check-cpu-temp.ps1, checks the CPU temperature
check-dns-resolution.ps1, checks the DNS resolution with frequently used domain names
check-drive-space.ps1, checks the given drive for free space left
check-file-system.ps1, checks the validity of the file system (needs admin rights)
check-drive-space.ps1, checks a drive for free space left
check-file-system.ps1, checks the file system of a drive (needs admin rights)
check-health.ps1, checks the system health
check-ipv4-address.ps1, checks the given IPv4 address for validity
check-ipv6-address.ps1, checks the given IPv6 address for validity

1 Script Description
20 cd-videos.ps1 go to the user's videos folder
21 check-cpu-temp.ps1 checks the CPU temperature
22 check-dns-resolution.ps1 checks the DNS resolution with frequently used domain names
23 check-drive-space.ps1 checks the given drive for free space left checks a drive for free space left
24 check-file-system.ps1 checks the validity of the file system (needs admin rights) checks the file system of a drive (needs admin rights)
25 check-health.ps1 checks the system health
26 check-ipv4-address.ps1 checks the given IPv4 address for validity
27 check-ipv6-address.ps1 checks the given IPv6 address for validity

View File

@ -50,8 +50,8 @@ Mega Collection of PowerShell Scripts
| [add-firewall-rules.ps1](Scripts/add-firewall-rules.ps1) | Adds firewall rules for the given executables (needs admin rights) | [Help](Docs/add-firewall-rules.ps1.md) |
| [check-cpu-temp.ps1](Scripts/check-cpu-temp.ps1) | Checks the CPU temperature | [Help](Docs/check-cpu-temp.ps1.md) |
| [check-dns-resolution.ps1](Scripts/check-dns-resolution.ps1) | Checks the DNS resolution with frequently used domain names| [Help](Docs/check-dns-resolution.ps1.md)|
| [check-drive-space.ps1](Scripts/check-drive-space.ps1) | Checks the given drive for free space left | [Help](Docs/check-drive-space.ps1.md) |
| [check-file-system.ps1](Scripts/check-file-system.ps1) | Checks the validity of the file system (needs admin rights) | [Help](Docs/check-file-system.ps1.md) |
| [check-drive-space.ps1](Scripts/check-drive-space.ps1) | Checks a drive for free space left | [Help](Docs/check-drive-space.ps1.md) |
| [check-file-system.ps1](Scripts/check-file-system.ps1) | Checks the file system of a drive (needs admin rights) | [Help](Docs/check-file-system.ps1.md) |
| [check-health.ps1](Scripts/check-health.ps1) | Checks the system health | [Help](Docs/check-health.ps1.md) |
| [check-ping.ps1](Scripts/check-ping.ps1) | Checks the ping latency to the internet | [Help](Docs/check-ping.ps1.md) |
| [check-swap-space.ps1](Scripts/check-swap-space.ps1) | Checks the swap space for free space left | [Help](Docs/check-swap-space.ps1.md) |

View File

@ -2,7 +2,7 @@
.SYNOPSIS
check-drive-space.ps1 [<drive>] [<min-level>]
.DESCRIPTION
Checks the given drive for free space left.
Checks a drive for free space left (20 GB by default)
.EXAMPLE
PS> .\check-drive-space.ps1 C
.LINK

View File

@ -3,7 +3,7 @@
.SYNOPSIS
check-file-system.ps1 [<drive>]
.DESCRIPTION
Checks the validity of the file system (needs admin rights).
Checks the file system of a drive (needs admin rights)
.EXAMPLE
PS> .\check-file-system.ps1 C
.LINK