标签:citrix 计划任务 xenapp xasession
挺简单的,Citrix带了PowerShell模块,虽然用起来有些莫名其妙的报错……
这次场景需求是每天定时结束掉除了某个用户之外的其他用户打开的XASession,logoff+SessionID没法判断用户名。一查powershell模块果然有Snapin。
脚本如下:
Add-PSSnapin "Citrix.XenApp.Commands" Get-XASession | where {$_.AccountName -ne "Domain\username"} | Stop-XASession
get-XASession自带了一些限制参数,比如-serverName指定服务器-BrowserName指定应用的名字。
作为一个好的XenApp管理员是应该学习一下它的这套Powershell命令,如同VMware的PowerCLI一般重要。
然后存到某个路径比如c:\script\killsession.ps1文件,建个计划任务,执行程序里写powershell.exe 参数写 –file c:\script\killsession.ps1,每天凌晨5点执行。搞定!
本文出自 “卡斯特梅的雨季” 博客,请务必保留此出处http://sodaxu.blog.51cto.com/8850288/1554548
使用PowerShell定时批量结束Citrix Xen App Session
标签:citrix 计划任务 xenapp xasession
原文地址:http://sodaxu.blog.51cto.com/8850288/1554548