This PowerShell script checks the given IPv4 address for validity.
Address Specifies the IPv4 address to check
PS> ./check-ipv4-address 192.168.11.22✅ IPv4 192.168.11.22 is validAuthor: Markus Fleschutz | License: CC0
This PowerShell script sets the current working directory to the users directory.
PS> ./cd-users.ps1📂C:\Users with 4 folders entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's Syncthing folder.
PS> ./cd-sync.ps1📂C:\Users\Markus\Sync entered (has 2 files and 0 folders)Author: Markus Fleschutz | License: CC0
This PowerShell script sets the current working directory to the user's secure shell (SSH) folder.
PS> ./cd-ssh.ps1📂C:\Users\Markus\.ssh with 4 files entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the current working directory to the root directory (C:\ on Windows).
PS> ./cd-root.ps1📂C:\ with 7 folders and 0 files entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's music folder.
PS> ./cd-music.ps1📂C:\Users\Markus\Music with 3 folders and 0 files entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's home directory.
PS> ./cd-home.ps1📂C:\Users\Markus with 4 files and 7 folders entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's Dropbox folder.
PS> ./cd-dropbox📂C:\Users\Markus\Dropbox (has 2 files and 0 folders)Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's downloads folder.
PS> ./cd-downloads.ps1📂C:\Users\Markus\Downloads with 0 files and 0 folders entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's desktop folder.
PS> ./cd-desktop.ps1📂/home/Markus/Desktop (has 3 files and 0 folders)Author: Markus Fleschutz | License: CC0