码迷,mamicode.com
首页 > 系统相关 > 详细

powershell 远程执行命令(不用手动输入密码)

时间:2016-08-05 18:02:03      阅读:1962      评论:0      收藏:0      [点我收藏+]

标签:password   computer   输入密码   服务器   domain   

$user = "domain\usrename"

$password = ConvertTo-SecureString -String "password" -AsPlainText -Force

$credential = New-Object -TypeName "System.Management.Automation.PSCredential" -ArgumentList $user, $password

$session = New-PSSession -computer ip -credential $credential

$result = Invoke-Command -Session $session -ScriptBlock {Add-PSSnapin vm*}

$result = Invoke-Command -Session $session -ScriptBlock {get-desktopvm -pool_id olanddesk}

$result


连接远程服务器使用

enter-pssession -computer ip -credential domain\username


本文出自 “备忘录” 博客,请务必保留此出处http://flybozhou.blog.51cto.com/818675/1834767

powershell 远程执行命令(不用手动输入密码)

标签:password   computer   输入密码   服务器   domain   

原文地址:http://flybozhou.blog.51cto.com/818675/1834767

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!