Posts

Showing posts from August, 2022

Find Windows Product Keys

 Ways to find Windows Product Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform , find value of BackupProductKeyDefault (Not working) Find Product Key Using CMD: wmic path softwarelicensingservice get OA3xOriginalProductKey (Not working) powershell: "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey" (Not working) Registry: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId

Get wifi password (connected wifi connection) from command line

Image
 Execute below command, and look for value in the output: "key content" under "security settings" netsh.exe wlan show profiles name=’Profile Name’ key=clear Sample output: Ref:  Get Wireless Network SSID and Password with PowerShell - Scripting Blog (microsoft.com)