This PowerShell script converts a .CSV file into a text file and prints it.
Path Specifies the path to the .CSV file
PS> ./convert-csv2txt salaries.csvAuthor: Markus Fleschutz | License: CC0
This PowerShell script configures your Git user settings.
fullName Specifies the user's full name
emailAddress Specifies the user's email address
favoriteEditor Specifies the user's favorite text editor
PS> ./configure-git.ps1 "Joe Doe" joe@doe.com vim⏳ (1/5) Searching for Git executable... git version 2.42.0.windows.1⏳ (2/5) Asking for user details...⏳ (3/5) Saving basic settings (autocrlf,symlinks,longpaths,etc.)...⏳ (4/5) Saving user settings (name,email,editor)...⏳ (5/5) Saving user shortcuts ('git br', 'git ls', 'git st', etc.)...✅ Saved your Git configuration to ~/.gitconfig in 11s.Author: Markus Fleschutz | License: CC0
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.
MAC Specifies the MAC address to check
PS> ./check-mac-address 11:22:33:44:55:66✅ MAC address 11:22:33:44:55:66 is validAuthor: Markus Fleschutz | License: CC0
This PowerShell script checks the given IPv6 address for validity
Address Specifies the IPv6 address to check
PS> ./check-ipv6-address fe80::200:5aee:feaa:20a2✅ IPv6 fe80::200:5aee:feaa:20a2 is validAuthor: Markus Fleschutz | License: CC0
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