UserExclusion
Retrieve FSLogix Profile Container User Exclusion List of a session server with the specified ID.
The ID of a session server for which to retrieve the FSLogix Profile Container settings.
GET /api/RDS/Host/{id}/FSLogix/ProfileContainer/UserExclusion HTTP/1.1
Host:
Accept: */*
[
{
"account": "text",
"type": [
"1 = User",
"2 = Group",
"3 = ForeignSecurityPrincipal",
"4 = Computer"
],
"sid": "text"
}
]
Add a user to the User Exclusion List of the FSLogix Profile Container settings.
The ID of a session server for which to modify the FSLogix Profile Container settings.
Add a user or group account to the FSLogix user inclusion/exclusion list
The name of the user/group account to add to the FSLogix Container.
The SID of the user/group account to add to the FSLogix Container.
POST /api/RDS/Host/{id}/FSLogix/ProfileContainer/UserExclusion HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 31
{
"account": "text",
"sid": "text"
}
No content
Remove a user from the User Exclusion List of the FSLogix Profile Container settings.
The ID of a session server for which to modify the FSLogix Profile Container settings.
Remove a user from the FSLogix user inclusion list
The name of the user/group account to remove from the FSLogix Container.
The SID of the user/group account to remove from the FSLogix Container.
DELETE /api/RDS/Host/{id}/FSLogix/ProfileContainer/UserExclusion HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 31
{
"account": "text",
"sid": "text"
}
No content
Was this helpful?