This PowerShell script queries the installed text-to-speech (TTS) voices and prints them to the console.
PS> ./list-voices.ps1Name Culture Gender Age---- ------- ------ ---Microsoft David Desktop en-US Male Adult...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the user groups of the local computer.
PS> ./list-user-groups.ps1Name Description---- -----------Administrators Administrators have complete and unrestricted access to the computer/domain...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the user accounts on the local computer.
PS> ./list-user-accounts.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script lists all USB devices connected to the local computer.
PS> ./list-usb-devices.ps1FriendlyName Status InstanceId------------ ------ ----------USB-Root-Hub (USB 3.0) OK USB\ROOT_HUB30\4&2060378&0&0...Author: Markus Fleschutz | License: CC0
This PowerShell script scans a directory tree and lists unused files (no read/write access since a number of days).
path Specifies the path to the directory tree (current working dir by default)
days Specifies the number of days (100 by default)
PS> ./list-unused-files.ps1 C:\Windows...✅ Found 43729 unused files (no access for 100 days) within 📂C:\Windows in 113 secAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists the details of the current time zone.
PS> ./list-timezoneId : Europe/BerlinDisplayName : (UTC+01:00) Central European Standard Time...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all scheduled tasks.
PS> ./list-tasks.ps1TASKNAME TASKPATH STATE-------- -------- -----.NET Framework NGEN v4.0.30319 \Microsoft\Windows\.NET Framework\ Ready...Author: Markus Fleschutz | License: CC0
This PowerShell script fetches all tags in a local Git repository and lists it (oldest tag first).
repoDir Specifies the path to the Git repository (current working directory by default)
searchPattern Specifies the search pattern (anything by default)
PS> ./list-tags.ps1 C:\MyRepoTag Commit Message--- --------------v0.1 Update README.md...Author: Markus Fleschutz | License: CC0
This PowerShell script lists system information of the local computer.
PS> ./list-system-info.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script scans a directory tree and lists all system files.
path Specifies the path to the directory tree (default is current working dir)
PS> ./list-system-files.ps1 C:\Windows...✅ Found 764 system files within 📂C:\windows in 50 secAuthor: Markus Fleschutz | License: CC0