nomes de host: srv1, srv2, srv3
Ao abrir um powershell em srv2, posso montar uma unidade de rede remota em srv3 com sucesso com este comando:
PS > hostname
srv2
PS > net use Z: \srv3\c /user:Admin *
Type the password for \srv3\c:
The command completed successfully.
No entanto, quando wmic'd de srv1 para srv2 e tentando executar o mesmo comando, recebo um erro:
PS > hostname
srv1
PS > enter-PSSession -ComputerName srv2 -Credential $cred
PS > hostname
srv2
PS > net use Z: \srv3\c /user:Admin *
net : System error 86 has occurred.
+ CategoryInfo : NotSpecified: (System error 86 has occurred.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
The specified network password is not correct.
Ele não me pede uma senha e eu gostaria de evitar digitar a senha em texto simples.
Tags powershell network-shares wmic