Portable version writes no registry keys; settings go to HWiNFO64.INI alongside the .exe.
SensorsSM = 1 enables Shared Memory export for integration with tools like RTSS, Rainmeter, or custom scripts.
AutoRun = 1 adds an entry to HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run.
# Enable Shared Memory for sensor data export (e.g., Rainmeter integration)$path="HKCU:\SOFTWARE\HWiNFO64"if(-not(Test-Path$path)){New-Item-Path$path-Force|Out-Null}Set-ItemProperty-Path$path-Name"SensorsSM"-Value1-TypeDWord# Enable sensors-only mode with minimized start (headless monitoring)Set-ItemProperty-Path$path-Name"SensorsOnly"-Value1-TypeDWordSet-ItemProperty-Path$path-Name"StartMinimized"-Value1-TypeDWord
🗑️ Cleanup
# Remove HWiNFO user preferencesRemove-Item-Path"HKCU:\SOFTWARE\HWiNFO64"-Recurse-ErrorActionSilentlyContinue# Remove startup entry if setRemove-ItemProperty-Path"HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run"`-Name"HWiNFO64"-ErrorActionSilentlyContinue