I could use “net use” command at windows successfully using both Administrator and other account. But I can’t use other account to go to ” \\IPAddress\c$ password /User:username”. This could be done using Administrator account.
Does anyone know what’s the setting at the server side that could solve this?
Thanks
When you are issuing the command
net use \\xxx.xxx.xxx.xxx\c$you are attempting to connect to a special share known as the Administrative shareTo connect to that share, the person requesting the connection needs to be in admin group on the remote computer.
You options are
Provide alternate credentials for the net use command
net use \xxx.xxx.xxx.xxx\c$ MySecurePassw0rd /user:RemoteComputerName\RemoteUser
net use /?