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

Untitled

Third: Searching for password files

type cdirs.txt | findstr /i passw

Untitled

As observed we find a file named passwords.txt

Fourth: Open the password file

type C:\\Users\\IEUser\\Documents\\passwords.txt

Untitled

And we got the user password

Don’t forget to take a look at the network share folder

net use

Untitled