如何检查我是否具有远程系统的管理员权限?

时间:2015-09-16 21:05:03

标签: windows powershell scripting

使用PowerShell,我如何检查是否可以访问远程系统(例如\\SYSTEM0123\c$\)?

1 个答案:

答案 0 :(得分:1)

你可以try

try {
    Get-Item -Path \\SYSTEM0123\c$ -ErrorAction Stop
    # if you have access these statements will run
} catch {
    # Don't have access
}