如何以其他用户身份运行 powershell 脚本中的某一行。
例如我有这条线
$server = $args[0];
Add-PSSnapin -Name McliPSSnapIn
Mcli-Run SetupConnection -p server=$server
我想封装最后两行以作为不同的用户运行,我该如何实现?
如何以其他用户身份运行 powershell 脚本中的某一行。
例如我有这条线
$server = $args[0];
Add-PSSnapin -Name McliPSSnapIn
Mcli-Run SetupConnection -p server=$server
我想封装最后两行以作为不同的用户运行,我该如何实现?