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 checks if the user has administrator rights.
PS> ./check-admin.ps1✅ Yes, Markus has admin rights.Author: Markus Fleschutz | License: CC0
This PowerShell script downloads a random photo from Unsplash and sets it as desktop background.
Category Specifies the photo category (beach, city, ...)
PS> ./change-wallpaperAuthor: Markus Fleschutz | License: CC0
This PowerShell script changes the working directory to the Windows directory.
PS> ./cd-windows📂C:\Windows entered (has 7 files and 42 folders)Author: 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 sets the current working directory to the templates folder.
PS> ./cd-templates.ps1📂/home/Markus/Templates with 3 files and 0 folders entered.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