This PowerShell script queries the CPU status (name, type, speed, temperature, etc) and prints it.
PS> ./check-cpu.ps1✅ Intel(R) Core(TM) i9-10900X CPU @ 3.70GHz (AMD64, 20 cores, CPU0, 3696MHz, CPU0 socket, 31.3°C)Author: Markus Fleschutz | License: CC0
This PowerShell script queries the BIOS status and prints it.
PS> ./check-bios.ps1✅ BIOS model P62 v02.67, version HPQOEM - 5, S/N CZC1080B01 by HPAuthor: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's videos folder.
PS> ./cd-videos📂C:\Users\Markus\Videos entered (has 3 files and 0 subfolders)Author: Markus Fleschutz | License: CC0
This PowerShell script sets the current working directory to the users directory.
PS> ./cd-users.ps1📂C:\Users with 4 folders entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's trash folder.
PS> ./cd-trash📂C:\$Recycle.Bin\S-1-5-21-123404-23309-294260-1001 entered (has 4 files and 0 subfolders)Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the temporary folder.
PS> ./cd-temp📂C:\Users\Markus\AppData\Local\Temp (has 2 files and 3 subfolders)Author: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the user's Syncthing folder.
PS> ./cd-sync.ps1📂C:\Users\Markus\Sync entered (has 2 files and 0 folders)Author: Markus Fleschutz | License: CC0
This PowerShell script sets the current working directory to the user's secure shell (SSH) folder.
PS> ./cd-ssh.ps1📂C:\Users\Markus\.ssh with 4 files entered.Author: Markus Fleschutz | License: CC0
This PowerShell script sets the current working directory to the user's screenshots folder.
PS> ./cd-screenshots.ps1📂C:\Users\Markus\Pictures\Screenshots with 7 files and 0 folders entered.Author: Markus Fleschutz | License: CC0
This PowerShell script changes the current working directory to the root directory (C:\ on Windows).
PS> ./cd-root.ps1📂C:\ with 7 folders and 0 files entered.Author: Markus Fleschutz | License: CC0