Wednesday, January 7, 2026

PowerShell: filter output with value

 #require PowerShell core 

Install-PSResource FineFormat

Install-Module -Name FineFormat -scope CurrentUser

#The output show a lot of empty values

Get-CimInstance Win32_operatingSystem -Property FreePhysicalMemory,TotalVisibleMemorySize

#Only show output with value

Get-CimInstance Win32_operatingSystem -Property FreePhysicalMemory,TotalVisibleMemorySize | Format-Fine -HasValue

Tuesday, August 26, 2025

Win11 upgrade without restriction

 One of the best tools to upgrade Windows 10 PCs to Windows 11 just got a lot better - gHacks Tech News


Remove the restrictions stopping you from installing Windows 11 (24H2) on unsupported hardware.
Old PC? No TPM, no Secure Boot, unsupported CPU? Flyby11 let you install Windows 11 anyway

PowerShell: filter output with value

 #require PowerShell core  Install-PSResource FineFormat Install-Module -Name FineFormat -scope CurrentUser #The output show a lot of empty ...