Kilitli Uzak Masaüstü Uygulaması kullanıcılarıyla bu sorunu yaşadım. Bu Powershell betiğini 2 dakikadan fazla bağlantısı kesilmiş olarak gösterilen kullanıcıları kapatmak için zamanlanmış bir görevde çalışacak şekilde yazdım. Gereken tek düzenleme , Uzak Masaüstü Aracısı Sunucusu'nu hariç tutmak için ayarladığım SERVERNAME , ancak istediğiniz herhangi bir sunucuyu hariç tutabilirsiniz veya hiçbirini hariç tutabilirsiniz.
Betiğim bu arada Windows Server 2012 R2 için yazılmış ...
Betik bunu yapar:
- Tüm Uzak Masaüstü Kullanıcı Oturumlarının bir listesini alır.
- "STATE_DISCONNECTED" demeyen oturumları yok sayar.
- Aracı Sunucusunu (veya başka bir sunucuyu) yok sayar
- Birleştirilmiş Oturum Kimliği olmayan oturumları yok sayar
- Bağlantı kesme süresi olmayan oturumları yok sayar
- Bağlantı kesme süresi olan oturumlar için geçerli saati kontrol eder ve şimdi ile bağlantı kesme süresi arasındaki zaman farkı X dakikadan uzunsa (bu durumda 2), winlogon işlemini öldürür.
- Ayrıca bir oturumu kapatma komutu vermeye çalışır (Büyük olasılıkla winlogon işlemi öldürüldükten sonra başarısız olur).
Benim için çalışıyor! Umarım başka birine yardımcı olur! :)
CLS
$RD = Get-RDUserSession | select ServerName, UserName, SessionState, DisconnectTime, UnifiedSessionId, SessionId #Get details about the sessions
foreach ($item in $RD) {
$UsessionID = $item.UnifiedSessionId -as [int]
$sessionID = $item.SessionId -as [int]
if ($item.SessionState -eq "STATE_DISCONNECTED" -and $item.ServerName -ne "SERVERNAME" -and $item.DisconnectTime -ne $null -and $item.UnifiedSessionId -ne $null){
$TimeDiff = New-TimeSpan -start $item.DisconnectTime -end (Get-Date) #check time difference between disconnect time and now. If time is greater than 2 minutes....
if ($TimeDiff.Minutes -gt 2) {
#Kill winlogon session for the user
Get-WmiObject -ComputerName $item.Servername -query "select * from win32_process where name='winlogon.exe'" | Where-Object {$_.SessionId -eq $SessionId} | %{$_.terminate()}
#Log off user if session still exists (will fail if user kicked)
Invoke-RDUserLogoff -HostServer $item.ServerName -UnifiedSessionID $UsessionID -Force -erroraction 'silentlycontinue'
}
}
}
Veya ekranda ne olduğunu görebileceğiniz bir sürümü tercih ediyorsanız:
CLS
$RD = Get-RDUserSession | select ServerName, UserName, SessionState, DisconnectTime, UnifiedSessionId, SessionId
foreach ($item in $RD) {
$UsessionID = $item.UnifiedSessionId -as [int]
$sessionID = $item.SessionId -as [int]
if ($item.SessionState -eq "STATE_DISCONNECTED" -and $item.ServerName -ne "SERVERNAME" -and $item.DisconnectTime -ne $null -and $item.UnifiedSessionId -ne $null){
#On Screen Output
write-host " Name : " $Item.UserName -ForegroundColor "yellow" -NoNewline
write-host " Unified Session Id : " $UsessionID -ForegroundColor "darkcyan" -NoNewline
write-host " User Session Id : " $sessionID -ForegroundColor "darkyellow" -NoNewline
write-host " Session State : " $item.SessionState -ForegroundColor "magenta" -NoNewline
write-host " Server : " $item.ServerName -ForegroundColor "cyan" -NoNewline
write-host " Disconnect Time : " $item.DisconnectTime -ForegroundColor "gray"
#End On Screen Output
$TimeDiff = New-TimeSpan -start $item.DisconnectTime -end (Get-Date)
if ($TimeDiff.Minutes -lt 2) {
write-host " Disconnected for less than 2 minutes" -ForegroundColor "Green"}
else {
write-host " Disconnected for more than 2 minutes" -ForegroundColor "Red" -BackgroundColor "darkyellow"
write-host " Killing session : " $item.ServerName " ID : " $UsessionID $item.UserName -ForegroundColor "Red"
#Kill Process "Winlogon.exe" for the user (this should kill the session)
Get-WmiObject -ComputerName $item.Servername -query "select * from win32_process where name='winlogon.exe'" | Where-Object {$_.SessionId -eq $SessionId} | %{$_.terminate()}
#Logout User (if session still exists)
Invoke-RDUserLogoff -HostServer $item.ServerName -UnifiedSessionID $UsessionID -Force -erroraction 'silentlycontinue'
Write-host " Done! " -ForegroundColor "Green" -BackgroundColor "blue"
}
}
}