码迷,mamicode.com
首页 > 其他好文 > 详细

强制PowerShell脚本以管理员权限运行

时间:2014-06-28 10:32:29      阅读:797      评论:0      收藏:0      [点我收藏+]

标签:http   color   get   os   art   html   

param$a$b )
#region 关键代码:强迫以管理员权限运行
$currentWi [Security.Principal.WindowsIdentity]::GetCurrent()
$currentWp [Security.Principal.WindowsPrincipal]$currentWi
 
if-not $currentWp.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))
{
  $boundPara = ($MyInvocation.BoundParameters.Keys | foreach{
     ‘-{0} {1}‘ -f  $_ ,$MyInvocation.BoundParameters[$_]} ) -join ‘ ‘
  $currentFile = (Resolve-Path  $MyInvocation.InvocationName).Path
 
 $fullPara $boundPara ‘ ‘ $args -join ‘ ‘
 Start-Process "$psHome\powershell.exe"   -ArgumentList "$currentFile $fullPara"   -verb runas
 return
}
#endregion
 
#region 测试脚本片段
"a=$a, b=$b"
 ($args -join ‘ ‘)
Write-Host  ‘执行完毕,按任意键退出...‘
Read-Host
#endregion
 
From:http://www.pstips.net/force-script-run-as-admin.html
 
 

强制PowerShell脚本以管理员权限运行,布布扣,bubuko.com

强制PowerShell脚本以管理员权限运行

标签:http   color   get   os   art   html   

原文地址:http://www.cnblogs.com/dreamer-fish/p/3804316.html

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