Browse Community
Help
Log In
Responses(1)
Solutions(0)
Tarun Kr Agrawa
21 Posts
0
August 21st, 2017 04:00
Hi Ketema,
Please run the following commands before executing the invoke.
1. Enable-PSRemoting -force on both system (Client and Remote)
2. Set-Item wsman:\localhost\client\TrustedHosts *
Now, run the invoke command as below and provide password in the pop up box.
Invoke-command {get-psdrive} -computername -credential
For connecting multiple systems, you can write script and put above commands for individual system.
To avoid pop up for password for each system you can use below command in the script.
$secpwd=ConvertTo-SecureString -AsPlainText -force
$mycred=New-Object System.Management.Automation.PSCredential( , $secpwd)
Invoke-command {get-psdrive} -computername -credential $mycred
Thanks
-Tarun
#IWork4Dell
Dell Support Resources
View All
Top
Tarun Kr Agrawa
21 Posts
0
August 21st, 2017 04:00
Hi Ketema,
Please run the following commands before executing the invoke.
1. Enable-PSRemoting -force on both system (Client and Remote)
2. Set-Item wsman:\localhost\client\TrustedHosts *
Now, run the invoke command as below and provide password in the pop up box.
Invoke-command {get-psdrive} -computername -credential
For connecting multiple systems, you can write script and put above commands for individual system.
To avoid pop up for password for each system you can use below command in the script.
$secpwd=ConvertTo-SecureString -AsPlainText -force
$mycred=New-Object System.Management.Automation.PSCredential( , $secpwd)
Invoke-command {get-psdrive} -computername -credential $mycred
Thanks
-Tarun
#IWork4Dell