3
0
3
0
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
This PowerShell script lists all environment variables.
PS> ./list-environment-variables.ps1Name Value---- -----ALLUSERSPROFILE C:\ProgramData...Author: Markus Fleschutz | License: CC0
This PowerShell script scans a directory tree and lists all empty files.
path Specifies the path to the directory tree (default is current working dir)
PS> ./list-empty-files.ps1 C:\Windows...✅ Found 6 empty files within C:\Windows in 54 secAuthor: Markus Fleschutz | License: CC0
This PowerShell script scans a directory tree and lists all empty directories.
path Specifies the path to the directory tree (current working directory by default)
PS> ./list-empty-dirs.ps1 C:\Windows...✅ Found 39972 empty directories within 📂C:\Windows in 222 secAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists the emojis of Unicode 13.0 sorted by category.
PS> ./list-emojis.ps1Author: Markus Fleschutz | License: CC0
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