text
stringlengths
0
4.23k
To remove all line devices assigned to User1, before assigning one line with address 99999, type:
<UserList>
<User NoMerge=1>
<DomainUser>domain1\user1</DomainUser>
<FriendlyName>User1</FriendlyName>
<LineList>
<Line>
<Address>99999</Address>
</Line>
</LineList>
</User>
</UserList>
In this example, User1 has no other line devices assigned, regardless of whether any line devices were assigned previously.
To add one line device for User1, without deleting any previously assigned line devices, type:
<UserList>
<User>
<DomainUser>domain1\user1</DomainUser>
<FriendlyName>User1</FriendlyName>
<LineList>
<Line>
<Address>99999</Address>
</Line>
</LineList>
</User>
</UserList>
To add line address 99999 and to remove line address 88888 from User1's access, type:
<UserList>
<User>
<DomainUser>domain1\user1</DomainUser>
<FriendlyName>User1</FriendlyName>
<LineList>
<Line>
<Address>99999</Address>
</Line>
<Line Remove=1>
<Address>88888</Address>
</Line>
</LineList>
</User>
</UserList>
To add permanent device 1000 and to remove line 88888 from User1's access, type:
<UserList>
<User>
<DomainUser>domain1\user1</DomainUser>
<FriendlyName>User1</FriendlyName>
<LineList>
<Line>
<PermanentID>1000</PermanentID>
</Line>
<Line Remove=1>
<Address>88888</Address>
</Line>
</LineList>
</User>
</UserList>
tskill
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Ends a process running in a session on a Remote Desktop Session Host server.
Note
You can use this command to end only those processes that belong to you, unless you are an administrator. Administrators have full access to all tskill functions and can end processes that are running in other user sessions.
To find out what's new in the latest version, see What's New in Remote Desktop Services in Windows Server.
Syntax
tskill {<processID> | <processname>} [/server:<servername>] [/id:<sessionID> | /a] [/v]
Parameters
Parameter
Description
<processID>
Specifies the ID of the process that you want to end.
<processname>
Specifies the name of the process that you want to end. This parameter can include wildcard characters.
/server:<servername>
Specifies the terminal server that contains the process that you want to end. If /server isn't specified, the current Remote Desktop Session Host server is used.
/id:<sessionID>
Ends the process that is running in the specified session.
/a
Ends the process that is running in all sessions.
/v
Displays information about the actions being performed.
/?
Displays help at the command prompt.