powershell 使用PowerShell注销远程用户

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用PowerShell注销远程用户相关的知识,希望对你有一定的参考价值。

$userName = '<account>'

$server = "<server>"

$sessionId = ((quser /server:$server | Where-Object { $_ -match $userName }) -split ' +')[2]

write-host $sessionId

logoff $sessionId /server:$server


# REF: https://4sysops.com/archives/how-to-force-a-user-logoff-remotely-with-powershell/

以上是关于powershell 使用PowerShell注销远程用户的主要内容,如果未能解决你的问题,请参考以下文章

XenDesktop 之powershell 使用

PowerShell 错误 - 计划任务 - 预期表达式

如何使用 Powershell 读取登录事件和查找用户信息?

PowerShell 把quser 字符串结果转换为对象

是否可以创建用户定义的 PowerShell 环境?

有没有办法在powershell中切换用户以运行没有密码提示的命令?