Search for files containing passwords. First list all files:
CMD:
dir /b /a /s c:\\ >> files.txt
PowerShell:
Get-Childitem -Path C:\\ -Include *pass* -Recurse -ErrorAction SilentlyContinue
Also can do gci
instead of Get-Childitem
REMEMBER also to look at network shares and other drives
Then search for files with the word password
:
type files.txt | findstr /i passw
Search for registry keys that contain passwords
reg query HKLM (/HKCU) /f password /t REG_SZ
Some software have password embedded in the settings for example VNC
reg query "HKCU\\Software\\ORL'WinVNC3\\Password