Folder Exclusion
Retrieve FSLogix Profile Container Folder Exclusion List of a Site Defaults object.
The SiteId of a Site Defaults object for which to retrieve the FSLogix Profile Container settings (optional).
GET /api/AVD/DefaultSettings/SingleSession/FSLogix/ProfileContainer/FolderExclusion HTTP/1.1
Host:
Accept: */*
[
"text"
]
Add a folder to the Folder Exclusion List of the FSLogix Profile Container settings.
The Site ID of an object for which to modify the FSLogix Profile Container settings (optional).
Add FSLogix Folder Exclusion
Specifies the 'Folder' path to add to the Include/Exclude Folder List.
Exclude Folder Copy values.
POST /api/AVD/DefaultSettings/SingleSession/FSLogix/ProfileContainer/FolderExclusion HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 80
{
"folder": "text",
"excludeFolderCopy": [
"0 = None",
"1 = CopyBase",
"2 = CopyBack"
]
}
No content
Modify an item in the folder exclusion list of the FSLogix Profile Container settings.
The Site ID of an object for which to modify the FSLogix Profile Container settings (optional).
Change folder configuration in the FSLogix folder exclusion list
Specifies the 'Folder' path to modify within Exclude Folder List.
Exclude Folder Copy values.
PUT /api/AVD/DefaultSettings/SingleSession/FSLogix/ProfileContainer/FolderExclusion HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 80
{
"folder": "text",
"excludeFolderCopy": [
"0 = None",
"1 = CopyBase",
"2 = CopyBack"
]
}
No content
Remove a folder from the Folder Exclusion List of the FSLogix Profile Container settings.
The Site ID of an object for which to modify the FSLogix Profile Container settings (optional).
Remove a folder from the FSLogix folder inclusion list
Specifies the 'Folder' path to remove to the Include/Exclude Folder List.
DELETE /api/AVD/DefaultSettings/SingleSession/FSLogix/ProfileContainer/FolderExclusion HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 17
{
"folder": "text"
}
No content
Was this helpful?