无法将“ quser”识别为cmdlet,函数,脚本文件或可运行程序的名称

时间:2018-08-06 09:19:39

标签: powershell

在powershell脚本中使用quser来获取有关远程桌面sesison主机上的用户会话的信息时,发生错误,提示The term 'quser' is not recognized as the name of a cmdlet, function, script file, or operable program。代码是这样的,

$hostObject = [System.Net.Dns]::GetHostByAddress($ip) | Select-Object HostName
$hostName = $hostObject.HostName
$hostInformation = quser /server:$hostName

如何使Powershell识别quser?

1 个答案:

答案 0 :(得分:0)

我希望您尝试在服务器而不是工作站上运行此命令。我曾尝试从笔记本电脑上运行,但无法正常运行,但始终可以在服务器上运行。