diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj
index d0ccd91ca862..7df034926dfb 100644
--- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj
+++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj
@@ -514,6 +514,10 @@
{58a78f29-8c0c-4a5e-893e-3953c0f29c8a}
Commands.ServiceManagement.Test
+
+ {492d2af2-950b-4f2e-8079-8794305313fd}
+ Commands.RemoteApp
+
{bc420543-c04e-4bf3-96e1-cd81b823bdd7}
Commands.Test.Utilities
diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1 b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1
new file mode 100644
index 000000000000..597728053050
--- /dev/null
+++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/RemoteAppCI_Test.ps1
@@ -0,0 +1,256 @@
+ Set-Variable -Name VerbosePreference -Value Continue
+
+function PollingInterval()
+{
+ if ($env:AZURE_TEST_MODE -eq 'Playback')
+ {
+ $pollingIntervalSecs = 5
+ }
+ else
+ {
+ $pollingIntervalSecs = 60 * 5
+ }
+ $pollingIntervalSecs
+}
+
+function Assert([ScriptBlock] $Condition)
+{
+ if ((& $Condition) -eq $false)
+ {
+ throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)"
+ }
+}
+
+<#
+ This will pick a location, image, billing plan and create a ARA App collection and returns the collection name.
+#>
+function CreateCloudCollection([string] $Collection)
+{
+
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ [PSObject[]] $locationList = Get-AzureRemoteAppLocation | % Name
+ Assert -Condition {$locationList -ne $null -or $locationList.Count -lt 1}
+
+ [PSObject[]] $templateImageList = Get-AzureRemoteAppTemplateImage | ? {$_.Type -eq 'Platform' -and $_.OfficeType -ne 'Office365'}
+ Assert -Condition {$templateImageList -ne $null -or $templateImageList.Count -lt 1}
+
+ $templateImage = $null
+ $locCounter = 0
+ $imageCounter = 0
+ $found = $false
+ do
+ {
+ $location = $locationList[$locCounter]
+ do
+ {
+ $templateImage = $templateImageList[$imageCounter]
+ if ($templateImage.RegionList -contains $location)
+ {
+ $found = $true
+ }
+
+ $imageCounter++
+ } while ($imageCounter -lt $templateImageList.Count -and -not $found)
+
+ $locCounter++
+ } while ($locCounter -lt $locationList.Count -and -not $found)
+
+ Assert -Condition {$found}
+
+ $billingPlans = Get-AzureRemoteAppPlan | % Name
+ $billingPlan = $billingPlans[0]
+ Assert -Condition {-not [String]::IsNullOrWhiteSpace($billingPlan)}
+
+ Write-Verbose "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($templateImage.Name) -Plan $billingPlan -Location $location -Description 'Test Collection'"
+ $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $templateImage.Name -Plan $billingPlan -Location $location -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ do
+ {
+ Write-Verbose "Waiting current time: $(Get-Date)"
+ sleep -Seconds (PollingInterval)
+
+ $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Write-Verbose "Collection state: $($collectionState.Status)"
+ } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending')
+
+ Assert -Condition {$collectionState.Status -eq 'Success'}
+ Write-Verbose "$($MyInvocation.MyCommand.name) succsssfully created this collection $Collection"
+}
+
+
+<#
+ This will pick a 5 applications to publish, verifies that they've been published and returns the Publishing Info.
+#>
+function PublishRemoteApplications([string] $Collection)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $numOfApps = 5
+ $availablePrograms = Get-AzureRemoteAppStartMenuProgram $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Assert({$availablePrograms.Count -ge $numOfApps})
+
+ $currentPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ $programsToPublish = $availablePrograms[0..2]
+ $programsToPublish += $availablePrograms[$($availablePrograms.Count-2)..$($availablePrograms.Count-1)]
+ Assert({$programsToPublish.Count -eq $numOfApps})
+ $applications = $programsToPublish | % {
+ Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ $publishedPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Assert -Condition {($publishedPrograms.Count - $currentPrograms.Count) -eq $numOfApps}
+
+ $applications | % {Write-Verbose "($([IO.FileInfo]$_.ApplicationVirtualPath))"}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+
+ $applications
+}
+
+
+<#
+ This will pick a add the given users to the collection.
+#>
+function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ $msaUsers | % {
+ Add-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Assert -Condition {($previousUsers.Count + $msaUsers.Count) -eq $currentUsers.Count}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+
+ $currentUsers | % {Write-Verbose "Username: $($_.Name),and Type: $($_.UserIdType)" }
+}
+
+<#
+ This will remove the given users from the collection.
+#>
+function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ $msaUsers | % {
+ Remove-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ Assert -Condition {$currentUsers -eq $null}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+}
+
+<#
+ This will unpublish the specified applications from the collection.
+#>
+function UnpublishRemoteApplications([string] $Collection, [string[]] $applications)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $applications | % {
+ Unpublish-AzureRemoteAppProgram -CollectionName $Collection -Alias $_ -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ Sleep 60 # seconds
+ $remainingApps = Get-AzureRemoteAppProgram $Collection | % Alias
+
+ $failedToUnpublish = $remainingApps | ? {$applications -contains $_}
+ Assert -Condition {$failedToUnpublish -eq $null}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+}
+
+<#
+ This delete the collection
+#>
+function DeleteRemoteAppCollection([string] $Collection)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $trackIdCollection = Remove-AzureRemoteAppCollection -CollectionName $Collection
+
+ do
+ {
+ Write-Verbose "Waiting current time: $(Get-Date)"
+ sleep -Seconds (PollingInterval)
+
+ $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Write-Verbose "Collection state: $($collectionState.Status)"
+ } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending')
+
+ Assert -Condition {$collectionState.Status -eq 'Success'}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+}
+
+
+function TestRemoteAppEndToEnd()
+{
+ $collection = 'CICollection'
+ $msaUsers = "auxtm259@live.com", "auxtm260@live.com", "auxtm261@live.com"
+
+ Write-Verbose "Starting current time: $(Get-Date)"
+ CreateCloudCollection $collection
+ $applications = PublishRemoteApplications $collection
+ AddRemoteAppUsers $collection $msaUsers
+ RemoveRemoteAppUsers $collection $msaUsers
+ UnpublishRemoteApplications $collection ($applications | % {$_.ApplicationAlias})
+ DeleteRemoteAppCollection $collection
+ Write-Verbose "Done current time: $(Get-Date)"
+}
diff --git a/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json
new file mode 100644
index 000000000000..11d0c0b43f0c
--- /dev/null
+++ b/src/Common/Commands.ScenarioTest/Resources/RemoteApp/TestRemoteAppEndToEnd.json
@@ -0,0 +1,2354 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/locations?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvbG9jYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "448d4c96648c918ca83b2e45dc33a5d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:27 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/templateImages?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvdGVtcGxhdGVJbWFnZXM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadSetupTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "718"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "307009dc308192f4a4c128164d66fde6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:29 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/BillingPlans?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvQmlsbGluZ1BsYW5zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "262"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "6a8ffa5a4b6f97a99acb2554eef6b999"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:32 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdst15&action=register",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3QxNSZhY3Rpb249cmVnaXN0ZXI=",
+ "RequestMethod": "PUT",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ConflictError\r\n The resource type rdst15 is already registered for this subscription.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "5c2f34469c2091cbaba9c41c801672f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:35 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 409
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections?PopulateOnly=false&api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnM/UG9wdWxhdGVPbmx5PWZhbHNlJmFwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "309"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-clouddv-tracking-id": [
+ "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1"
+ ],
+ "x-remoteapp-operation-tracking-id": [
+ "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1"
+ ],
+ "x-ms-request-id": [
+ "3ba27ab674089a27b09f6b7ad9d801a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:39 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "d14e97697ae292a7a3c17bd8ce98addc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:56:42 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "dfc908b82cbd90c79d0abaa40b52dfae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:01:44 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "9b44214d2dfe9d8eb54731a5ddfa45ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:06:45 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "ea1a4368a1579bd381143dd28a1d3f99"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:11:48 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "c7e28ae5492a972a9240f05c8b6cb2a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:16:49 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "20e4edbacc1e900aa95c45913c4ccba1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:21:52 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/05e77332-a97a-4229-8e58-b17bf9829761.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z7Uf%2Bx4nEL6i%2FTqz1HX2sB8jexvXu3JOjixT44Qlq4A%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5b3039f5-2729-44ec-86b7-52df2cf25803.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=DlXfzsmGVI3VVVTFiz2Jm19emdy5r%2BWdCrYwWXYEEc8%3D\",\r\n \"Id\": \"04e6cae2-c709-4aba-a568-2b4aaad32af2\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ce329c74-2eeb-42fc-8d56-ee874412fb30.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=h%2B1uovb1klRqMQ5AKwjoxXS4EuRG9e3YJNuburqcGz0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1574b8fc-3b6e-4d16-a3c6-74c4931b95ae.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=NokEpBAqyb4Y2%2BhcDYW1JSzgm91B2gYOAq%2BBxTkFhNE%3D\",\r\n \"Id\": \"1d49a298-6656-4511-be81-2ac881850488\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/604f0e64-d126-41d8-a381-2239367eb2a4.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AaYlatL1nhSyw4osVtoqY%2BygCGCOOIoBy38lkDe3t7U%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/816715c7-3312-467a-a1ca-5ed444af3283.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=Y0ciz0xVl43Ra0qVkfmoy1XxdWj39WaUoeucbEjavkw%3D\",\r\n \"Id\": \"33f09af8-beec-4e14-94fd-2cdc3de17cb7\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/2bd21834-16bd-4da0-bb48-11bf8df0ea91.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=7pmcPTALDiCYZGXI%2FAzDZ06VM5rq7xXD185MRqamuss%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d8b53b21-4f21-4c18-ab95-8b6b31a84afe.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sJl%2BMYRcgb84J7yNZOW3powJbqYumJbzOr6n7W1SDtY%3D\",\r\n \"Id\": \"390e1a34-b1a2-49f5-9df5-533e8aad7a3b\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=87IpVvdQIS8VmwwUh8VbiwOei5ZtpU8Y%2FQl886GRQj4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=4A1fU0s1zWsc7OVGrTgEKGen%2F3sykTaa68KPERQ5kfY%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0d6f1c85-fcb9-4698-817c-73bd05281691.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=A%2B3V1L8L1X4Po1gqqDBwrDX1I230F2FxYEms%2F8CluBU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/f4074b68-b286-484e-b083-5d3e8363e6e5.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2tq%2F37I3cyXuEiSviesgMKYi1JoEzkP5nQihD%2BBBaww%3D\",\r\n \"Id\": \"5c4805e2-86f4-491f-9c10-ba6a2e267911\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/00d254ac-bcc3-42e5-90db-2c25f2a04cd5.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z1Rb70VAsAP0NuRi%2BZx6xEnLAu2%2FtWshOQOKhs7D%2FSM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6439cb47-115a-4e44-8176-8de3a918646a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=GY1KLpWFdXDzbdCDr3r3YLIrQnshWFivNSuDvDW80BU%3D\",\r\n \"Id\": \"5eb6b22b-ffc5-43e0-9803-4e29da7d6234\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7579deff-c2e4-41cd-a9a4-e02a49db4f60.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ujuopqFiqaUa1ICgb8ljscn37mWlB3r5I4E%2F%2FyVHXOI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/365e164c-d7af-4863-ba77-a48558b8458b.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=YdFIVPf1H1wL5sa2RGujzBaVt8xis3EaQGQu0XH2Cqg%3D\",\r\n \"Id\": \"834154e8-f861-4219-b0aa-d87e2c255a42\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/12570dff-3822-41e4-9e17-1f4fea892d9b.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=J68jFrl%2FPOMQ%2BpM29zUX8UxSrf31tKJoX7pZrphtPXY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/c16b21b3-6ea2-4626-aa91-bcef76fa8871.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=glNyJIY2QAbAcky2dF05vVyezADt6OuRdBu%2FFNt5DcI%3D\",\r\n \"Id\": \"8c5bf021-e463-47d7-919d-58335de607c3\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=8PXQmasBPrJKDiOHLlpUc%2BxLeH3ZOT3Pd8jI%2FSOlj%2B4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=xKoTDx%2F8%2BmHsXmgq1SupUT0S6JOW%2BEkRGXIqljA%2FjEA%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0a51d73f-4c70-4634-af86-5cc5b82042e8.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=iHKJ7horBhzzk9DpNyRqsKtAWK1Uv23sYPLx8LPMgJI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ebb41248-2a4b-4894-bef4-152d82a688dc.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=E0qUTBIKwUUtgAu2zafBCB10s%2BDOBYWap9zNwiwI85c%3D\",\r\n \"Id\": \"90cf8d5e-b215-444e-b789-a3e7924716d8\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=5PtQgbIpCY5qk9Mib%2FHLFp0qFGuf2C6XxfIjH4RHlpA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=aiSPkSni8acvqz%2BDqDpaqi9KFvG9O%2Fo0vv3KIN%2FmLgk%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/300ffed8-2db3-4c64-9dc9-b7b16ecc1b08.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=1chXUKs8oMepb57ndP5zAysGSsE4BlcYo6gTRAKZxOY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/436a2ad1-86c9-4cca-8669-bfead5e7d1c4.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2n%2FhSvhpaDrsNtR1Qx7jig1O%2BCYYKYM9dZkeDHbB2Fw%3D\",\r\n \"Id\": \"a79fbcbf-fa64-4d37-8098-eb31b713255d\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=I28L%2FK5TP8KlkfWJT1RS%2F3A1rjH38blU2o%2Fbk8RojwA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=eceYh8ADxLAH3k9P3CMfXLkHf1JVT4XXdPB%2BOI%2BTKq4%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/39dd5826-7a73-4a56-b0d7-c6c4aaed3cf3.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AkWpiCZyzuD%2FxcWTm7yduEd2OcAkhuNhV%2BcpTYvyQik%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/a1bd2f0d-6316-4680-bd6c-f9db873abed3.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ffpeM%2BN8EghHjgOCkpeAoGzsztoK492aJ%2FrePZuMPNo%3D\",\r\n \"Id\": \"cba99c82-a138-4c4a-93c1-d7c75c096649\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=RPnIFAfS2e4vHauUluQEnnhKI8dVMbP%2B5CdwPpgslNM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=dKWYcYRE2xZw2Vfp9ilOfsgbDD1nE0f6G0MJMSfdPXE%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6b566fe3-88ee-4421-a87d-f66df361f0d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=tDyk%2B2OAfTFLpfm3CHLbduHpZjTpyn9TON5RR%2Fhh7M8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6ebee49b-9b8b-4371-b058-0468ddbf1257.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sr5VM1r3qbzQ%2FUigoqqGye%2FkvOTe4rddEoj3%2B4MRj64%3D\",\r\n \"Id\": \"dcde01c2-6e75-42cc-a26a-c4f9b87281ab\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/be40d0a0-e1df-4e87-8b4b-373a5b00277f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ARXtQrxckijoh1E8Q1%2Fo%2F%2B5HQNX%2Bpa7owZBb75U16T0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7fa93ba9-1bf0-4028-a79e-b1db1128c43a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=9P3DpdpS3v0t4iw6wDLzt3rb3s5CXuY0o0%2BWgueEmes%3D\",\r\n \"Id\": \"f3414418-5f96-4f2d-82ea-89276bf82227\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "11410"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "b69bd447aae99c65a61278a2e3d9d8d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:21:55 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=y%2FO5lD4KpYASNyyh5LXSFMsooXb3j04oGpdgykbIeo4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=xObgseHegIC4XiBXwIhVcj3kx68Y%2FnuDLeDBstYo%2BR8%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "611"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "0f55ca20ef899697bfdcc5f34f0359ca"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:21:58 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=uSa0OyO4UT68QPloavZCEZK6GZA%2BgcnzxldvxMLiy70%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=GbejIboQ6ebbJ5tWpBqV0DilgP1b7FBWn5Zq4rj4r1M%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/83d8e64a-6225-4138-9d30-3c3b00510215.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=wLHunz58EdWo8inXERoTwJINd76Q0oyWVVTHKeELKnw%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/4d578ff4-9b86-4abd-a96e-c35ee261169a.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=FNZJPQmxO%2Fm2hTBGfG%2Fut3%2FIrZkIEypBBFGLu7ymyVc%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"Alias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "3557"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "35e85864e8c490b3a3697dbdbd51d3c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:20 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=JmMEY9ZakuxaNNYCgOswgTE%2BWohXBMcOoO1QqVLdehE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=rZxBTVhYaTsiTW9i6g6%2FWavwoDPN21TxhS9alv0U5Uc%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "609"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "a7e297ca2c049d9aa5b436227e71cf8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:23:57 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/bcbefc29-6de6-4e6e-b130-d92002966e2c?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvYmNiZWZjMjktNmRlNi00ZTZlLWIxMzAtZDkyMDAyOTY2ZTJjP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "631"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "58855f72b51e9655a064b86154978f10"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:01 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "747"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "194"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "419cbb93e16e9315ab040d08700b0273"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:04 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "764"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "200"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "9b86fe10fda4922da1d8b4f6a64de68a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:06 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "735"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "036619463e069ebbb1d095911bb5e3fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:10 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "751"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "601a6dc4372b93a39b93d0afda1b4658"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:15 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "744"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "193"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "298036e4e4ce9014ab0786c56b96edd9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:18 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/db0205ad-1d77-4087-b142-5d8065f76224?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvZGIwMjA1YWQtMWQ3Ny00MDg3LWIxNDItNWQ4MDY1Zjc2MjI0P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "648"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "8971af2234b29cc487fcfc6915b1d31f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:05 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/8c846901-f75a-4742-90d6-137223b52da7?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOGM4NDY5MDEtZjc1YS00NzQyLTkwZDYtMTM3MjIzYjUyZGE3P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "619"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "33f18646622a95d0bfc56d3f2bc42d5d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:09 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/45bca3f6-056f-48e9-8f8c-ebcc5b929b55?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvNDViY2EzZjYtMDU2Zi00OGU5LThmOGMtZWJjYzViOTI5YjU1P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "635"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "ed149286dd4e97caaddc55dc9d72430d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:13 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOWM2OTRiNmMtNWYyMi00ZDNiLWEyOGMtZGFlOThhNmFiNmMxP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "628"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "e14659fd70f59e958308892c7a98c38f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:17 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "136197bb86c790a0bdb54d83a2d5cf37"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:23 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "1805f417ff199633af674262055e6ee3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:31 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "8d9fd191a1c6983997110132ff733eee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:35 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "25c9d5d4b79b95aa85301cc037e5edb4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:45 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "c47afdb3e52093668d7be31dfa81f795"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:25 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "fda0b9064af1947497799158f87040b6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:28 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "f6b4d0ccf1839159ac8b0721a71df9ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:31 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "4a89e8fb15a094329565799f8999852b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:33 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "88ebb7a5793b9e5ba76b705939b2a262"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:37 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "67e3ffb32f209466a1980c014118a690"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:39 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "35740d352cea99f7b00b8385fdb0bfd8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:40 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "4298340cfaaf9b66a9b545ac73065958"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:43 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"c902b11e-9d1d-45eb-82eb-6424f82c784f\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "2f25fa43b98093d9a99be1862fcdf718"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:46 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"f23d48cb-9512-4b27-a89a-990a6e7f068f\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "37de324e3bb093638abe3d50a61d4034"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:49 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"fd337514-db28-4bec-b8d7-90843462755b\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "a06b8f0f7b0893a1a67d7ab3a45e568a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:51 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"958f7c37-fc93-4a6b-9659-c18c70e81692\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "f53f2deb9312976b9fd0334a24dab46d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:52 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "436b9a9762c49c7cb73d3fdd39148401"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:55 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-clouddv-tracking-id": [
+ "7ff70b85-a66a-408a-a7b6-3d2b947f210e"
+ ],
+ "x-remoteapp-operation-tracking-id": [
+ "7ff70b85-a66a-408a-a7b6-3d2b947f210e"
+ ],
+ "x-ms-request-id": [
+ "5dcdac48b48c9f71a72cfc4d52156020"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:23:59 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "5fbf3a553cc4966294cd5a89755796dd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:29:01 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "4d880bd681c19e6da59e610d8c5c42c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:34:04 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "10a818d8f61c995baa0205f4a355c5bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:39:06 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "1d51b83e712d9935819dc3a5b78ede3a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:44:12 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "0eb999375dba9392b7d22f22b1807f07"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:49:14 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "e6763bbd194c9f0fae7955b31760d3db"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:54:17 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "1306d801dbc291329efbafee242cb888"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:59:18 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "81"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "21f939fe830a991386d0f93a304e1264"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 05 May 2015 00:04:20 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc"
+ }
+}
\ No newline at end of file
diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json
new file mode 100644
index 000000000000..11d0c0b43f0c
--- /dev/null
+++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTest/TestRemoteAppEndToEnd.json
@@ -0,0 +1,2354 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/locations?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvbG9jYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "448d4c96648c918ca83b2e45dc33a5d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:27 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/templateImages?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvdGVtcGxhdGVJbWFnZXM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadSetupTime\": \"2015-03-09T21:27:13.094Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "718"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "307009dc308192f4a4c128164d66fde6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:29 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/BillingPlans?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvQmlsbGluZ1BsYW5zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "262"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "6a8ffa5a4b6f97a99acb2554eef6b999"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:32 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdst15&action=register",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3QxNSZhY3Rpb249cmVnaXN0ZXI=",
+ "RequestMethod": "PUT",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ConflictError\r\n The resource type rdst15 is already registered for this subscription.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "5c2f34469c2091cbaba9c41c801672f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:35 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 409
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections?PopulateOnly=false&api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnM/UG9wdWxhdGVPbmx5PWZhbHNlJmFwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "309"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-clouddv-tracking-id": [
+ "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1"
+ ],
+ "x-remoteapp-operation-tracking-id": [
+ "4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1"
+ ],
+ "x-ms-request-id": [
+ "3ba27ab674089a27b09f6b7ad9d801a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:51:39 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "d14e97697ae292a7a3c17bd8ce98addc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 22:56:42 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "dfc908b82cbd90c79d0abaa40b52dfae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:01:44 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "9b44214d2dfe9d8eb54731a5ddfa45ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:06:45 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "ea1a4368a1579bd381143dd28a1d3f99"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:11:48 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "c7e28ae5492a972a9240f05c8b6cb2a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:16:49 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/4b78fe67-9e7f-45ef-ac6d-9ad1d77b0ee1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy80Yjc4ZmU2Ny05ZTdmLTQ1ZWYtYWM2ZC05YWQxZDc3YjBlZTE/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "20e4edbacc1e900aa95c45913c4ccba1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:21:52 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/05e77332-a97a-4229-8e58-b17bf9829761.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z7Uf%2Bx4nEL6i%2FTqz1HX2sB8jexvXu3JOjixT44Qlq4A%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5b3039f5-2729-44ec-86b7-52df2cf25803.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=DlXfzsmGVI3VVVTFiz2Jm19emdy5r%2BWdCrYwWXYEEc8%3D\",\r\n \"Id\": \"04e6cae2-c709-4aba-a568-2b4aaad32af2\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ce329c74-2eeb-42fc-8d56-ee874412fb30.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=h%2B1uovb1klRqMQ5AKwjoxXS4EuRG9e3YJNuburqcGz0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1574b8fc-3b6e-4d16-a3c6-74c4931b95ae.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=NokEpBAqyb4Y2%2BhcDYW1JSzgm91B2gYOAq%2BBxTkFhNE%3D\",\r\n \"Id\": \"1d49a298-6656-4511-be81-2ac881850488\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/604f0e64-d126-41d8-a381-2239367eb2a4.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AaYlatL1nhSyw4osVtoqY%2BygCGCOOIoBy38lkDe3t7U%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/816715c7-3312-467a-a1ca-5ed444af3283.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=Y0ciz0xVl43Ra0qVkfmoy1XxdWj39WaUoeucbEjavkw%3D\",\r\n \"Id\": \"33f09af8-beec-4e14-94fd-2cdc3de17cb7\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/2bd21834-16bd-4da0-bb48-11bf8df0ea91.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=7pmcPTALDiCYZGXI%2FAzDZ06VM5rq7xXD185MRqamuss%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d8b53b21-4f21-4c18-ab95-8b6b31a84afe.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sJl%2BMYRcgb84J7yNZOW3powJbqYumJbzOr6n7W1SDtY%3D\",\r\n \"Id\": \"390e1a34-b1a2-49f5-9df5-533e8aad7a3b\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=87IpVvdQIS8VmwwUh8VbiwOei5ZtpU8Y%2FQl886GRQj4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=4A1fU0s1zWsc7OVGrTgEKGen%2F3sykTaa68KPERQ5kfY%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0d6f1c85-fcb9-4698-817c-73bd05281691.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=A%2B3V1L8L1X4Po1gqqDBwrDX1I230F2FxYEms%2F8CluBU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/f4074b68-b286-484e-b083-5d3e8363e6e5.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2tq%2F37I3cyXuEiSviesgMKYi1JoEzkP5nQihD%2BBBaww%3D\",\r\n \"Id\": \"5c4805e2-86f4-491f-9c10-ba6a2e267911\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/00d254ac-bcc3-42e5-90db-2c25f2a04cd5.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=z1Rb70VAsAP0NuRi%2BZx6xEnLAu2%2FtWshOQOKhs7D%2FSM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6439cb47-115a-4e44-8176-8de3a918646a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=GY1KLpWFdXDzbdCDr3r3YLIrQnshWFivNSuDvDW80BU%3D\",\r\n \"Id\": \"5eb6b22b-ffc5-43e0-9803-4e29da7d6234\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7579deff-c2e4-41cd-a9a4-e02a49db4f60.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ujuopqFiqaUa1ICgb8ljscn37mWlB3r5I4E%2F%2FyVHXOI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/365e164c-d7af-4863-ba77-a48558b8458b.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=YdFIVPf1H1wL5sa2RGujzBaVt8xis3EaQGQu0XH2Cqg%3D\",\r\n \"Id\": \"834154e8-f861-4219-b0aa-d87e2c255a42\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/12570dff-3822-41e4-9e17-1f4fea892d9b.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=J68jFrl%2FPOMQ%2BpM29zUX8UxSrf31tKJoX7pZrphtPXY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/c16b21b3-6ea2-4626-aa91-bcef76fa8871.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=glNyJIY2QAbAcky2dF05vVyezADt6OuRdBu%2FFNt5DcI%3D\",\r\n \"Id\": \"8c5bf021-e463-47d7-919d-58335de607c3\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=8PXQmasBPrJKDiOHLlpUc%2BxLeH3ZOT3Pd8jI%2FSOlj%2B4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=xKoTDx%2F8%2BmHsXmgq1SupUT0S6JOW%2BEkRGXIqljA%2FjEA%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/0a51d73f-4c70-4634-af86-5cc5b82042e8.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=iHKJ7horBhzzk9DpNyRqsKtAWK1Uv23sYPLx8LPMgJI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/ebb41248-2a4b-4894-bef4-152d82a688dc.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=E0qUTBIKwUUtgAu2zafBCB10s%2BDOBYWap9zNwiwI85c%3D\",\r\n \"Id\": \"90cf8d5e-b215-444e-b789-a3e7924716d8\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=5PtQgbIpCY5qk9Mib%2FHLFp0qFGuf2C6XxfIjH4RHlpA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=aiSPkSni8acvqz%2BDqDpaqi9KFvG9O%2Fo0vv3KIN%2FmLgk%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/300ffed8-2db3-4c64-9dc9-b7b16ecc1b08.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=1chXUKs8oMepb57ndP5zAysGSsE4BlcYo6gTRAKZxOY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/436a2ad1-86c9-4cca-8669-bfead5e7d1c4.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=2n%2FhSvhpaDrsNtR1Qx7jig1O%2BCYYKYM9dZkeDHbB2Fw%3D\",\r\n \"Id\": \"a79fbcbf-fa64-4d37-8098-eb31b713255d\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=I28L%2FK5TP8KlkfWJT1RS%2F3A1rjH38blU2o%2Fbk8RojwA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=eceYh8ADxLAH3k9P3CMfXLkHf1JVT4XXdPB%2BOI%2BTKq4%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/39dd5826-7a73-4a56-b0d7-c6c4aaed3cf3.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=AkWpiCZyzuD%2FxcWTm7yduEd2OcAkhuNhV%2BcpTYvyQik%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/a1bd2f0d-6316-4680-bd6c-f9db873abed3.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ffpeM%2BN8EghHjgOCkpeAoGzsztoK492aJ%2FrePZuMPNo%3D\",\r\n \"Id\": \"cba99c82-a138-4c4a-93c1-d7c75c096649\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=RPnIFAfS2e4vHauUluQEnnhKI8dVMbP%2B5CdwPpgslNM%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=dKWYcYRE2xZw2Vfp9ilOfsgbDD1nE0f6G0MJMSfdPXE%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6b566fe3-88ee-4421-a87d-f66df361f0d6.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=tDyk%2B2OAfTFLpfm3CHLbduHpZjTpyn9TON5RR%2Fhh7M8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/6ebee49b-9b8b-4371-b058-0468ddbf1257.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=sr5VM1r3qbzQ%2FUigoqqGye%2FkvOTe4rddEoj3%2B4MRj64%3D\",\r\n \"Id\": \"dcde01c2-6e75-42cc-a26a-c4f9b87281ab\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/be40d0a0-e1df-4e87-8b4b-373a5b00277f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=ARXtQrxckijoh1E8Q1%2Fo%2F%2B5HQNX%2Bpa7owZBb75U16T0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7fa93ba9-1bf0-4028-a79e-b1db1128c43a.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A44Z&sr=b&sp=r&sig=9P3DpdpS3v0t4iw6wDLzt3rb3s5CXuY0o0%2BWgueEmes%3D\",\r\n \"Id\": \"f3414418-5f96-4f2d-82ea-89276bf82227\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "11410"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "b69bd447aae99c65a61278a2e3d9d8d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:21:55 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=y%2FO5lD4KpYASNyyh5LXSFMsooXb3j04oGpdgykbIeo4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A03Z&sr=b&sp=r&sig=xObgseHegIC4XiBXwIhVcj3kx68Y%2FnuDLeDBstYo%2BR8%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "611"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "0f55ca20ef899697bfdcc5f34f0359ca"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:21:58 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=uSa0OyO4UT68QPloavZCEZK6GZA%2BgcnzxldvxMLiy70%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=GbejIboQ6ebbJ5tWpBqV0DilgP1b7FBWn5Zq4rj4r1M%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/83d8e64a-6225-4138-9d30-3c3b00510215.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=wLHunz58EdWo8inXERoTwJINd76Q0oyWVVTHKeELKnw%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/4d578ff4-9b86-4abd-a96e-c35ee261169a.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=FNZJPQmxO%2Fm2hTBGfG%2Fut3%2FIrZkIEypBBFGLu7ymyVc%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"Alias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default32.png?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=1qhSvqWogQYLO8IhLczCS4jzVR76oFNmec9Kw%2FYQ31g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/default.ico?se=2015-05-04T23%3A52%3A25Z&sr=b&sp=r&sig=YE34CnUol0eOUuSsIl1TJ5QPalHpp%2FK1g%2FUfbE2BqS0%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "3557"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "35e85864e8c490b3a3697dbdbd51d3c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:20 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"a6097b65-d038-41cf-947a-926b7c3dc722\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/cf366c04-66d0-4301-8f62-3b91896d3691.png?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=JmMEY9ZakuxaNNYCgOswgTE%2BWohXBMcOoO1QqVLdehE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvtest15rdcx.blob.core.windows.net/icons/9166963c-542b-4c8c-b51b-b3fdbc02995b.ico?se=2015-05-04T23%3A54%3A01Z&sr=b&sp=r&sig=rZxBTVhYaTsiTW9i6g6%2FWavwoDPN21TxhS9alv0U5Uc%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "609"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "a7e297ca2c049d9aa5b436227e71cf8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:23:57 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/bcbefc29-6de6-4e6e-b130-d92002966e2c?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvYmNiZWZjMjktNmRlNi00ZTZlLWIxMzAtZDkyMDAyOTY2ZTJjP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Id\": \"bcbefc29-6de6-4e6e-b130-d92002966e2c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "631"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "58855f72b51e9655a064b86154978f10"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:01 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/947b4846-a342-40c6-a1c0-8190867b51d7.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=oYZv5jaHd5w6J2kbmyuO7MNi2l4LJPv1GXq55YI0TQ8%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/3002a03c-98f6-45c9-bae0-76e9199c721d.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A49Z&sr=b&sp=r&sig=JlrS4j8tgZD7MgTunAzk5ms99Sv%2FENgD8EivZSzHvvY%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "747"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "194"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "419cbb93e16e9315ab040d08700b0273"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:04 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "764"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "200"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "9b86fe10fda4922da1d8b4f6a64de68a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:06 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "735"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "036619463e069ebbb1d095911bb5e3fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:10 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "751"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "601a6dc4372b93a39b93d0afda1b4658"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:15 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "744"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "193"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "298036e4e4ce9014ab0786c56b96edd9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:18 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/db0205ad-1d77-4087-b142-5d8065f76224?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvZGIwMjA1YWQtMWQ3Ny00MDg3LWIxNDItNWQ4MDY1Zjc2MjI0P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d7e9a292-cf0e-4a66-8777-056cc9ec3be7.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=rk5xSs4hRsdvh6vC21kJUvYI7%2FiguoqS2dK7JNoFl6o%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/5508ab86-9ab2-47e0-92aa-19785ccf3471.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A53Z&sr=b&sp=r&sig=hH%2FqX62tJk7z17lAnYuuhjU3jOk8n617tBC9cpqA2mU%3D\",\r\n \"Id\": \"db0205ad-1d77-4087-b142-5d8065f76224\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "648"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "8971af2234b29cc487fcfc6915b1d31f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:05 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/8c846901-f75a-4742-90d6-137223b52da7?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOGM4NDY5MDEtZjc1YS00NzQyLTkwZDYtMTM3MjIzYjUyZGE3P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/1e14fe40-569d-4ac8-ac7c-247c21be2e0f.png?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=%2F%2Fnf7CPOj%2F%2BrryJVTDEjTNJ9Ao9QGR9F5xPh%2BGxF2qU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/d140f629-6b13-42b9-bd94-703f6d8ad588.ico?sv=2012-02-12&se=2015-05-04T23%3A51%3A57Z&sr=b&sp=r&sig=Tu7KKEA%2B3tUQBBnT2juqKhYrRo9YCO%2Fv9Dsxe0rw3oQ%3D\",\r\n \"Id\": \"8c846901-f75a-4742-90d6-137223b52da7\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "619"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "33f18646622a95d0bfc56d3f2bc42d5d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:09 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/45bca3f6-056f-48e9-8f8c-ebcc5b929b55?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvNDViY2EzZjYtMDU2Zi00OGU5LThmOGMtZWJjYzViOTI5YjU1P2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/68970bf6-b70f-418b-811c-dd97b0027868.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=UAYHC%2Fg5Vi3BeJapohkE%2BLeMrXzBufulT9CCz8xMKWo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7d97719d-34aa-4b5b-a183-e672d379ba2e.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A01Z&sr=b&sp=r&sig=jtGNoD9YO6EcylKW%2FJH0%2Fw2YHeLI%2F5jhljGPOVY4ZBA%3D\",\r\n \"Id\": \"45bca3f6-056f-48e9-8f8c-ebcc5b929b55\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "635"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "ed149286dd4e97caaddc55dc9d72430d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:13 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/startMenuApps/9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3N0YXJ0TWVudUFwcHMvOWM2OTRiNmMtNWYyMi00ZDNiLWEyOGMtZGFlOThhNmFiNmMxP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/18abd99d-236a-4b01-8d94-0c6e14b7d8d6.png?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=yEFzV1xUpw7EoeM8RGMEO6WcX9EmBWTnSWf4I7JCF98%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu195320276rdcm.blob.core.windows.net/icons/7ea54f0e-8c3c-4015-a368-44957cec0e61.ico?sv=2012-02-12&se=2015-05-04T23%3A52%3A05Z&sr=b&sp=r&sig=TwjOyxRIq3x7JUZ53206mdU%2FL40XbYZaC4pcZxbBqBo%3D\",\r\n \"Id\": \"9c694b6c-5f22-4d3b-a28c-dae98a6ab6c1\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "628"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "e14659fd70f59e958308892c7a98c38f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:17 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "136197bb86c790a0bdb54d83a2d5cf37"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:23 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "1805f417ff199633af674262055e6ee3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:31 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": \"ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510\",\r\n \"UserList\": [\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user1@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user2@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"user3@contoso.com \",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "8d9fd191a1c6983997110132ff733eee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:35 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj0=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "25c9d5d4b79b95aa85301cc037e5edb4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:45 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "c47afdb3e52093668d7be31dfa81f795"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:25 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "fda0b9064af1947497799158f87040b6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:28 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "f6b4d0ccf1839159ac8b0721a71df9ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:31 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "4a89e8fb15a094329565799f8999852b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:33 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/Principals?api-version=2014-09-01&pagingToken=ae1c66a7-4126-46b2-9f90-b0d8b371dd48:0003bffdc3f8a510",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL1ByaW5jaXBhbHM/YXBpLXZlcnNpb249MjAxNC0wOS0wMSZwYWdpbmdUb2tlbj1hZTFjNjZhNy00MTI2LTQ2YjItOWY5MC1iMGQ4YjM3MWRkNDglM0EwMDAzYmZmZGMzZjhhNTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"ContinuationToken\": null,\r\n \"UserList\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "40"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "88ebb7a5793b9e5ba76b705939b2a262"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:37 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user1@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "67e3ffb32f209466a1980c014118a690"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:39 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user2@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "35740d352cea99f7b00b8385fdb0bfd8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:40 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL3NlY3VyaXR5UHJpbmNpcGFscz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"user3@contoso.com \"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "4298340cfaaf9b66a9b545ac73065958"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:43 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"c902b11e-9d1d-45eb-82eb-6424f82c784f\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c902b11e-9d1d-45eb-82eb-6424f82c784f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "2f25fa43b98093d9a99be1862fcdf718"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:46 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"f23d48cb-9512-4b27-a89a-990a6e7f068f\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"f23d48cb-9512-4b27-a89a-990a6e7f068f\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "37de324e3bb093638abe3d50a61d4034"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:49 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"fd337514-db28-4bec-b8d7-90843462755b\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"fd337514-db28-4bec-b8d7-90843462755b\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "a06b8f0f7b0893a1a67d7ab3a45e568a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:51 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"958f7c37-fc93-4a6b-9659-c18c70e81692\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"958f7c37-fc93-4a6b-9659-c18c70e81692\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "f53f2deb9312976b9fd0334a24dab46d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:52 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uL2FwcGxpY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"4f069c3c-f3a8-40a1-bc3e-d00df57805ae\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "436b9a9762c49c7cb73d3fdd39148401"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:22:55 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/collections/CICollection?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvY29sbGVjdGlvbnMvQ0lDb2xsZWN0aW9uP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-clouddv-tracking-id": [
+ "7ff70b85-a66a-408a-a7b6-3d2b947f210e"
+ ],
+ "x-remoteapp-operation-tracking-id": [
+ "7ff70b85-a66a-408a-a7b6-3d2b947f210e"
+ ],
+ "x-ms-request-id": [
+ "5dcdac48b48c9f71a72cfc4d52156020"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:23:59 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "5fbf3a553cc4966294cd5a89755796dd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:29:01 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "4d880bd681c19e6da59e610d8c5c42c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:34:04 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "10a818d8f61c995baa0205f4a355c5bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:39:06 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "1d51b83e712d9935819dc3a5b78ede3a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:44:12 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "0eb999375dba9392b7d22f22b1807f07"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:49:14 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "e6763bbd194c9f0fae7955b31760d3db"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:54:17 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "1306d801dbc291329efbafee242cb888"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 04 May 2015 23:59:18 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdst15/operationResults/7ff70b85-a66a-408a-a7b6-3d2b947f210e?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHN0MTUvb3BlcmF0aW9uUmVzdWx0cy83ZmY3MGI4NS1hNjZhLTQwOGEtYTdiNi0zZDJiOTQ3ZjIxMGU/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.RemoteApp.RemoteAppManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "81"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "21f939fe830a991386d0f93a304e1264"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 05 May 2015 00:04:20 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc"
+ }
+}
\ No newline at end of file
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj
new file mode 100644
index 000000000000..ebaebece48c3
--- /dev/null
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Commands.RemoteAppScenarioTest.csproj
@@ -0,0 +1,132 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {C2FA83A2-8668-49DD-A1A0-0359653571CA}
+ Library
+ Properties
+ Commands.RemoteAppScenarioTests
+ Commands.RemoteAppScenarioTests
+ v4.5
+ 512
+ ..\..\..\
+ true
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ False
+ ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll
+
+
+ False
+ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll
+
+
+ False
+ ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.1.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll
+
+
+ False
+ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll
+
+
+ ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll
+
+
+ False
+ ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
+
+
+ ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll
+
+
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll
+
+
+ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.3\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll
+
+
+ False
+ ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll
+
+
+ ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll
+
+
+ ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll
+
+
+ False
+ ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll
+
+
+
+
+ False
+ ..\..\..\..\..\..\..\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll
+
+
+
+
+ ..\..\..\packages\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Extensions.dll
+
+
+ ..\..\..\packages\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Primitives.dll
+
+
+
+
+
+
+
+
+ ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll
+
+
+
+
+
+
+
+ {c1bda476-a5cc-4394-914d-48b0ec31a710}
+ Commands.ScenarioTests.Common
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs
new file mode 100644
index 000000000000..2a5116eb3cb1
--- /dev/null
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/CreateCloudCollection.cs
@@ -0,0 +1,64 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Common.Authentication;
+using Microsoft.Azure.Test;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.IO;
+using System.Linq;
+using System.Management.Automation;
+using Xunit;
+
+
+namespace Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests
+{
+
+ public class CreateCloudCollection
+ {
+ protected Collection RunPowerShellTest(params string[] scripts)
+ {
+ using (UndoContext context = UndoContext.Current)
+ {
+ context.Start(TestUtilities.GetCallingClass(1), TestUtilities.GetCurrentMethodName(2));
+ List modules = null;
+ Collection pipeLineObjects = null;
+ Collection result = new Collection();
+ EnvironmentSetupHelper helper = new EnvironmentSetupHelper();
+
+ modules = Directory.GetFiles(@"..\..\Scripts", "*.ps1").ToList();
+ helper.SetupSomeOfManagementClients();
+ helper.SetupEnvironment(AzureModule.AzureServiceManagement);
+ helper.SetupModules(AzureModule.AzureServiceManagement, modules.ToArray());
+
+ pipeLineObjects = helper.RunPowerShellTest(scripts);
+ foreach (PSObject obj in pipeLineObjects)
+ {
+ T item = LanguagePrimitives.ConvertTo(obj);
+ result.Add(item);
+ }
+ return result;
+ }
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRemoteAppEndToEnd()
+ {
+ System.Environment.SetEnvironmentVariable("rdfeNameSpace", "rdsr8");
+ RunPowerShellTest("TestRemoteAppEndToEnd");
+ }
+ }
+}
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1 b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1
new file mode 100644
index 000000000000..f3da3f38ce72
--- /dev/null
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/Scripts/RemoteAppCI_Test.ps1
@@ -0,0 +1,255 @@
+
+function PollingInterval()
+{
+ if ($env:AZURE_TEST_MODE -eq 'Playback')
+ {
+ $pollingIntervalSecs = 5
+ }
+ else
+ {
+ $pollingIntervalSecs = 60 * 5
+ }
+ $pollingIntervalSecs
+}
+
+function Assert([ScriptBlock] $Condition)
+{
+ if ((& $Condition) -eq $false)
+ {
+ throw "Assertion Failed $($Condition.ToString()): $(Get-PSCallStack | Out-String)"
+ }
+}
+
+<#
+ This will pick a location, image, billing plan and create a ARA App collection and returns the collection name.
+#>
+function CreateCloudCollection([string] $Collection)
+{
+
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ [PSObject[]] $locationList = Get-AzureRemoteAppLocation | % Name
+ Assert -Condition {$locationList -ne $null -or $locationList.Count -lt 1}
+
+ [PSObject[]] $templateImageList = Get-AzureRemoteAppTemplateImage | ? {$_.Type -eq 'Platform' -and $_.OfficeType -ne 'Office365'}
+ Assert -Condition {$templateImageList -ne $null -or $templateImageList.Count -lt 1}
+
+ $templateImage = $null
+ $locCounter = 0
+ $imageCounter = 0
+ $found = $false
+ do
+ {
+ $location = $locationList[$locCounter]
+ do
+ {
+ $templateImage = $templateImageList[$imageCounter]
+ if ($templateImage.RegionList -contains $location)
+ {
+ $found = $true
+ }
+
+ $imageCounter++
+ } while ($imageCounter -lt $templateImageList.Count -and -not $found)
+
+ $locCounter++
+ } while ($locCounter -lt $locationList.Count -and -not $found)
+
+ Assert -Condition {$found}
+
+ $billingPlans = Get-AzureRemoteAppPlan | % Name
+ $billingPlan = $billingPlans[0]
+ Assert -Condition {-not [String]::IsNullOrWhiteSpace($billingPlan)}
+
+ Write-Verbose "New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $($templateImage.Name) -Plan $billingPlan -Location $location -Description 'Test Collection'"
+ $trackIdCollection = New-AzureRemoteAppCollection -CollectionName $Collection -ImageName $templateImage.Name -Plan $billingPlan -Location $location -Description 'Test Collection' -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ do
+ {
+ Write-Verbose "Waiting current time: $(Get-Date)"
+ sleep -Seconds (PollingInterval)
+
+ $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Write-Verbose "Collection state: $($collectionState.Status)"
+ } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending')
+
+ Assert -Condition {$collectionState.Status -eq 'Success'}
+ Write-Verbose "$($MyInvocation.MyCommand.name) succsssfully created this collection $Collection"
+}
+
+
+<#
+ This will pick a 5 applications to publish, verifies that they've been published and returns the Publishing Info.
+#>
+function PublishRemoteApplications([string] $Collection)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $numOfApps = 5
+ $availablePrograms = Get-AzureRemoteAppStartMenuProgram $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Assert({$availablePrograms.Count -ge $numOfApps})
+
+ $currentPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ $programsToPublish = $availablePrograms[0..2]
+ $programsToPublish += $availablePrograms[$($availablePrograms.Count-2)..$($availablePrograms.Count-1)]
+ Assert({$programsToPublish.Count -eq $numOfApps})
+ $applications = $programsToPublish | % {
+ Publish-AzureRemoteAppProgram -CollectionName $Collection -StartMenuAppId $_.StartMenuAppId -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ $publishedPrograms = Get-AzureRemoteAppProgram -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Assert -Condition {($publishedPrograms.Count - $currentPrograms.Count) -eq $numOfApps}
+
+ $applications | % {Write-Verbose "($([IO.FileInfo]$_.ApplicationVirtualPath))"}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+
+ $applications
+}
+
+
+<#
+ This will pick a add the given users to the collection.
+#>
+function AddRemoteAppUsers([string] $Collection, [string[]] $msaUsers)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ $msaUsers | % {
+ Add-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ $currentUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Assert -Condition {($previousUsers.Count + $msaUsers.Count) -eq $currentUsers.Count}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+
+ $currentUsers | % {Write-Verbose "Username: $($_.Name),and Type: $($_.UserIdType)" }
+}
+
+<#
+ This will remove the given users from the collection.
+#>
+function RemoveRemoteAppUsers([string] $Collection, [string[]] $msaUsers)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $previousUsers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ $msaUsers | % {
+ Remove-AzureRemoteAppUser -CollectionName $Collection -Type MicrosoftAccount -UserUpn $_ -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ $currentUssers = Get-AzureRemoteAppUser -CollectionName $Collection -ErrorAction SilentlyContinue -ErrorVariable er
+ Assert -Condition {$currentUsers -eq $null}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+}
+
+<#
+ This will unpublish the specified applications from the collection.
+#>
+function UnpublishRemoteApplications([string] $Collection, [string[]] $applications)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $applications | % {
+ Unpublish-AzureRemoteAppProgram -CollectionName $Collection -Alias $_ -ErrorAction SilentlyContinue -ErrorVariable er | Out-Null
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+ }
+
+ Sleep 60 # seconds
+ $remainingApps = Get-AzureRemoteAppProgram $Collection | % Alias
+
+ $failedToUnpublish = $remainingApps | ? {$applications -contains $_}
+ Assert -Condition {$failedToUnpublish -eq $null}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+}
+
+<#
+ This delete the collection
+#>
+function DeleteRemoteAppCollection([string] $Collection)
+{
+ Write-Verbose "Entering $($MyInvocation.MyCommand.name)"
+ $trackIdCollection = Remove-AzureRemoteAppCollection -CollectionName $Collection
+
+ do
+ {
+ Write-Verbose "Waiting current time: $(Get-Date)"
+ sleep -Seconds (PollingInterval)
+
+ $collectionState = Get-AzureRemoteAppOperationResult -TrackingId $trackIdCollection.TrackingId -ErrorAction SilentlyContinue -ErrorVariable er
+ if ($? -eq $false)
+ {
+ throw $er
+ }
+
+ Write-Verbose "Collection state: $($collectionState.Status)"
+ } while ($collectionState.Status -eq 'InProgress' -or $collectionState.Status -eq 'Pending')
+
+ Assert -Condition {$collectionState.Status -eq 'Success'}
+ Write-Verbose "$($MyInvocation.MyCommand.name) completed succsssfully"
+}
+
+
+function TestRemoteAppEndToEnd()
+{
+ $collection = 'CICollection'
+ $msaUsers = "auxtm259@live.com", "auxtm260@live.com", "auxtm261@live.com"
+ Set-Variable -Name VerbosePreference -Value Continue
+
+ Write-Verbose "Starting current time: $(Get-Date)"
+ CreateCloudCollection $collection
+ $applications = PublishRemoteApplications $collection
+ AddRemoteAppUsers $collection $msaUsers
+ RemoveRemoteAppUsers $collection $msaUsers
+ UnpublishRemoteApplications $collection ($applications | % {$_.ApplicationAlias})
+ DeleteRemoteAppCollection $collection
+}
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json
new file mode 100644
index 000000000000..b012adbd57da
--- /dev/null
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.RemoteAppTests.CreateCloudCollection/TestRemoteAppEndToEnd.json
@@ -0,0 +1,2046 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/locations?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9sb2NhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"DisplayName\": \"West US\",\r\n \"Name\": \"West US\"\r\n },\r\n {\r\n \"DisplayName\": \"East US\",\r\n \"Name\": \"East US\"\r\n },\r\n {\r\n \"DisplayName\": \"East Asia\",\r\n \"Name\": \"East Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"Southeast Asia\",\r\n \"Name\": \"Southeast Asia\"\r\n },\r\n {\r\n \"DisplayName\": \"North Europe\",\r\n \"Name\": \"North Europe\"\r\n },\r\n {\r\n \"DisplayName\": \"West Europe\",\r\n \"Name\": \"West Europe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "bc63553bb95fa57db8cd5045aa171781"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:26:45 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/templateImages?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC90ZW1wbGF0ZUltYWdlcz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Id\": \"9a920fd4-f697-4e98-9c48-671642c39888\",\r\n \"Name\": \"asuploaded\",\r\n \"NumberOfLinkedCollections\": 1,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": null,\r\n \"RegionList\": [\r\n \"West US\"\r\n ],\r\n \"Sas\": \"?sv=2012-02-12&sr=b&si=9a920fd4-f697-4e98-9c48-671642c39888&sig=s1Hf1e2aKJV76DTAoYsfdsuSop3A1OxJTD%2BHfzXIEnw%3D\",\r\n \"SasExpiry\": \"2015-05-25T21:32:34.508Z\",\r\n \"Size\": 42949673472,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 0,\r\n \"UploadCompleteTime\": \"2015-05-22T21:59:16.541Z\",\r\n \"UploadSetupTime\": \"2015-05-22T21:32:34.714Z\",\r\n \"UploadStartTime\": \"2015-05-22T21:58:06.791Z\",\r\n \"Uri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/goldimages/9a920fd4-f697-4e98-9c48-671642c39888.vhd\"\r\n },\r\n {\r\n \"Id\": \"d650edb6-718c-4e62-9fd7-fa244ad23230\",\r\n \"Name\": \"uitestimported\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": null,\r\n \"RegionList\": [\r\n \"West US\"\r\n ],\r\n \"Sas\": null,\r\n \"SasExpiry\": \"1900-01-01T00:00:00Z\",\r\n \"Size\": 136367309312,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 0,\r\n \"UploadCompleteTime\": \"2015-05-22T22:48:18.717Z\",\r\n \"UploadSetupTime\": \"2015-05-22T22:33:39.841Z\",\r\n \"UploadStartTime\": \"2015-05-22T22:46:55.234Z\",\r\n \"Uri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/goldimages/d650edb6-718c-4e62-9fd7-fa244ad23230.vhd\"\r\n },\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\",\r\n \"Name\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-05-14T23:02:10.156Z\",\r\n \"UploadSetupTime\": \"2015-05-14T23:02:10.156Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n },\r\n {\r\n \"Id\": \"ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\",\r\n \"Name\": \"Windows Server RDSHwO365P on Windows Server 2012 R2\",\r\n \"NumberOfLinkedCollections\": 0,\r\n \"OfficeType\": 0,\r\n \"PathOnClient\": \"\",\r\n \"RegionList\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"Sas\": \"\",\r\n \"SasExpiry\": \"1899-12-31T16:00:00-08:00\",\r\n \"Size\": 0,\r\n \"Status\": 8,\r\n \"TrialOnly\": false,\r\n \"Type\": 1,\r\n \"UploadCompleteTime\": \"2015-05-13T20:37:23.415Z\",\r\n \"UploadSetupTime\": \"2015-05-13T20:37:23.415Z\",\r\n \"UploadStartTime\": \"1899-12-31T16:00:00-08:00\",\r\n \"Uri\": \"\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2573"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "18079624a242a83cb6542dad91bfd08e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:26:47 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/BillingPlans?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9CaWxsaW5nUGxhbnM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"19d0f014-6ead-4a5c-bd2b-ee5ae6c7f5c2\",\r\n \"PlanName\": \"Standard\"\r\n },\r\n {\r\n \"AddOns\": \"\",\r\n \"CoresPerUser\": 0.25,\r\n \"MinimumBilledUserCount\": 20,\r\n \"PlanId\": \"493d3553-a732-4764-b18c-a239982fdbec\",\r\n \"PlanName\": \"Basic\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "262"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "ee65114e7743a1e3a08c43c20edc0886"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:26:49 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services?service=rdsr8&action=register",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcz9zZXJ2aWNlPXJkc3I4JmFjdGlvbj1yZWdpc3Rlcg==",
+ "RequestMethod": "PUT",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ConflictError\r\n The resource type rdsr8 is already registered for this subscription.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "230"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "9e516e5ed0bdafdda683cce8950fb769"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:26:53 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 409
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections?PopulateOnly=false&api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucz9Qb3B1bGF0ZU9ubHk9ZmFsc2UmYXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"Name\": \"CICollection\",\r\n \"Description\": \"Test Collection\",\r\n \"TemplateImageName\": \"Windows Server RDSHwO13P on Windows Server 2012 R2\",\r\n \"BillingPlanName\": \"Standard\",\r\n \"ReadyForPublishing\": false,\r\n \"Mode\": 1,\r\n \"Region\": \"West US\",\r\n \"PublishedApplications\": [],\r\n \"AllowedPrincipals\": []\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "309"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-clouddv-tracking-id": [
+ "21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4"
+ ],
+ "x-remoteapp-operation-tracking-id": [
+ "21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4"
+ ],
+ "x-ms-request-id": [
+ "c9e82e35282ba9c0956b74f1baaa37d1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:26:57 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "933b38d4739aa6869248a0ad6e449280"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:31:59 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "5f044d4e0afaa4f0b3d4f3f18209d74a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:37:02 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "88"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "d1653e5995b8a9b3adaa70f326815276"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:42:05 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/21b77d13-ca1b-4f9f-9c66-e8dfea7a23d4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzLzIxYjc3ZDEzLWNhMWItNGY5Zi05YzY2LWU4ZGZlYTdhMjNkND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"CreateFreshDeployment_Domain\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "2ad482e88defa95b9077f36899190038"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:08 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcz9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/a297f2a6-a708-4aa4-af73-1f5901db22bf.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=PRDpiH6AOQut60shbRW9AqO1DdynH%2F3WQJHIJtwzrbI%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/17a5c61f-98b8-4e7b-9810-d008afd16474.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=3tLcFDKEA6QIKwX5VGMtRjYFyFImD1r8JlyZR3QyLos%3D\",\r\n \"Id\": \"230e0b5b-45f3-480a-b8d8-18b7e431d42e\",\r\n \"Name\": \"OneNote\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\ONENOTE.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/7bd109ee-f5ab-4127-91cf-371fc43940b6.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=NXNnbysN%2FtrOVeOLOB0r3M%2BOO0gL%2BVJ7SFqjOY7519c%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/40c2cfac-f2db-48aa-94d7-0a1bf499927c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=YGrFS%2Flk2sJ0rCwIR0oipkHV%2F1lD2n3NLhQAEdnlQEA%3D\",\r\n \"Id\": \"2736d2ce-0afe-4085-acb7-19cd214a2b76\",\r\n \"Name\": \"PowerShell\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c3f85baf-8640-404c-bf13-96174e7f80ba.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=KOnmOctNs2bLYyt%2FcBaSxSKA5r0h5tbZtHF9yEUUf6Y%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/12384e20-0252-4ad1-b87a-512a4539a5c3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=5LaNtBI49i3pkhwX2%2F%2F%2BQSv1nSU3zM8g71Wb7TB2N9o%3D\",\r\n \"Id\": \"2d97c080-59ba-4ce5-818a-4f7a7b46705f\",\r\n \"Name\": \"MediaPlayer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Windows Media Player\\\\wmplayer.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dfbb262b-a7c2-45d7-a21f-352239bec608.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=bsR660CobFGzsYme18FCydseVAQg8Bpk%2BCjH6AgVq0g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aa357ad8-c2c9-4486-8da2-5d42c89b9e22.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=uYDAc8iPqYoe6Hn%2FH%2B4sdmRrmZDwV%2FnA8DJoOaGAj6Y%3D\",\r\n \"Id\": \"3c84069d-8c27-4f8b-9ce6-3e0832f53586\",\r\n \"Name\": \"Outlook\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\OUTLOOK.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/ef8ad6a9-59ba-4e63-a994-496ded66e6fe.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=vEsxhpEIUKj8z8hMdqMjHaZ6aKN9YbAaKM%2B1Df4JhEk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/970bfc6b-8782-4d6f-af5e-631ca11a2b69.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=zgl7tI6u9MKTyMdYTtjnvJNFzXK7DjG0aqosn0gqFwY%3D\",\r\n \"Id\": \"56dc7a9c-ece0-4c31-94d8-b58526637dee\",\r\n \"Name\": \"InternetExplorer\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Internet Explorer\\\\iexplore.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/1bc40e92-d6f9-4a8b-a0c8-09ab4e53bef8.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=qF5mJ5tBVxru32r8MHJGUGtOpyH3GNRIVpdelfEE2sQ%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/f9387193-24f9-4cf9-b90f-7b123c183382.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=V6jWcNrL7IVMtncc5X6ChU5tTpVgjOJrub7fVZhlDwY%3D\",\r\n \"Id\": \"5f8b9797-3f6c-45cf-85e9-7e7bdb9dd9ca\",\r\n \"Name\": \"Lync\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\lync.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=7%2B8szZi3a72M%2FyKXrLzNhnNJUXQ98gqDa629N2KJ%2BiU%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=PArQNcufYWu99zj5OWqcWVfzSjuUwsgfyyZJD1bWGVg%3D\",\r\n \"Id\": \"608ec71e-4f30-476d-8f81-fe38638bb0ab\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=FSQlO8EtPsfUx1wL%2FdMNFfNT%2FtEkCeTPQjW0gaVZ4Sg%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=G7KYBjUDfh1c7JB2sjimmhIu0FMl4DS2EBH7jZKuwAo%3D\",\r\n \"Id\": \"68850412-3592-4cf8-a9e3-41e845e6f9cd\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=EZyWroR4WBurhDjfGAGzQeeez99QXVlbIkK0izJqjnY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=5U3YZfgA2BxXaUECp93YbyoyvY1Z9Rj6Mj63CPNlaS0%3D\",\r\n \"Id\": \"830072f3-84cb-4b63-84ce-1e1c904d04bf\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/7692feba-5784-4148-93b1-d2b6a7914bd0.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=suI1%2F38txvkPSAe7%2BRGj5D4cFSICwRHhLMi1kYdM5yA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d3839470-5113-4200-9534-13a6b50e0ba7.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=yGoKsogq8yYSnEd%2FJJv8oTbDZXhidjBZsnJmQVSjIfw%3D\",\r\n \"Id\": \"83541a22-179e-4ded-a042-af9557da897a\",\r\n \"Name\": \"Project\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINPROJ.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=97l55zEK8vUWpsk03B%2Fi6Mr7%2BpFEgPKmZSx5Ki937no%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=qd9Mp8jyq820ik%2FZbMeGgiHXb5IGJEkQHsvcY4Sox3I%3D\",\r\n \"Id\": \"8f1ced01-5081-41b4-9d4c-3dc2a33ac92c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/ec86ce2b-d9cd-4db6-87ef-fa1636fd684d.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=I2gHBFQb1snT%2FMY0ZKGYbETWA1DxT%2BHg07CblXzxByE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9b7d39ce-32d5-4ab1-9e2d-d7665c899203.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=kntB9p2cqBG5gxQ7TtOWwauLQ5zZLGawLmj%2BJ%2B4GnJA%3D\",\r\n \"Id\": \"9758f483-ee6a-4622-ba22-494291ee6851\",\r\n \"Name\": \"PowerPoint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\POWERPNT.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/b32a6a1d-2279-4c34-9ebd-4835678a584d.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=1pezOgkS2R122G1ZK5%2F%2FUo1ZU048nRU7CNNP0vuE4dY%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/554d7882-09d9-4868-b912-ed9de6e89d90.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=kZR9nRQNV5jKeeMlWLWB%2FHzJLwsFZKKWzJefKGoYpYk%3D\",\r\n \"Id\": \"c140cb4f-6118-4171-960a-3c9f6b8a8ab1\",\r\n \"Name\": \"Paint\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/31ce03f1-a670-4c7c-990b-d19896e530f3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=GLIsL7T0FZobDGHgCapK5v%2Fic1%2FUF3Nhw6OaKvQkP00%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/24b66c12-1b28-4922-b730-67543ba3934e.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=N45%2BUIGiiG6YmN4bO5ZkK4ZpUUboeb2AN2nmGMO2OQQ%3D\",\r\n \"Id\": \"d6ce5365-a323-4d4c-b00a-3f68f0c1adad\",\r\n \"Name\": \"Excel\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\EXCEL.EXE\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/617f7b95-56bf-4609-bcd5-9205c9857945.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=jzmuXA1qRYBcIzVJ2d96Vl4EDPUjv%2Br7ADV4NUH8M8Q%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/3afa0cd6-5f61-423d-ae62-29dc10f0b2b1.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=K0kqVZNdZi1Xucqa1BLAzuKOpTvI1AKRgqcWjYfCBEc%3D\",\r\n \"Id\": \"dee0ec9e-3138-4be8-8402-01317456675d\",\r\n \"Name\": \"PowerShellISE\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\WindowsPowerShell\\\\v1.0\\\\powershell_ise.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c047fc28-136c-4f5a-a20b-fd76284e7f11.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=CfXi17wShsPyJ0%2FPA%2BsN6r%2F8WWNm9NjpX63OR6m02Bk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/03ee9238-80da-4226-b1f7-b3782f43bc51.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=7i%2FRTB3ybrRVYGBex%2FQ%2Fyu2YOHXJTk2LzG24akAOhsY%3D\",\r\n \"Id\": \"e16dcecb-bf16-4e69-8f37-2606136ce69c\",\r\n \"Name\": \"cmd\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\cmd.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=RXeY%2FF2HyTeFWXv3TMtSaBtG%2BDotF5Fc1LrDKtcDTB8%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=Vzlc1I6ucMnVCU7kmyhs6pRAV2HaB0YsAXWRLLs4HB8%3D\",\r\n \"Id\": \"f3b817b0-92ea-4136-8100-72e7607aefcc\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c69883a9-66a1-45eb-ba12-8d59830e9240.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=Lc%2BeCURv9jyzoZXHGGaQ5ezLgK6dg5j%2B0tBB85EgYf4%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/2744f590-73b4-4829-bc13-27589bc0344b.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A11Z&sr=b&sp=r&sig=IrToen2BCwiRtvYpEiuj9gkY7CU%2B2U53a0WtsPTpUi4%3D\",\r\n \"Id\": \"f46658df-aed3-4ae4-beea-05cd3f4f5888\",\r\n \"Name\": \"OneDriveBusiness\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\GROOVE.EXE\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "11392"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "038d739cfe3cad1b818147ed1d7dda4f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:10 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A17%3A13Z&sr=b&sp=r&sig=X7Gm2ipWyd0b6bjD%2F37HuxDhcSp9jBt90BZDtTw4hZ0%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A17%3A13Z&sr=b&sp=r&sig=WC7gPLE2bb27zkiaUZFj83F8EdJWAsqMrcLPB5HbzOY%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "603"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "a3d250f5eb88af0589cdaca37ec40d4a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:13 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n },\r\n {\r\n \"Alias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n },\r\n {\r\n \"Alias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n },\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=xYezFUVkv9Q08M9nsYsxzcMioUCWDdJr7We%2BuOQ7N2I%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=qaT9sy%2FaXQIxfvGaCa7a2OxaoRiOU97LQvjLWGhDeFY%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n },\r\n {\r\n \"Alias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n },\r\n {\r\n \"Alias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": null,\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default32.png?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7tFa230qqOjsXGqMs17el%2B49Isl7lnEBUcaMTHf4rns%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/default.ico?se=2015-06-08T03%3A17%3A37Z&sr=b&sp=r&sig=7H9h8mymVtorm9P18nBmr0DdJGk4qYeXho7IxGXYSXA%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "3459"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "e84579b5e25aa110a7c95f661f14cc7c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:36 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Alias\": \"95b5c89c-9184-475a-8d61-d3634b480da1\",\r\n \"AvailableToUsers\": true,\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvred8rdcx.blob.core.windows.net/icons/529ca55c-bd41-4986-90cc-dfbab0a27e93.png?se=2015-06-08T03%3A19%3A14Z&sr=b&sp=r&sig=ROq6oQAVWRpJ8%2FbVBGUdBtWgTuXwk4yV5uPouYWWHLk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvred8rdcx.blob.core.windows.net/icons/c6a5f646-ffb4-469f-af01-929a18f65de7.ico?se=2015-06-08T03%3A19%3A14Z&sr=b&sp=r&sig=4wTuQy8JjOQ47DYILoJoqwpnt%2FaeDJZg%2FFJRdzuDXgw%3D\",\r\n \"Name\": \"Paint\",\r\n \"Status\": 1,\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\mspaint.exe\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "607"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "9eeae89ccbb9a36cab1965aa64ebdcdc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:49:13 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/8f1ced01-5081-41b4-9d4c-3dc2a33ac92c?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy84ZjFjZWQwMS01MDgxLTQxYjQtOWQ0Yy0zZGMyYTMzYWM5MmM/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=FOhhEEUFipDnm457JwOQ9EOVgeeU6SoWJbhixUoeBXk%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=tT2IQmlmc0G0AQxUBwCc4qlfQCr02hpCnmZ1RpIDRuU%3D\",\r\n \"Id\": \"8f1ced01-5081-41b4-9d4c-3dc2a33ac92c\",\r\n \"Name\": \"Access\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "629"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "0f93770a500ba432898fbec091e98aba"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:14 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/83dd48ee-426b-4f7e-af52-55520652372c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=tT2IQmlmc0G0AQxUBwCc4qlfQCr02hpCnmZ1RpIDRuU%3D\",\r\n \"Name\": \"Access\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/dd8e633f-2913-49dc-af83-2d2d29914889.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A15Z&sr=b&sp=r&sig=FOhhEEUFipDnm457JwOQ9EOVgeeU6SoWJbhixUoeBXk%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "745"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\MSACCESS.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "194"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "e8ce02bcb43aa537a1085fe14fe11544"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:17 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=7OtSgLJTsbyYYaLjzgj6Sk8%2FynuhNlwdAsbatHq7gMk%3D\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=JU72h4lMbqzgrASIOPMc5uWEQb1Cwaijx8PMV%2FKV83g%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "764"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "200"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "3bd1ef610959a7da97895c51460bf6bf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:21 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=st7NqJ915wiY3TgSQfiZAMU5Pgn6zR1ahJ4293P2%2Bm4%3D\",\r\n \"Name\": \"Calculator\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=kftd68hYKBuLBqoouXb%2FxvoHypcTGCaaqahinoXsaGE%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "725"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "6a8ec669b46eaba18bccfeb0924c98d8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:25 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=4nr50D2rAXhN29oF2QOZkz0%2BfVQGIr9xpXSg0%2F46ruc%3D\",\r\n \"Name\": \"Visio\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=gvARbA0x1qjb%2BzA%2Fz1yPQ1pyU0qHsvrw2siEZyv8mGA%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "749"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "288a9649fbb6a846bb035ecdeb59f73f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:30 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"AvailableToUsers\": true,\r\n \"Alias\": \"\",\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=RrRNQcD3LsY6%2By449%2FJkyyDX1S%2FxWhWgbFkgHfrRv4w%3D\",\r\n \"Name\": \"Word\",\r\n \"Status\": 0,\r\n \"IconPngUris\": {\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": \"32\",\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=GfzVWkaNoB3awAxc9nJQfVSJcLMuL0eq%2FSUJqLfmKSo%3D\"\r\n }\r\n ]\r\n },\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "750"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"ApplicationVirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\",\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "193"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "119976734ff7a1b68531ca6d0ccb68a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:34 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/f3b817b0-92ea-4136-8100-72e7607aefcc?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy9mM2I4MTdiMC05MmVhLTQxMzYtODEwMC03MmU3NjA3YWVmY2M/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/884e061e-efd4-4444-b007-c64be8c54fc3.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=JU72h4lMbqzgrASIOPMc5uWEQb1Cwaijx8PMV%2FKV83g%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/e1478308-2ae4-49ef-a369-087dc512ad79.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A19Z&sr=b&sp=r&sig=7OtSgLJTsbyYYaLjzgj6Sk8%2FynuhNlwdAsbatHq7gMk%3D\",\r\n \"Id\": \"f3b817b0-92ea-4136-8100-72e7607aefcc\",\r\n \"Name\": \"Adobe Reader XI\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files (x86)\\\\Adobe\\\\Reader 11.0\\\\Reader\\\\AcroRd32.exe\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "648"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "3134e1c48a6dac2eae6b97d0eb844dd9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:18 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/830072f3-84cb-4b63-84ce-1e1c904d04bf?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy84MzAwNzJmMy04NGNiLTRiNjMtODRjZS0xZTFjOTA0ZDA0YmY/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/d8363c25-ffb3-4e5a-b747-d5fe86d3a371.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=kftd68hYKBuLBqoouXb%2FxvoHypcTGCaaqahinoXsaGE%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c7c6d895-0a35-45d5-91d6-a91a88d84ee9.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A23Z&sr=b&sp=r&sig=st7NqJ915wiY3TgSQfiZAMU5Pgn6zR1ahJ4293P2%2Bm4%3D\",\r\n \"Id\": \"830072f3-84cb-4b63-84ce-1e1c904d04bf\",\r\n \"Name\": \"Calculator\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Windows\\\\System32\\\\calc.exe\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "609"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "206fb46fee2fa9e1804e4baf24b4c2b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:23 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/608ec71e-4f30-476d-8f81-fe38638bb0ab?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy82MDhlYzcxZS00ZjMwLTQ3NmQtOGY4MS1mZTM4NjM4YmIwYWI/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/aaa17678-1e8f-42b6-b741-3a87761078ce.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=gvARbA0x1qjb%2BzA%2Fz1yPQ1pyU0qHsvrw2siEZyv8mGA%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/9d4c1680-9b19-499f-85b1-f93b14dc034c.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A28Z&sr=b&sp=r&sig=4nr50D2rAXhN29oF2QOZkz0%2BfVQGIr9xpXSg0%2F46ruc%3D\",\r\n \"Id\": \"608ec71e-4f30-476d-8f81-fe38638bb0ab\",\r\n \"Name\": \"Visio\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\VISIO.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "633"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "2ba39d455544a99aa6a1ac22cdd2cc88"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:28 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/startMenuApps/68850412-3592-4cf8-a9e3-41e845e6f9cd?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc3RhcnRNZW51QXBwcy82ODg1MDQxMi0zNTkyLTRjZjgtYTllMy00MWU4NDVlNmY5Y2Q/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"CommandLineArguments\": \"\",\r\n \"IconPngUris\": [\r\n {\r\n \"Key\": 32,\r\n \"Value\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/5de824e9-efaf-468f-8eda-e4edf9cf437c.png?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=GfzVWkaNoB3awAxc9nJQfVSJcLMuL0eq%2FSUJqLfmKSo%3D\"\r\n }\r\n ],\r\n \"IconUri\": \"https://cdvwu215454498rdcm.blob.core.windows.net/icons/c9e9165c-50cd-4615-bd66-86b9086633f3.ico?sv=2012-02-12&se=2015-06-08T03%3A17%3A33Z&sr=b&sp=r&sig=RrRNQcD3LsY6%2By449%2FJkyyDX1S%2FxWhWgbFkgHfrRv4w%3D\",\r\n \"Id\": \"68850412-3592-4cf8-a9e3-41e845e6f9cd\",\r\n \"Name\": \"Word\",\r\n \"VirtualPath\": \"%SYSTEMDRIVE%\\\\Program Files\\\\Microsoft Office\\\\Office15\\\\WINWORD.EXE\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "634"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "6c0370fca78caa47871bd6f1dd78f585"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:32 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "a208276d892ea43181657034f5d65edd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:38 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm259@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm260@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm261@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "373"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "afcca5c818fca6fc9344e5d0082bb8a2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:48 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm259@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm260@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n },\r\n {\r\n \"Status\": 1,\r\n \"User\": {\r\n \"AadObjectId\": \"\",\r\n \"Description\": \"\",\r\n \"Name\": \"auxtm261@live.com\",\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1\r\n }\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "373"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "86e460b2708ea75498faf39539c8435e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:51 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "afb760b517caac0cb68cf874c025400f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:48:00 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm259@live.com\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "c1e9ccf3ba8aa54fad9d888421b3ac98"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:40 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm260@live.com\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "0d5ce9b23238ab3db80687c3b2898908"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:43 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "POST",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm261@live.com\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "5577ae91be44a4dea9a9cdb9e44ba090"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:47 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm259@live.com\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "69db66c4e172a676bdd4f9034552b65d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:53 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm260@live.com\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "52e2e4ab9195a4a0ab937c37c6608c8a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:55 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/securityPrincipals?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vc2VjdXJpdHlQcmluY2lwYWxzP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n {\r\n \"SecurityPrincipalType\": 0,\r\n \"UserIdType\": 1,\r\n \"Name\": \"auxtm261@live.com\"\r\n }\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "102"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"FailedSecurityPrincipals\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "31"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "7933bad7b940af7baac9804ae8e11fdf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:47:57 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"c1b2cafb-ed91-4eb5-aebe-5542a035eb14\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "0a44063f0dbfa960a8f7c020168a9477"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:48:02 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"1320b99e-bc90-429d-be8c-318ee72708cc\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"1320b99e-bc90-429d-be8c-318ee72708cc\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "9ac88eacf703ab81822ce98a6cfca8a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:48:04 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"bb4e8fa0-1154-4b66-b96d-0e8ac5373724\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "6a1b72f1c874a7ccaa03ee2473c7c94b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:48:06 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"5500af8a-41a8-46c4-8360-b1e462a97a72\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"5500af8a-41a8-46c4-8360-b1e462a97a72\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "d9968a0c2a7ea4eca55355fabcd3d714"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:48:09 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection/applications?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24vYXBwbGljYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "[\r\n \"6500e321-e09a-4945-8b01-d16a635a4ab9\"\r\n]",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "46"
+ ],
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "[\r\n {\r\n \"ApplicationAlias\": \"6500e321-e09a-4945-8b01-d16a635a4ab9\",\r\n \"ApplicationVirtualPath\": null,\r\n \"ErrorMessage\": null,\r\n \"Success\": true\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "126"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "556b34616306ab8eb54b3b143b480bba"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:48:10 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/collections/CICollection?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9jb2xsZWN0aW9ucy9DSUNvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAxNC0wOS0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-clouddv-tracking-id": [
+ "d58af98f-969e-4fa9-89ab-49ddf10abaf4"
+ ],
+ "x-remoteapp-operation-tracking-id": [
+ "d58af98f-969e-4fa9-89ab-49ddf10abaf4"
+ ],
+ "x-ms-request-id": [
+ "2085d292a7f3af1fb0e31064879f5610"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:49:15 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "e150d91cb220a4e0b0f2cbf92cc30870"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:54:17 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "3a911c9a9749afffb3f4b18c1f504e8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 02:59:20 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "2092522f3b48a0bd81a8d1be413e7f98"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 03:04:22 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"InProgress\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "84"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "2aa3fff09301a922ab8e23e0b49e615d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 03:09:24 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/30da001a-1a9e-48a1-8b77-e5abcfe38bdc/services/rdsr8/operationResults/d58af98f-969e-4fa9-89ab-49ddf10abaf4?api-version=2014-09-01",
+ "EncodedRequestUri": "LzMwZGEwMDFhLTFhOWUtNDhhMS04Yjc3LWU1YWJjZmUzOGJkYy9zZXJ2aWNlcy9yZHNyOC9vcGVyYXRpb25SZXN1bHRzL2Q1OGFmOThmLTk2OWUtNGZhOS04OWFiLTQ5ZGRmMTBhYmFmND9hcGktdmVyc2lvbj0yMDE0LTA5LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "Accept": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-version": [
+ "2014-08-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.RemoteApp.RemoteAppManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Description\": \"DeleteExistingDeployment\",\r\n \"ErrorDetails\": null,\r\n \"Status\": \"Success\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "81"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "uswest"
+ ],
+ "x-ms-request-id": [
+ "fa8ffb89e9f3a9bf90a77c24dab268b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 03:14:26 GMT"
+ ],
+ "Server": [
+ "1.0.6190.5955",
+ "(rd_rdfe_n.150416-1241)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "30da001a-1a9e-48a1-8b77-e5abcfe38bdc"
+ }
+}
\ No newline at end of file
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs
index d0473cbac97a..bb970ba556ca 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Collection/NewAzureRemoteAppCollection.cs
@@ -12,6 +12,7 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
using Microsoft.WindowsAzure.Commands.RemoteApp;
@@ -24,11 +25,9 @@ namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
using System.Net;
using System.Threading.Tasks;
- [Cmdlet(VerbsCommon.New, "AzureRemoteAppCollection", DefaultParameterSetName = NoDomain), OutputType(typeof(TrackingResult))]
+ [Cmdlet(VerbsCommon.New, "AzureRemoteAppCollection", DefaultParameterSetName = "AllParameterSets"), OutputType(typeof(TrackingResult))]
public class NewAzureRemoteAppCollection : RdsCmdlet
{
- private const string DomainJoined = "DomainJoined";
- private const string NoDomain = "NoDomain";
private const string AzureVNet = "AzureVNet";
[Parameter(Mandatory = true,
@@ -53,62 +52,54 @@ public class NewAzureRemoteAppCollection : RdsCmdlet
)]
public string Plan { get; set; }
- [Parameter(Mandatory = true,
+ [Parameter(Mandatory = false,
Position = 3,
ValueFromPipelineByPropertyName = true,
- ParameterSetName = NoDomain,
HelpMessage = "Location in which this collection will be created. Use Get-AzureRemoteAppLocation to see the locations available."
)]
public string Location { get; set; }
- [Parameter(
+ [Parameter(Mandatory = true,
ValueFromPipelineByPropertyName = true,
+ ParameterSetName = AzureVNet,
HelpMessage = "The name of the RemoteApp or Azure VNet to create the collection in."
)]
- [Parameter(Mandatory = true, Position = 3, ParameterSetName = DomainJoined)]
- [Parameter(Mandatory = true, Position = 3, ParameterSetName = AzureVNet)]
public string VNetName { get; set; }
- [Parameter(Mandatory = false,
+ [Parameter(Mandatory = true,
ValueFromPipelineByPropertyName = true,
ParameterSetName = AzureVNet,
- HelpMessage = "For Azure VNets only, a comma-separated list of DNS servers for the VNet."
+ HelpMessage = "For Azure VNets only, the name of the subnet."
)]
- [ValidateNotNullOrEmpty]
- public string DnsServers { get; set; }
+ public string SubnetName { get; set; }
- [Parameter(Mandatory = true,
- Position = 6,
+ [Parameter(Mandatory = false,
ValueFromPipelineByPropertyName = true,
ParameterSetName = AzureVNet,
- HelpMessage = "For Azure VNets only, the name of the subnet."
+ HelpMessage = "For Azure VNets only, a comma-separated list of DNS servers for the VNet."
)]
[ValidateNotNullOrEmpty]
- public string SubnetName { get; set; }
+ public string DnsServers { get; set; }
- [Parameter(
+ [Parameter(Mandatory = false,
ValueFromPipelineByPropertyName = true,
+ ParameterSetName = AzureVNet,
HelpMessage = "The name of the on-premise domain to join the RD Session Host servers to."
)]
- [Parameter(Mandatory = true, Position = 4, ParameterSetName = DomainJoined)]
- [Parameter(Mandatory = true, Position = 4, ParameterSetName = AzureVNet)]
[ValidatePattern(DomainNameValidatorString)]
public string Domain { get; set; }
- [Parameter(
+ [Parameter(Mandatory = false,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "The users credentials that has permission to add computers to the domain."
- )]
- [Parameter(Mandatory = true, Position = 5, ParameterSetName = DomainJoined)]
- [Parameter(Mandatory = true, Position = 5, ParameterSetName = AzureVNet)]
+ ParameterSetName = AzureVNet,
+ HelpMessage = "The credentials of a user who has permission to add computers to the domain. The user's domain must be supplied as an FQDN, (e.g. home.local\\username or username@home.local).")]
public PSCredential Credential { get; set; }
[Parameter(Mandatory = false,
ValueFromPipelineByPropertyName = true,
+ ParameterSetName = AzureVNet,
HelpMessage = "The name of your organizational unit to join the RD Session Host servers, e.g. OU=MyOu,DC=MyDomain,DC=ParentDomain,DC=com. Attributes such as OU, DC, etc. must be in uppercase."
)]
- [Parameter(ParameterSetName = DomainJoined)]
- [Parameter(ParameterSetName = AzureVNet)]
[ValidatePattern(OrgIDValidatorString)]
public string OrganizationalUnit { get; set; }
@@ -152,39 +143,33 @@ public override void ExecuteCmdlet()
OperationResultWithTrackingId response = null;
- switch (ParameterSetName)
+ if (ParameterSetName == "AzureVNet")
{
- case DomainJoined:
- case AzureVNet:
+ details.VNetName = VNetName;
+ details.SubnetName = SubnetName;
+ ValidateCustomerVNetParams(details.VNetName, details.SubnetName);
+
+ if (DnsServers != null)
{
- creds = Credential.GetNetworkCredential();
- details.VNetName = VNetName;
+ details.DnsServers = DnsServers.Split(new char[] { ',' });
+ }
- if (SubnetName != null)
+ if (!String.IsNullOrWhiteSpace(Domain) || Credential != null)
+ {
+ if (String.IsNullOrWhiteSpace(Domain) || Credential == null)
{
- if (!IsFeatureEnabled(EnabledFeatures.azureVNet))
- {
- ErrorRecord er = RemoteAppCollectionErrorState.CreateErrorRecordFromString(
- string.Format(Commands_RemoteApp.LinkAzureVNetFeatureNotEnabledMessage),
- String.Empty,
- Client.Account,
- ErrorCategory.InvalidOperation
- );
-
- ThrowTerminatingError(er);
- }
-
- details.SubnetName = SubnetName;
- ValidateCustomerVNetParams(details.VNetName, details.SubnetName);
-
- if (DnsServers != null)
- {
- details.DnsServers = DnsServers.Split(new char[] { ',' });
- }
-
- details.Region = Location;
+ // you supplied either a domain or a cred, but not both.
+ ErrorRecord er = RemoteAppCollectionErrorState.CreateErrorRecordFromString(
+ Commands_RemoteApp.InvalidADArguments,
+ String.Empty,
+ Client.Collections,
+ ErrorCategory.InvalidArgument
+ );
+
+ ThrowTerminatingError(er);
}
+ creds = Credential.GetNetworkCredential();
details.AdInfo = new ActiveDirectoryConfig()
{
DomainName = Domain,
@@ -192,13 +177,20 @@ public override void ExecuteCmdlet()
UserName = creds.UserName,
Password = creds.Password,
};
- break;
}
- case NoDomain:
- default:
+ }
+ else
+ {
+ if (String.IsNullOrEmpty(details.Region))
{
- details.Region = Location;
- break;
+ ErrorRecord er = RemoteAppCollectionErrorState.CreateErrorRecordFromString(
+ Commands_RemoteApp.InvalidLocationArgument,
+ String.Empty,
+ Client.Collections,
+ ErrorCategory.InvalidArgument
+ );
+
+ ThrowTerminatingError(er);
}
}
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs
index d020b43b18ca..770ed185b232 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.Designer.cs
@@ -168,6 +168,15 @@ internal static string ImportImageFeatureNotEnabledError {
}
}
+ ///
+ /// Looks up a localized string similar to Both domain name and credentials must be specified.
+ ///
+ internal static string InvalidADArguments {
+ get {
+ return ResourceManager.GetString("InvalidADArguments", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Invalid Argument SubnetName: {0} not found.
///
@@ -186,6 +195,15 @@ internal static string InvalidArgumentVNetNameNotFoundMessageFormat {
}
}
+ ///
+ /// Looks up a localized string similar to Location must be supplied for Cloud only environtments.
+ ///
+ internal static string InvalidLocationArgument {
+ get {
+ return ResourceManager.GetString("InvalidLocationArgument", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Invalid Argument: OS Image type is {0}. It must be Windows..
///
@@ -385,7 +403,7 @@ internal static string TemplateImageUploadFailedMessage {
}
///
- /// Looks up a localized string similar to Uploading Template Image.
+ /// Looks up a localized string similar to Uploading template image.
///
internal static string TemplateImageUploadingStatusMessage {
get {
@@ -448,7 +466,7 @@ internal static string UploadScriptFailedError {
}
///
- /// Looks up a localized string similar to Upload RemoteApp Template Image.
+ /// Looks up a localized string similar to Upload RemoteApp template image.
///
internal static string UploadTemplateImageJobDescriptionMessage {
get {
@@ -474,6 +492,24 @@ internal static string UseageNotFound {
}
}
+ ///
+ /// Looks up a localized string similar to https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/.
+ ///
+ internal static string VNetDeprecatedUrl {
+ get {
+ return ResourceManager.GetString("VNetDeprecatedUrl", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This cmdlet {0} has been deprecated. See x {1}.
+ ///
+ internal static string VNetDeprecateed {
+ get {
+ return ResourceManager.GetString("VNetDeprecateed", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to This operation will reset the shared key for the VNet's VPN device. This will interrupt connectivity to the on-premises network until you configure the VPN device to use the new shared key..
///
@@ -502,7 +538,7 @@ internal static string VNetTimeout {
}
///
- /// Looks up a localized string similar to Waiting for Storage verification to complete.
+ /// Looks up a localized string similar to Waiting for storage verification to complete.
///
internal static string WaitingForStorageVerificationToCompleteMessage {
get {
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj
index a1b23a799b2b..e00d06cb1639 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.csproj
@@ -214,6 +214,7 @@
+
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx
index 38f3f3822cb1..49ce0516c82d 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Commands.RemoteApp.resx
@@ -196,7 +196,7 @@
Upload template image failed.
- Uploading Template Image
+ Uploading template image
Upload template image completed successfully.
@@ -211,7 +211,7 @@
Template image upload script failed
- Upload RemoteApp Template Image
+ Upload RemoteApp template image
This operation will reset the shared key for the VNet's VPN device. This will interrupt connectivity to the on-premises network until you configure the VPN device to use the new shared key.
@@ -220,7 +220,7 @@
Resetting the VPN shared key on {0}
- Waiting for Storage verification to complete
+ Waiting for storage verification to complete
Pending upload template image
@@ -255,6 +255,18 @@
Get usage details
+
+ Both domain name and credentials must be specified
+
+
+ Location must be supplied for Cloud only environtments
+
+
+ https://azure.microsoft.com/documentation/articles/remoteapp-migratevnet/
+
+
+ This cmdlet {0} has been deprecated. See x {1}
+
Please save your work and logoff. You will be logged off automatically after {0} seconds.
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs
index 61a6ecf33dd8..a7cef1a5674e 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/SecurityPrincipals/GetAzureRemoteAppUser.cs
@@ -40,6 +40,8 @@ public class GetAzureRemoteAppUser : RdsCmdlet
[ValidateNotNullOrEmpty()]
public string UserUpn { get; set; }
+ private bool showAllUsers = false;
+
public class ServicePrincipalComparer : IComparer
{
public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second)
@@ -67,71 +69,81 @@ public int Compare(SecurityPrincipalInfo first, SecurityPrincipalInfo second)
}
}
- public override void ExecuteCmdlet()
+ private bool ProccessUsers(SecurityPrincipalInfoListResult response)
{
- SecurityPrincipalInfoListResult response = null;
ConsentStatusModel model = null;
- bool showAllUsers = String.IsNullOrWhiteSpace(UserUpn);
bool found = false;
- if (showAllUsers == false)
+ if (ExactMatch)
{
- CreateWildcardPattern(UserUpn);
- }
+ SecurityPrincipalInfo userconsent = null;
- response = CallClient(() => Client.Principals.List(CollectionName), Client.Principals);
+ userconsent = response.SecurityPrincipalInfoList.FirstOrDefault(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User &&
+ String.Equals(user.SecurityPrincipal.Name, UserUpn, StringComparison.OrdinalIgnoreCase));
- if (response != null && response.SecurityPrincipalInfoList != null)
- {
- if (ExactMatch)
+ if (userconsent == null)
{
- SecurityPrincipalInfo userconsent = null;
-
- userconsent = response.SecurityPrincipalInfoList.FirstOrDefault(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User &&
- String.Equals(user.SecurityPrincipal.Name, UserUpn, StringComparison.OrdinalIgnoreCase));
+ WriteErrorWithTimestamp("User: " + UserUpn + " does not exist in collection " + CollectionName);
+ found = false;
+ }
+ else
+ {
+ model = new ConsentStatusModel(userconsent);
+ WriteObject(model);
+ found = true;
+ }
+ }
+ else
+ {
+ IEnumerable spList = null;
- if (userconsent == null)
- {
- WriteErrorWithTimestamp("User: " + UserUpn + " does not exist in collection " + CollectionName);
- found = false;
- }
- else
- {
- model = new ConsentStatusModel(userconsent);
- WriteObject(model);
- found = true;
- }
+ if (showAllUsers)
+ {
+ spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User);
}
else
{
- IEnumerable spList = null;
+ spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User &&
+ Wildcard.IsMatch(user.SecurityPrincipal.Name));
+ }
- if (showAllUsers)
- {
- spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User);
- }
- else
- {
- spList = response.SecurityPrincipalInfoList.Where(user => user.SecurityPrincipal.SecurityPrincipalType == PrincipalType.User &&
- Wildcard.IsMatch(user.SecurityPrincipal.Name));
- }
+ if (spList != null && spList.Count() > 0)
+ {
+ List userConsents = new List(spList);
+ IComparer comparer = new ServicePrincipalComparer();
- if (spList != null && spList.Count() > 0)
+ userConsents.Sort(comparer);
+ foreach (SecurityPrincipalInfo consent in userConsents)
{
- List userConsents = new List(spList);
- IComparer comparer = new ServicePrincipalComparer();
-
- userConsents.Sort(comparer);
- foreach (SecurityPrincipalInfo consent in spList)
- {
- model = new ConsentStatusModel(consent);
- WriteObject(model);
- }
- found = true;
+ model = new ConsentStatusModel(consent);
+ WriteObject(model);
}
+ found = true;
}
}
+ return found;
+ }
+ public override void ExecuteCmdlet()
+ {
+ SecurityPrincipalInfoListResult response = null;
+ bool found = false;
+
+ showAllUsers = String.IsNullOrWhiteSpace(UserUpn);
+
+ if (showAllUsers == false)
+ {
+ CreateWildcardPattern(UserUpn);
+ }
+
+ // You must pass in an empty string to this call. After that pass in the token returned by the previous call
+ response = CallClient(() => Client.Principals.List(CollectionName), Client.Principals);
+
+ if (response != null && response.SecurityPrincipalInfoList != null)
+ {
+ found = ProccessUsers(response);
+ }
+
if (!found && !showAllUsers)
{
WriteVerboseWithTimestamp(String.Format("User '{0}' is not assigned to Collection '{1}'.", UserUpn, CollectionName));
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs
index 83654b6a80b3..5256aead97e5 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/TemplateImage/NewAzureRemoteAppTemplateImage.cs
@@ -463,22 +463,7 @@ public override void ExecuteCmdlet()
}
case AzureVmUpload:
{
- if (IsFeatureEnabled(EnabledFeatures.goldImageImport))
- {
- ImportTemplateImage();
- }
- else
- {
- ErrorRecord er = RemoteAppCollectionErrorState.CreateErrorRecordFromString(
- string.Format(Commands_RemoteApp.ImportImageFeatureNotEnabledError),
- String.Empty,
- Client.Account,
- ErrorCategory.InvalidOperation
- );
-
- ThrowTerminatingError(er);
- }
-
+ ImportTemplateImage();
break;
}
}
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs
index adc01ec98493..229cc4d6b26e 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVnet.cs
@@ -20,7 +20,7 @@
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
[Cmdlet(VerbsCommon.Get, "AzureRemoteAppVNet"), OutputType(typeof(VNetResult))]
- public class GetAzureRemoteAppVNet : RdsCmdlet
+ public class GetAzureRemoteAppVNet : VNetDeprecated
{
[Parameter(Mandatory = false,
Position = 0,
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs
index b953d2b2f7c1..11e0220f47a3 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDevice.cs
@@ -19,7 +19,7 @@
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
[Cmdlet(VerbsCommon.Get, "AzureRemoteAppVpnDevice"), OutputType(typeof(Vendor))]
- public class GetAzureRemoteAppVpnDevice : RdsCmdlet
+ public class GetAzureRemoteAppVpnDevice : VNetDeprecated
{
[Parameter(Mandatory = true,
Position = 0,
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs
index d4dba54d3ee9..f23c2235f6f6 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs
@@ -20,7 +20,7 @@
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
[Cmdlet(VerbsCommon.Get, "AzureRemoteAppVpnDeviceConfigScript"), OutputType(typeof(String))]
- public class GetAzureRemoteAppVpnDeviceConfigScript : RdsCmdlet
+ public class GetAzureRemoteAppVpnDeviceConfigScript : VNetDeprecated
{
[Parameter(Mandatory = true,
Position = 0,
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs
index 543ab0663af3..2a368dbeddc9 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/NewAzureRemoteAppVnet.cs
@@ -20,7 +20,7 @@
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
[Cmdlet(VerbsCommon.New, "AzureRemoteAppVNet"), OutputType(typeof(TrackingResult))]
- public class NewAzureRemoteAppVNet : RdsCmdlet
+ public class NewAzureRemoteAppVNet : VNetDeprecated
{
[Parameter(Mandatory = true,
ValueFromPipeline = true,
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs
index b0c2127e1d98..c8ff6c9a15a6 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/RemoveAzureAppVnet.cs
@@ -19,7 +19,7 @@
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
[Cmdlet(VerbsCommon.Remove, "AzureRemoteAppVNet"), OutputType(typeof(TrackingResult))]
- public class RemoveAzureRemoteAppVNet : RdsCmdlet
+ public class RemoveAzureRemoteAppVNet : VNetDeprecated
{
[Parameter(Mandatory = true,
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs
index 95b46336382d..8620682d829e 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/ResetAzureRemoteAppVpnSharedKey.cs
@@ -22,7 +22,7 @@ namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
[Cmdlet(VerbsCommon.Reset, "AzureRemoteAppVpnSharedKey", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(VNet))]
- public class ResetAzureRemoteAppVpnSharedKey : RdsCmdlet
+ public class ResetAzureRemoteAppVpnSharedKey : VNetDeprecated
{
[Parameter(Mandatory = true,
Position = 0,
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs
index abf7fadb0f0b..8cbf6f39f87b 100644
--- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/SetAzureRemoteAppVnet.cs
@@ -20,7 +20,7 @@
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
{
[Cmdlet(VerbsCommon.Set, "AzureRemoteAppVNet"), OutputType(typeof(TrackingResult))]
- public class SetAzureRemoteAppVNet : RdsCmdlet
+ public class SetAzureRemoteAppVNet : VNetDeprecated
{
[Parameter(Mandatory = true,
ValueFromPipeline = true,
diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs
new file mode 100644
index 000000000000..f55adc085959
--- /dev/null
+++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/VNetDeprecated.cs
@@ -0,0 +1,35 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.WindowsAzure.Commands.RemoteApp;
+using Microsoft.WindowsAzure.Management.RemoteApp;
+using Microsoft.WindowsAzure.Management.RemoteApp.Models;
+using System;
+using System.Management.Automation;
+
+namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
+{
+ public class VNetDeprecated : RdsCmdlet
+ {
+ protected override void ProcessRecord()
+ {
+ string message = String.Format(Commands_RemoteApp.VNetDeprecateed,
+ this.GetType().Name, Commands_RemoteApp.VNetDeprecatedUrl);
+
+ WriteErrorWithTimestamp(Commands_RemoteApp.VNetTimeout);
+
+ throw new RemoteAppServiceException(message, ErrorCategory.InvalidOperation);
+ }
+ }
+}