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

简介:

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

wKioL1gI5GaBQ12sAAAf6nXdprg670.png-wh_50

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

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

wKiom1gI52rQM4pEAAEYFwYX8l8840.png-wh_50

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

wKioL1gI52uCfAYbAABxmOfQHLI685.png-wh_50

如果不需要输入用户名和密码,并且把命令存入到 .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

wKioL1gI6NTSEVyrAADiqMbnIgE203.png-wh_50

wKiom1gI6S2TYDMzAAAnDQPBXQk130.png-wh_50




本文转自 zhou_ping 51CTO博客,原文链接:http://blog.51cto.com/yuntcloud/1864075,如需转载请自行联系原作者


相关文章
|
2月前
【Azure App Service】PowerShell脚本批量添加IP地址到Web App允许访问IP列表中
Web App取消公网访问后,只允许特定IP能访问Web App。需要写一下段PowerShell脚本,批量添加IP到Web App的允许访问IP列表里!
|
3月前
|
监控 关系型数据库 MySQL
PowerShell 脚本编写 :自动化Windows 开发工作流程
PowerShell 脚本编写 :自动化Windows 开发工作流程
108 0
|
3月前
|
数据安全/隐私保护
【Azure Entra ID】使用PowerShell脚本导出Entra ID中指定应用下的所有用户信息
在Azure Entra ID中,需要导出一个Application 下的用户信息, 包含User的创建时间。
|
5月前
【Azure Web Job】Azure Web Job执行Powershell脚本报错 The term 'Select-AzContext' is not recognized as the name
【Azure Web Job】Azure Web Job执行Powershell脚本报错 The term 'Select-AzContext' is not recognized as the name
|
5月前
|
Ubuntu Linux 测试技术
【Azure Function App】Python Function调用Powershell脚本在Azure上执行失败的案例
【Azure Function App】Python Function调用Powershell脚本在Azure上执行失败的案例
|
5月前
|
存储 Shell 容器
【Azure 存储服务】使用PowerShell脚本创建存储账号(Storage Account)的共享访问签名(SASToken) : New-AzStorageContainerSASToken
【Azure 存储服务】使用PowerShell脚本创建存储账号(Storage Account)的共享访问签名(SASToken) : New-AzStorageContainerSASToken
|
5月前
【Azure 应用服务】Azure Function 中运行Powershell 脚本,定位 -DefaultProfile 引发的错误
【Azure 应用服务】Azure Function 中运行Powershell 脚本,定位 -DefaultProfile 引发的错误
|
5月前
|
Java
【Azure 应用服务】使用PowerShell脚本上传文件至App Service目录  
【Azure 应用服务】使用PowerShell脚本上传文件至App Service目录  
|
5月前
|
Java 开发工具 Windows
【Azure Developer】调用SDK的runPowerShellScript方法,在Azure VM中执行PowerShell脚本示例
【Azure Developer】调用SDK的runPowerShellScript方法,在Azure VM中执行PowerShell脚本示例
|
5月前
|
缓存 监控 NoSQL
【Azure Redis 缓存】使用Python代码获取Azure Redis的监控指标值 (含Powershell脚本方式)
【Azure Redis 缓存】使用Python代码获取Azure Redis的监控指标值 (含Powershell脚本方式)