This PowerShell script prints the geographic location of the given IP address. .PARAMTER IPaddress Specifies the IP address
PS> ./locate-ipaddress.ps1 177.144.67.98Author: Markus Fleschutz | License: CC0
This PowerShell script lists installed/available Linux distributions for Windows Subsystem for Linux (WSL).
PS> ./list-wsl-distros.ps1NAME STATE VERSION* Ubuntu-24.04 Stopped 2...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the path to current working directory (but not the content itself).
PS> ./list-workdir.ps1📂C:\Users\MarkusAuthor: Markus Fleschutz | License: CC0
This PowerShell script queries all main window titles and lists them as a table.
PS> ./list-window-titles.ps1Id ProcessName MainWindowTitle-- ----------- ---------------11556 Spotify Spotify Free...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the WIFI networks.
PS> ./list-wifi.ps1Author: Markus Fleschutz | License: CC0
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