Windows 'net use' usage

I am trying to troubleshoot an issue with credential scanning of a Windows 2012 Server using Nessus and one of the troubleshooting step is to run the following command from an elevated command prompt.

net use \\x.x.x.x\ipc$ "" /user:""

It says its trying to see if we can access the IPC$ share without a username. This is understood. However, I'd like to know what is the meaning of the "" between ipc$ and /user:

1 Answer

It's the user's password.
Where "" means there's no password for the user you specified.
You can drop this part, and type the password manually.

check net use /? for more.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like