3
0
3
0
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
This PowerShell script lists all system devices connected to the local computer.
PS> ./list-system-devices.ps1FriendlyName Status InstanceId------------ ------ ----------Microsoft-Controller OK ROOT\SPACEPORT\0000...Author: Markus Fleschutz | License: CC0
This PowerShell script lists "Did you mean?" suggestions from Google.
text Specifies the word or sentence to get suggestions for.
PS> ./list-suggestions.ps1 Joejoe bidenjoe cocker...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the submodules in the given Git repository.
RepoDir Specifies the path to the repository (current working directory by default)
PS> ./list-submodules.ps1 C:\MyRepoAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists the user's public SSH key.
PS> ./list-ssh-key.ps1Author: Markus Fleschutz | License: CC0