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 branches in a Git repository - either all (default) or by a search pattern.
pathToRepo Specifies the path to the Git repository (current working directory by default)
searchPattern Specifies the search pattern ("*", anything by default)
PS> ./list-branches.ps1List of Git Branches--------------------mainAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists all automatic variables of PowerShell.
PS> ./list-automatic-variables.ps1Variable Content-------- -------$HOME C:\Users\Markus...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the installed applications (from Windows Store, or Snap Store).
PS> ./list-apps.ps1Author: 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 scripts lists all PowerShell aliases.
PS> ./list-aliases.ps1CommandType Name Version Source----------- ---- ------- ------Alias CFS -> ConvertFrom-String 3.1.0.0 Microsoft.PowerShell.Utility...Author: Markus Fleschutz | License: CC0
This PowerShell script installs Syncthing on your computer. Syncthing is a continuous file synchronization program. See https://syncthing.net for details.
PS> ./install-syncthing.ps1⏳ Installing Syncthing from WinGet......https://github.com/fleschutz/PowerShell
This PowerShell script installs the MiniDLNA server.
PS> ./install-mini-dlna.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script installs and starts the Jenkins Agent.
PS> ./install-jenkins-agent.ps1Author: Markus Fleschutz | License: CC0