This PowerShell script lists the installed software (except Windows Store apps).
PS> ./list-installed-software.ps1DisplayName DisplayVersion InstallDate----------- -------------- -----------CrystalDiskInfo 9.1.1 9.1.1 20230718...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all installed PowerShell scripts.
PS> ./list-installed-scripts.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script lists the installed languages.
PS> ./list-installed-languages.ps1Tag Autonym English Spellchecking Handwriting--- ------- ------- ------------- -----------de-DE Deutsch (Deutschland) German True FalseAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists the installed hotfixes.
PS> ./list-installed-hotfixes.ps1Source Description HotFixID InstalledBy InstalledOn------ ----------- -------- ----------- -----------MyPC Update KB5054977 NT AUTHORITY\SYSTEM 4/10/2025 12:00:00 AMhttps://github.com/fleschutz/PowerShell
This PowerShell script scans a directory tree and lists all hidden files.
path Specifies the path to the directory tree (default is current working dir)
PS> ./list-hidden-files.ps1 C:\Windows...✅ Found 256 hidden files within 📂C:\Windows in 40 secAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists FRITZ!Box's known devices.
Username Specifies the user name to FRITZ!Box
Password Specifies the password to FRITZ!Box
PS> ./list-fritzbox-devices.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script lists the phone calls of the FRITZ!Box device.
Username Specifies the user name for FRITZ!Box
Password Specifies the password to FRITZ!Box
PS> ./list-fritzbox-calls.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script lists the content of a directory (alphabetically formatted in columns).
SearchPattern Specifies the search pattern ("*" by default which means anything)
PS> ./list-folder.ps1 C:\*Author: Markus Fleschutz | License: CC0
This PowerShell script lists the first 100 Fibonacci numbers.
PS> ./list-fibonacci.ps11, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the current exchange rates for the given currency (USD per default).
currency Specifies the base currency
PS> ./list-exchange-rates.ps1 EURCurrent Exchange Rates for 1 EUR (source: http://www.floatrates.com)================================Rate Currency Inverse Date---- -------- ------- ----1.09489154 USD - U.S. Dollar 0.91333248 Sun, 6 Aug 2023 11:55:02 GMT...Author: Markus Fleschutz | License: CC0