This PowerShell script lists the PowerShell cheat sheet.
PS> ./list-cheat-sheet.ps1Author: Markus Fleschutz | License: CC0
Lists calendar elements, either a single month or an entire year.
Month If specified, will limit output to a single month with this numeral value.
Year If specified, will output an entire year.
PS> ./list-calendarLists the calendar for current month.PS> ./list-calendar 2013Lists the calendar for 2013.PS> ./list-calendar 04 2011Lists the calendar for April, 2011.PS> ./list-calendar 7Lists the calendar for July of this year.Author: Markus Fleschutz | License: CC0
This PowerShell script lists all anagrams of the given word.
Word Specifies the word to use
Columns Specifies the number of columns
PS> ./list-anagrams BabyAuthor: Markus Fleschutz | License: CC0
This PowerShell script installs the GitHub command-line interface (CLI).
PS> ./install-github-cli.ps1⏳ Installing GitHub CLI...✔ GitHub CLI installed successfully in 17s - to authenticate execute: 'gh auth login'.Author: Markus Fleschutz | License: CC0
This PowerShell script is a sample script writing "Hello World" to the console.
PS> ./hello-world.ps1Hello WorldAuthor: Markus Fleschutz | License: CC0
This PowerShell script fetches remote updates into a local Git repository (including submodules).
path Specifies the file path to the local Git repository (default is working directory).
PS> ./fetch-repo.ps1⏳ (1/3) Searching for Git executable... git version 2.41.0.windows.3⏳ (2/3) Checking local repository... C:\Repos\rust⏳ (3/3) Fetching updates (including submodules)...✅ Updates fetched into 📂rust repo in 2s.Author: Markus Fleschutz | License: CC0
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