From 9b53526d8475c7054105a3db155aa48b85bdc88c Mon Sep 17 00:00:00 2001 From: iadgovuser1 Date: Fri, 21 Dec 2018 12:48:58 -0500 Subject: [PATCH] Add more Watson URLs for telemetry --- Examples/Microsoft/WindowsTelemetry/README.md | 12 +++++++++--- .../WindowsTelemetryConnectivity.psm1 | 6 ++++++ 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Examples/Microsoft/WindowsTelemetry/README.md b/Examples/Microsoft/WindowsTelemetry/README.md index 834964b..2d70b09 100644 --- a/Examples/Microsoft/WindowsTelemetry/README.md +++ b/Examples/Microsoft/WindowsTelemetry/README.md @@ -18,9 +18,15 @@ | | | Diagnostic/telemetry data for Windows 10 1607 and later. | | | | Diagnostic/telemetry data for Windows 10 1703 and later. | | | | Used by applications, such as Windows Connected User Experiences and Telemetry component and Windows Insider Program, to dynamically update their configuration. | -| | | Windows Error Reporting (WER) data. | -| | | Online Crash Analysis (OCA) data. | -| | | OneDrive application for Windows 10 data. | +| | | Windows Error Reporting (WER). | +| | | Windows Error Reporting (WER) Central US 1. | +| | | Windows Error Reporting (WER) Central US 2. | +| | | Windows Error Reporting (WER) East US 1. | +| | Windows Error Reporting (WER) East US 2. | +| | | Windows Error Reporting (WER) West US 1. | +| | | Windows Error Reporting (WER) West US 2. | +| | | Online Crash Analysis (OCA). | +| | | OneDrive application for Windows 10. | ## References diff --git a/Examples/Microsoft/WindowsTelemetry/WindowsTelemetryConnectivity.psm1 b/Examples/Microsoft/WindowsTelemetry/WindowsTelemetryConnectivity.psm1 index 32a98cd..4385738 100644 --- a/Examples/Microsoft/WindowsTelemetry/WindowsTelemetryConnectivity.psm1 +++ b/Examples/Microsoft/WindowsTelemetry/WindowsTelemetryConnectivity.psm1 @@ -57,6 +57,12 @@ Function Get-WindowsTelemetryConnectivity() { $data.Add(@{ TestUrl = 'https://v20.vortex-win.data.microsoft.com/collect/v1'; ExpectedStatusCode = 400; Description = 'Diagnostic/telemetry data for Windows 10 1703 and later.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) $data.Add(@{ TestUrl = 'https://settings-win.data.microsoft.com'; ExpectedStatusCode = 404; Description = 'Used by applications, such as Windows Connected User Experiences and Telemetry component and Windows Insider Program, to dynamically update their configuration.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) $data.Add(@{ TestUrl = 'https://watson.telemetry.microsoft.com'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) + $data.Add(@{ TestUrl = 'https://ceuswatcab01.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting Central US 1.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) + $data.Add(@{ TestUrl = 'https://ceuswatcab02.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting Central US 2.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) + $data.Add(@{ TestUrl = 'https://eaus2watcab01.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting East US 1.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) + $data.Add(@{ TestUrl = 'https://eaus2watcab02.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting East US 2.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) + $data.Add(@{ TestUrl = 'https://weus2watcab01.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting West US 1.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) + $data.Add(@{ TestUrl = 'https://weus2watcab02.blob.core.windows.net'; ExpectedStatusCode = 404; Description = 'Windows Error Reporting West US 2.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) $data.Add(@{ TestUrl = 'https://oca.telemetry.microsoft.com'; ExpectedStatusCode = 404; Description = 'Online Crash Analysis.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose }) $data.Add(@{ TestUrl = 'https://vortex.data.microsoft.com/collect/v1'; ExpectedStatusCode = 400; Description = 'OneDrive app for Windows 10.'; PerformBluecoatLookup=$PerformBluecoatLookup; Verbose=$isVerbose })