This PowerShell script lists major earthquakes for the last 30 days.
minMagnitude Specifies the minimum magnitude to list (5.5 by default)
PS> ./list-earthquakes.ps1MAG LOCATION DEPTH TIME UTC--- -------- ----- --------7.2 98 km S of Sand Point, Alaska 33 km 2023-07-16T06:48:22.606Z...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all local drives as a table.
PS> ./list-drives.ps1DriveLetter FriendlyName FileSystemType DriveType HealthStatus OperationalStatus SizeRemaining Size----------- ------------ -------------- --------- ------------ ----------------- ------------- ----C SSD NTFS Fixed Healthy OK 449.65 GB 930.43 GBAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists all files and folders in a neat directory tree (including icon and size).
path Specifies the path to the directory tree
PS> ./list-dir-tree.ps1 C:\MyFolder├📂Results│ ├📄sales.txt (442K)(2 folders, 1 file, 442K file size in total)Author: Markus Fleschutz | License: CC0
This PowerShell script lists the current settings of Windows Defender Antivirus. NOTE: use 'Set-MpPreference' to change settings (e.g. DisableScanningNetworkFiles)
PS> ./list-defender-settings.ps1AttackSurfaceReductionOnlyExclusions :CheckForSignaturesBeforeRunningScan : False...Author: Markus Fleschutz | License: CC0
This PowerShell script queries the current crypto exchange rates from cryptocompare.com and lists it in USD/EUR/CNY/JPY.
PS> ./list-crypto-rates.ps1CRYPTOCURRENCY US$ €UR CN¥Y JPY-------------- --- --- --- ---1 Bitcoin (BTC) = 97309.81 94385.57 38800 14798679.56...Author: Markus Fleschutz | License: CC0
This PowerShell script lists details of all countries.
PS> ./list-countries.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script lists all available console colors.
PS> ./list-console-colors.ps1Color As Foreground As Background----- ------------- -------------...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all commits in a Git repository. Supported output formats are: pretty, list, compact, normal or JSON.
RepoDir Specifies the file path to the local Git repository.
Format Specifies the output format: pretty|list|compact|normal|JSON (pretty by default)
PS> ./list-commitsID Date Committer Description-- ---- --------- -----------ccd0d3e Wed Sep 29 08:28:20 2021 +0200 Markus Fleschutz Fix typo...Author: Markus Fleschutz | License: CC0
This PowerShell script queries alphavantage.co and lists the global price of coffee (monthly, in cents per points).
PS> ./list-coffee-prices.ps1Monthly Global Price of Coffee (by alphavantage.co, in cents per pound)-----------------------------------------------------------------------2024-04-01 ████████████████████████████████████████████████████████████████████▌ 240...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all PowerShell cmdlets.
PS> ./list-cmdlets.ps1CommandType Name Version Source----------- ---- ------- ------Function Add-BCDataCacheExtension 1.0.0.0 BranchCacheFunction Add-BitLockerKeyProtector 1.0.0.0 BitLocker...Author: Markus Fleschutz | License: CC0