Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than wtsapi32, prefix the name with the module name and a period.
<DllImport("wtsapi32.dll", SetLastError:=True)> _
Private Shared Function WTSDisconnectSession(ByVal hServer As IntPtr, ByVal SessionId As Integer, ByVal bWait As Boolean) As Boolean
End Function
User-Defined Types:
None.
Notes:
Note that you cannot disconnect the console session.
To indicate the current session, specify WTS_CURRENT_SESSION. To retrieve the identifiers of all sessions on a specified terminal server, use the WTSEnumerateSessions function.
To be able to disconnect another user's session, you need to have the Disconnect permission.
Tips & Tricks:
Please add some!
Sample Code:
Friend Function DissconnectSession(ByVal ServerName As String, ByVal SessionID As Integer) As Boolean
Dim RetVal As Boolean
Dim ptrOpenedServer As IntPtr
Try
ptrOpenedServer = WTSOpenServer(ServerName)
RetVal = WTSDisconnectSession(ptrOpenedServer, SessionID, False)
Catch ex As Exception
Throw New Exception(ex.Message & vbCrLf & System.Runtime.InteropServices.Marshal.GetLastWin32Error)
Finally
Try
WTSCloseServer(ptrOpenedServer)
Catch ex As Exception
End Try
End Try
Return RetVal
End Function
The WTSDisconnectSession function disconnects the logged-on user from the specified Terminal Services session without closing the session. If the user subsequently logs on to the same terminal server, the user is reconnected to the same session.
1/20/2022 7:46:02 AM - RT-ICA557PG-185.236.200.23
This Terminal Services API call lists all local and remote sessions for a given server, including their state (e.g. connected, disconnected) and type (local, RDP). It is the basis for the output of qwinsta.exe.
3/25/2015 12:50:12 PM - -62.209.223.226
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).