First: Listing All Dirs. in C Drive and saving it to a file
dir /b /a /s C:\\ > cdirs.txt
Second: Open the file and search for interesting files
notepad cdirs.txt

Third: Searching for password files
type cdirs.txt | findstr /i passw

As observed we find a file named passwords.txt
Fourth: Open the password file
type C:\\Users\\IEUser\\Documents\\passwords.txt

And we got the user password
Don’t forget to take a look at the network share folder
net use
