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

Powershell管理系列(三十五)PowerShell操作之以管理员权限运行脚本

时间:2016-10-21 01:25:56      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:powershell管理系列(三十五)powershell操作之以管理员权限运行脚本

-----提供AD\Exchange\Lync\Sharepoint\CRM\SC\O365等微软产品实施及外包,QQ:185426445.电话18666943750

场景:Win10或者是非管理员权限运行命令行的时候,提示无权限,如下图

技术分享

我们可以右键Powershell,以管理员权限运行,或者是计划任务设置为以管理员权限运行,其实我们有更加高效的办法,可以直接提权运行脚本,如下图,输入用户名和密码,

Invoke-Command -ScriptBlock {ipconfig /registerdns} -ComputerName desktop-jq6usg3 -Credential (Get-Credential)

技术分享

结果运行如下,命令成功执行,没有提示权限不足。

技术分享

如果不需要输入用户名和密码,并且把命令存入到 .ps1脚本,如下:

$UserName = "administrator"      #定义管理员账户名称
$Password = ConvertTo-SecureString Aa12345678 -AsPlainText –Force
$cred = New-Object System.Management.Automation.PSCredential($UserName,$Password)
Invoke-Command -Credential $cred -command {C:\Users\Terry.zhou\Desktop\host.ps1 } -ComputerName DESKTOP-JQ6USG3

技术分享

技术分享



本文出自 “周平的微软技术交流平台” 博客,请务必保留此出处http://yuntcloud.blog.51cto.com/1173839/1864075

Powershell管理系列(三十五)PowerShell操作之以管理员权限运行脚本

标签:powershell管理系列(三十五)powershell操作之以管理员权限运行脚本

原文地址:http://yuntcloud.blog.51cto.com/1173839/1864075

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