HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Windows/SystemApps/Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy/js/environment.js
//
// Copyright (C) Microsoft. All rights reserved.
//
/// <disable>JS2085.EnableStrictMode</disable>
"use strict";
var CloudExperienceHost;
(function (CloudExperienceHost) {
    class Environment {
        static getTarget() {
            var retValue;
            var regValue = CloudExperienceHostAPI.Environment.target;
            switch (regValue) {
                case 0:
                    retValue = CloudExperienceHost.TargetEnvironment.PROD;
                    break;
                case 1:
                    retValue = CloudExperienceHost.TargetEnvironment.INT;
                    break;
                default:
                    retValue = CloudExperienceHost.TargetEnvironment.PROD;
                    break;
            }
            return retValue;
        }
        static hasInternetAccess() {
            let hasInternetAccess = false;
            let connectionProfile = Windows.Networking.Connectivity.NetworkInformation.getInternetConnectionProfile();
            if (connectionProfile && (connectionProfile.getNetworkConnectivityLevel() === Windows.Networking.Connectivity.NetworkConnectivityLevel.internetAccess)) {
                if (connectionProfile.isWwanConnectionProfile && Environment._isOobeScenario() && !Environment.hasDataMartBeenChecked) {
                    Environment.wwanConnectionIsDataMartSim = Environment.isDataMartSim();
                    Environment.hasDataMartBeenChecked = true;
                }
                hasInternetAccess = !Environment.wwanConnectionIsDataMartSim;
            }
            return hasInternetAccess;
        }
        static hasNetworkConnectivity() {
            let hasNetworkConnectivity = false;
            let ConnectionProfiles = Windows.Networking.Connectivity.NetworkInformation.getConnectionProfiles();
            if (ConnectionProfiles.length !== 0) {
                for (var i = 0; i < ConnectionProfiles.length; i++) {
                    if (ConnectionProfiles[i].getNetworkConnectivityLevel() > Windows.Networking.Connectivity.NetworkConnectivityLevel.none) {
                        hasNetworkConnectivity = true;
                        break;
                    }
                }
            }
            return hasNetworkConnectivity;
        }
        static isDataMartSim() {
            let isDmSim = false;
            try {
                let modem = Windows.Networking.NetworkOperators.MobileBroadbandModem.getDefault();
                if (modem) {
                    let iccid = modem.deviceInformation.simIccId;
                    isDmSim = CloudExperienceHostAPI.UtilStaticsCore.isDataMartSim(iccid);
                }
            }
            catch (exception) {
            }
            return isDmSim;
        }
        static getLicensingPoliciesAsync(namesJson) {
            return new WinJS.Promise(function (completeDispatch, errorDispatch, progressDispatch) {
                let names = JSON.parse(namesJson);
                let results = new Array(names.length);
                for (let i = 0; i < names.length; i++) {
                    results[i] = CloudExperienceHostAPI.UtilStaticsCore.getLicensingPolicyValue(names[i]);
                }
                completeDispatch(JSON.stringify(results));
            });
        }
        static getAnalyticsInfoSystemPropertiesAsync(itemsJson) {
            let items = JSON.parse(itemsJson);
            return Windows.System.Profile.AnalyticsInfo.getSystemPropertiesAsync(items).then((result) => {
                return JSON.stringify(result);
            });
        }
        static isNetworkRequiredAsync() {
            return new WinJS.Promise(function (completeDispatch, errorDispatch, progressDispatch) {
                let result = CloudExperienceHostAPI.UtilStaticsCore.isNetworkRequired;
                completeDispatch(result);
            });
        }
        static GetWiFiHostedApplicationArguments() {
            let propertySet = new Windows.Foundation.Collections.PropertySet();
            if (CloudExperienceHost.Storage.SharableData.getValue("retailDemoEnabled")) {
                propertySet.insert("IsNetworkRequired", false);
            }
            else {
                propertySet.insert("IsNetworkRequired", CloudExperienceHostAPI.UtilStaticsCore.isNetworkRequired);
            }
            return propertySet;
        }
        static GetWiFiHostedApplicationArgumentsDesktop() {
            let propertySet = Environment.GetWiFiHostedApplicationArguments();
            if (CloudExperienceHostAPI.FeatureStaging.isOobeFeatureEnabled("DesktopLiteOobe")) {
                // network app will call NetworkUX::NetworkUXMode App::GetNetworkUXModeFromLaunchArgs to get this parameter
                propertySet.insert("HostedApplicationLaunchArgument", (CloudExperienceHost.getContext().personality === CloudExperienceHost.TargetPersonality.LiteWhite) ? "desktopLite" : "desktopInclusive");
            }
            return propertySet;
        }
        static GetWiFiHostedApplicationArgumentsWcosDefaults() {
            let propertySet = new Windows.Foundation.Collections.PropertySet();
            propertySet.insert("NetworkUXMode", "Windows.Core");
            propertySet.insert("IsNetworkRequired", true);
            return propertySet;
        }
        static GetWiFiHostedApplicationArgumentsHub() {
            let propertySet = new Windows.Foundation.Collections.PropertySet();
            propertySet.insert("IsNetworkRequired", true);
            // Reference to NetworkUXMode enum defined in NetworkUX xaml app 
            propertySet.insert("NetworkUXMode", "Desktop");
            return propertySet;
        }
        static GetWiFiHostedApplicationArgumentsDesktopReconnect() {
            let propertySet = this.GetWiFiHostedApplicationArgumentsDesktop();
            // Insert isReconnect to inform wifi app when coming back to the page for a second time 
            propertySet.insert("IsReconnect", true);
            return propertySet;
        }
        static GetWiFiHostedApplicationArgumentsWcosReconnect() {
            let propertySet = this.GetWiFiHostedApplicationArgumentsWcosDefaults();
            // Insert isReconnect to inform wifi app when coming back to the page for a second time 
            propertySet.insert("IsReconnect", true);
            return propertySet;
        }
        static getMachineModel() {
            return CloudExperienceHostAPI.Environment.machineModel;
        }
        static getManufacturer() {
            return CloudExperienceHostAPI.Environment.manufacturer;
        }
        static getPlatform() {
            var retValue;
            var regValue = CloudExperienceHostAPI.Environment.platform;
            switch (regValue) {
                case 3:
                    retValue = CloudExperienceHost.TargetPlatform.DESKTOP;
                    break;
                case 5:
                    retValue = CloudExperienceHost.TargetPlatform.XBOX;
                    break;
                case 6:
                    retValue = CloudExperienceHost.TargetPlatform.SURFACEHUB;
                    break;
                case 10:
                    retValue = CloudExperienceHost.TargetPlatform.HOLOGRAPHIC;
                    break;
                default:
                    // For non-legacy TargetPlatform values (any nturtl > 10)
                    // getPlatform() should reflect the CloudExperienceHostAPI.Environment.platform value directly
                    // Instead of looping back to a predefined CloudExperienceHost.TargetPlatform friendly name.
                    // (core.ts may define a friendly name for an nturtl value if required for CXH app code)
                    retValue = "CloudExperienceHost.Platform." + regValue;
                    break;
            }
            return retValue;
        }
        static getWindowsProductId() {
            return CloudExperienceHostAPI.Environment.windowsProductId.toString();
        }
        static getEdition() {
            return CloudExperienceHostAPI.Environment.edition;
        }
        static isRemoteDesktopSession() {
            var isRemoteDesktopSession = false;
            var interactiveSession = Windows.System.RemoteDesktop.InteractiveSession;
            if (interactiveSession && interactiveSession.isRemote) {
                isRemoteDesktopSession = true;
            }
            return isRemoteDesktopSession;
        }
        static isSpeechDisabled() {
            let navMesh = CloudExperienceHost.getNavMesh();
            return navMesh && navMesh.getSpeechDisabled();
        }
        static _isOobeScenario() {
            let isOobe = false;
            try {
                if (Environment.getPlatform() == CloudExperienceHost.TargetPlatform.XBOX) {
                    isOobe = !Windows.Xbox.System.Internal.XConfig.XConfigProperties.isOobeCompleted;
                }
                else {
                    isOobe = CloudExperienceHost.getContext &&
                        CloudExperienceHost.getContext() &&
                        (CloudExperienceHost.getContext().host.toLowerCase() === "frx");
                }
            }
            catch (e) {
            }
            return isOobe;
        }
        static getTelemetryLevel() {
            return CloudExperienceHostAPI.OobeSettingsManagerStaticsCore.getTelemetryLevel();
        }
    }
    Environment.hasDataMartBeenChecked = false;
    Environment.wwanConnectionIsDataMartSim = false;
    CloudExperienceHost.Environment = Environment;
    class OobeContextHelper {
        static isLiteOobeApplicableRuntimeCheck(featureName) {
            return !CloudExperienceHostAPI.UtilStaticsCore.isAssignedToLiteMetricExperimentGroup ? CloudExperienceHost.AccountDisambiguation.isLiteOobeApplicableForAadCapableEditions(featureName) : false;
        }
        static isFullScreenAndFeatureEnabled(featureName) {
            return FeatureStaging.isOobeFeatureEnabled(featureName) && CloudExperienceHostAPI.Environment.isFullscreenCXHRunning;
        }
    }
    CloudExperienceHost.OobeContextHelper = OobeContextHelper;
    class ScoobeContextHelper {
        // Retrieve the current SCOOBE launch instance from SharableData storage.
        // Note that this state is written and managed by the Welcome page, so it's expected to be used only by webapps after Welcome.
        // If called before Welcome, this method will return the launch instance of the previous SCOOBE session.
        static tryGetScoobeLaunchInstance() {
            let scoobeLaunchInstanceObj = { scoobeLaunchInstance: 0, succeeded: false };
            scoobeLaunchInstanceObj.scoobeLaunchInstance = CloudExperienceHost.Storage.SharableData.getValue("ScoobeLaunchInstance");
            scoobeLaunchInstanceObj.succeeded = (scoobeLaunchInstanceObj.scoobeLaunchInstance != null) ? true : false;
            return scoobeLaunchInstanceObj;
        }
    }
    CloudExperienceHost.ScoobeContextHelper = ScoobeContextHelper;
    class OobeExperimentationPages {
        static getShouldSkipAsync() {
            // Always skip these pages for scenarios in which the MSA identity provider is not supported (e.g. Enterprise SKU)
            let msaDisallowed = (CloudExperienceHost.getAllowedIdentityProviders().indexOf(CloudExperienceHost.SignInIdentityProviders.MSA) == -1);
            return WinJS.Promise.wrap(msaDisallowed);
        }
    }
    CloudExperienceHost.OobeExperimentationPages = OobeExperimentationPages;
    class OobeUserIntent {
        static getShouldSkipAsync() {
            return new WinJS.Promise(function (completeDispatch /*, errorDispatch, progressDispatch*/) {
                if (CloudExperienceHostAPI.UtilStaticsCore.getLicensingPolicyValue("Shell-UserIntentDevicePersonalization-Enabled") !== 1) {
                    completeDispatch(true);
                    return;
                } // Skip if the User Intent feature is disabled via SL Policy
                let shouldSkip = false;
                let shouldRestrictionsApply = false;
                let oobeExperimentationPagesPromise = OobeExperimentationPages.getShouldSkipAsync().then((result) => {
                    shouldSkip = result; // Skip if we can't show experimentation pages
                });
                let ageAppropriateDesignCodeEligibilityPromise = AgeAppropriateDesignCode.Eligibility.shouldRestrictionsApplyToCurrentUserAsync().then((result) => {
                    shouldRestrictionsApply = result; // Skip for AADC restricted users
                });
                WinJS.Promise.join([oobeExperimentationPagesPromise, ageAppropriateDesignCodeEligibilityPromise]).then(() => {
                    completeDispatch(shouldSkip || shouldRestrictionsApply);
                });
            });
        }
    }
    CloudExperienceHost.OobeUserIntent = OobeUserIntent;
    class OobeGamePass {
        static getShouldSkipAsync() {
            return new WinJS.Promise(function (completeDispatch /*, errorDispatch, progressDispatch*/) {
                let shouldSkip = false;
                let shouldRestrictionsApply = false;
                let oobeExperimentationPagesPromise = OobeExperimentationPages.getShouldSkipAsync().then((result) => {
                    shouldSkip = result; // Skip if we can't show experimentation pages
                });
                let ageAppropriateDesignCodeEligibilityPromise = AgeAppropriateDesignCode.Eligibility.shouldRestrictionsApplyToCurrentUserAsync().then((result) => {
                    shouldRestrictionsApply = result; // Skip for AADC restricted users
                });
                WinJS.Promise.join([oobeExperimentationPagesPromise, ageAppropriateDesignCodeEligibilityPromise]).then(() => {
                    completeDispatch(shouldSkip || shouldRestrictionsApply);
                });
            });
        }
    }
    CloudExperienceHost.OobeGamePass = OobeGamePass;
    class Wireless {
        static getShouldSkipAsync() {
            let skipNetworkConnectPage = CloudExperienceHostAPI.UtilStaticsCore.hideWireless;
            if (!skipNetworkConnectPage) {
                let connectionProfile = Windows.Networking.Connectivity.NetworkInformation.getInternetConnectionProfile();
                if (connectionProfile) {
                    skipNetworkConnectPage = (connectionProfile.getNetworkConnectivityLevel() === Windows.Networking.Connectivity.NetworkConnectivityLevel.internetAccess) &&
                        !connectionProfile.isWwanConnectionProfile;
                }
            }
            return WinJS.Promise.wrap(skipNetworkConnectPage);
        }
    }
    CloudExperienceHost.Wireless = Wireless;
    class NetworkLossAversionV2 {
        // skip v2 when active personality is lite white
        static getShouldSkipAsync() {
            return WinJS.Promise.wrap(CloudExperienceHost.getNavMesh().getPersonality() === CloudExperienceHost.TargetPersonality.LiteWhite);
        }
    }
    CloudExperienceHost.NetworkLossAversionV2 = NetworkLossAversionV2;
    class NetworkLossAversionV3 {
        // skip v3 when active personality is blue
        static getShouldSkipAsync() {
            return WinJS.Promise.wrap(CloudExperienceHost.getNavMesh().getPersonality() !== CloudExperienceHost.TargetPersonality.LiteWhite);
        }
    }
    CloudExperienceHost.NetworkLossAversionV3 = NetworkLossAversionV3;
    class WirelessCommercial {
        static getShouldSkipAsync() {
            let oobeResumeEnabled = CloudExperienceHost.Storage.SharableData.getValue("OOBEResumeEnabled");
            // if device did not reboot and resume, then skip the page
            if (!oobeResumeEnabled) {
                return WinJS.Promise.wrap(true);
            }
            let skipNetworkConnectPage = CloudExperienceHostAPI.UtilStaticsCore.hideWirelessCommercial;
            CloudExperienceHost.Telemetry.logEvent("WirelessCommercial_HideWirelessCommercial", skipNetworkConnectPage);
            if (!skipNetworkConnectPage) {
                skipNetworkConnectPage = Environment.hasInternetAccess();
                CloudExperienceHost.Telemetry.logEvent("WirelessCommercial_SkipNetworkConnectPage", skipNetworkConnectPage);
            }
            return WinJS.Promise.wrap(skipNetworkConnectPage);
        }
    }
    CloudExperienceHost.WirelessCommercial = WirelessCommercial;
    class Bookends {
        static getShouldSkipAsync() {
            // skip for light personality
            if (CloudExperienceHost.getContext().personality === CloudExperienceHost.TargetPersonality.LiteWhite) {
                return WinJS.Promise.wrap(true);
            }
            let localAccountManager = new CloudExperienceHostBroker.Account.LocalAccountManager();
            let isSpeechAllowedByPolicy = true;
            try {
                let speechController = AppObjectFactory.getInstance().getObjectFromString("CloudExperienceHostAPI.Speech.SpeechRecognitionController");
                isSpeechAllowedByPolicy = speechController.isSpeechAllowedByPolicy();
            }
            catch (exception) {
                CloudExperienceHost.Telemetry.logEvent("IsSpeechAllowedByPolicyError", CloudExperienceHost.GetJsonFromError(exception));
            }
            let skipIntro = localAccountManager.unattendCreatedUser ||
                !CloudExperienceHost.Cortana.isCortanaSupported() ||
                !isSpeechAllowedByPolicy ||
                CloudExperienceHost.Storage.SharableData.getValue("retailDemoEnabled");
            if (!skipIntro) {
                // Check for Microphone access. Assumption is if there is a Microphone then there are speakers.
                try {
                    let captureSettings = new Windows.Media.Capture.MediaCaptureInitializationSettings();
                    captureSettings.streamingCaptureMode = Windows.Media.Capture.StreamingCaptureMode.audio;
                    captureSettings.mediaCategory = Windows.Media.Capture.MediaCategory.speech;
                    let capture = new Windows.Media.Capture.MediaCapture();
                    let capturePromise = capture.initializeAsync(captureSettings).then(() => {
                        // Successfully accessed the microphone, don't skip
                        return WinJS.Promise.wrap(false);
                    }, (error) => {
                        // Failed to access microphone, skip bookends
                        return WinJS.Promise.wrap(true);
                    });
                    return capturePromise;
                }
                catch (exception) {
                    // Return true to skip page if media capture initialization fails
                    return WinJS.Promise.wrap(true);
                }
            }
            return WinJS.Promise.wrap(skipIntro);
        }
    }
    CloudExperienceHost.Bookends = Bookends;
    class AccountDisambiguation {
        static getShouldSkipAsync() {
            let allowedProviders = CloudExperienceHost.getAllowedIdentityProviders();
            let onlineProviderAllowed = ((allowedProviders.indexOf(CloudExperienceHost.SignInIdentityProviders.MSA) != -1) || (allowedProviders.indexOf(CloudExperienceHost.SignInIdentityProviders.AAD) != -1));
            // Skip (return success) if no online providers are allowed
            return WinJS.Promise.wrap(!onlineProviderAllowed);
        }
        static getLiteOobeGatingFeatureForAadCapableEditions() {
            return (CloudExperienceHost.getAllowedIdentityProviders().indexOf(CloudExperienceHost.SignInIdentityProviders.AAD) != -1) ? "AadCapableDLOOBE" : null;
        }
        static isLiteOobeApplicableForAadCapableEditions(featureName) {
            let applicableFeature = AccountDisambiguation.getLiteOobeGatingFeatureForAadCapableEditions();
            let isFeatureApplicable = applicableFeature ? FeatureStaging.isOobeFeatureEnabled(applicableFeature) : true;
            return isFeatureApplicable ? FeatureStaging.isOobeFeatureEnabled(featureName) : false;
        }
    }
    CloudExperienceHost.AccountDisambiguation = AccountDisambiguation;
    class AccountAndServices {
        // Unattend settings related to account creation and autologon are checked, and can cause us to skip most of
        // the Account and Services sections in CXH hosted OOBE.
        static shouldSkipAccountAndServices() {
            try {
                let localAccountManager = new CloudExperienceHostBroker.Account.LocalAccountManager();
                return localAccountManager.unattendCreatedUser;
            }
            catch (exception) {
                return false;
            }
        }
        // Wraps the check above. Needed for the preload checks specified in the navigation JSON.
        static getShouldSkipAsync() {
            return WinJS.Promise.wrap(CloudExperienceHost.AccountAndServices.shouldSkipAccountAndServices());
        }
        static getUserProfileEngagementAsync(items) {
            let promises = items.map((item) => {
                let itemStatus = "Ineligible";
                let timeout = false;
                let userProfileEngagementPromise = CloudExperienceHostAPI.UserProfileEngagementCore.checkEngagementAsync(item).then((result) => {
                    itemStatus = result;
                });
                let timeoutPromise = WinJS.Promise.timeout(10000).then(() => { timeout = true; });
                return WinJS.Promise.any([userProfileEngagementPromise, timeoutPromise]).then(() => {
                    if (timeout) {
                        CloudExperienceHost.Telemetry.logEvent("UserProfileEngagementItemTimeout", JSON.stringify({ item: item }));
                    }
                    else {
                        CloudExperienceHost.Telemetry.logEvent("UserProfileEngagementItem", JSON.stringify({ item: item, result: itemStatus }));
                    }
                    return itemStatus;
                });
            });
            return WinJS.Promise.join(promises);
        }
        static isDomainAccount() {
            // Although we are calling into a ContentDeliveryManager specific WinRT object, note
            // that this is just a standard domain account check via LsaLookupUserAccountType().
            return CloudExperienceHostAPI.ContentDeliveryManagerHelpers.isDomainAccount;
        }
    }
    CloudExperienceHost.AccountAndServices = AccountAndServices;
    class BrowserSettings {
        static pinAndSetDefaultMicrosoftBrowserAsync() {
            return CloudExperienceHostAPI.BrowserEngagementCore.pinAndSetDefaultMicrosoftBrowserAsync();
        }
        static resetBrowserSearchEngineAsync(partnerCode) {
            return CloudExperienceHostAPI.BrowserEngagementCore.resetBrowserSearchEngineAsync(partnerCode);
        }
        static declutterBrowsersAfterUserConsentAsync() {
            return CloudExperienceHostAPI.BrowserEngagementCore.declutterBrowsersAfterUserConsentAsync();
        }
    }
    CloudExperienceHost.BrowserSettings = BrowserSettings;
    class DeviceName {
        static getShouldSkipAsync() {
            // If unattend settings related to account creation and autologon would cause us to skip most of
            // the Account and Services sections in OOBE, then we should also skip Device Name so that we do
            // not inadvertently block existing deployments.
            if (CloudExperienceHost.AccountAndServices.shouldSkipAccountAndServices()) {
                return WinJS.Promise.wrap(true);
            }
            else {
                return CloudExperienceHostAPI.OobeDeviceNameManager.getShouldSkipAsync();
            }
        }
        static getIsValidDeviceNameAsync(deviceName) {
            return CloudExperienceHostAPI.OobeDeviceNameManager.getIsValidDeviceNameAsync(deviceName);
        }
        static setDeviceNameAsync(deviceName) {
            return CloudExperienceHostAPI.OobeDeviceNameManager.setDeviceNameAsync(deviceName).then(() => {
                CloudExperienceHost.setRebootForOOBE("OobeWirelessAfterDeviceNameReboot");
            });
        }
    }
    CloudExperienceHost.DeviceName = DeviceName;
    class FeatureStaging {
        static isOobeFeatureEnabled(featureName) {
            let featureEnabledObj = CloudExperienceHostAPI.FeatureStaging.tryGetIsFeatureEnabled(featureName);
            return featureEnabledObj.result ? featureEnabledObj.value : false;
        }
        static tryGetIsFeatureEnabled(featureName) {
            return CloudExperienceHostAPI.FeatureStaging.tryGetIsFeatureEnabled(featureName);
        }
        static tryGetFeatureVariant(featureName) {
            return CloudExperienceHostAPI.FeatureStaging.tryGetFeatureVariant(featureName);
        }
        static tryGetFeatureVariantData(featureName) {
            return CloudExperienceHostAPI.FeatureStaging.tryGetFeatureVariantData(featureName);
        }
    }
    CloudExperienceHost.FeatureStaging = FeatureStaging;
    class ScheduledTasks {
        static registerTimeTriggeredTaskForUserScenarioAsync(scenarioId, triggerTimeDeltaInMinutes) {
            return CloudExperienceHostAPI.ScheduledTasksRegistrationManagerCore.registerTimeTriggeredTaskForUserScenarioAsync(scenarioId, triggerTimeDeltaInMinutes);
        }
        static deleteRegisteredTaskIfPresentAsync(scenarioId) {
            return CloudExperienceHostAPI.ScheduledTasksRegistrationManagerCore.deleteRegisteredTaskIfPresentAsync(scenarioId);
        }
    }
    CloudExperienceHost.ScheduledTasks = ScheduledTasks;
    var AgeAppropriateDesignCode;
    (function (AgeAppropriateDesignCode) {
        var AgeGroup;
        (function (AgeGroup) {
            AgeGroup[AgeGroup["Unknown"] = 0] = "Unknown";
            AgeGroup[AgeGroup["MinorWithoutParentalConsent"] = 1] = "MinorWithoutParentalConsent";
            AgeGroup[AgeGroup["MinorWithParentalConsent"] = 2] = "MinorWithParentalConsent";
            AgeGroup[AgeGroup["Adult"] = 3] = "Adult";
            AgeGroup[AgeGroup["NotAdult"] = 4] = "NotAdult";
            AgeGroup[AgeGroup["MinorNoParentalConsentRequired"] = 5] = "MinorNoParentalConsentRequired";
        })(AgeGroup || (AgeGroup = {}));
        ;
        class Eligibility {
            static shouldRestrictionsApplyInRegion(region) {
                // Please be aware of the lists in %SDXROOT%\onecoreuap\shell\inc\PrivacyConsentHelpers.h
                // and %SDXROOT%\onecoreuap\shell\cloudexperiencehost\onecore\app\App\core\js\appLaunchers\OobeSettingsSelector.js,
                // which are not necessarily the same as this list
                // Note: "UK" is not a Windows Client ISO code, but is returned by the MSA server in place of "GB"/"GBR"
                let aadcInScopeRegionList = ["AT", "AUT", "BE", "BEL", "BG", "BGR", "HR", "HRV", "CY", "CYP",
                    "CZ", "CZE", "DK", "DNK", "EE", "EST", "FI", "FIN", "FR", "FRA", "DE", "DEU", "GR", "GRC",
                    "HU", "HUN", "IE", "IRL", "IT", "ITA", "LV", "LVA", "LT", "LTU", "LU", "LUX", "MT", "MLT",
                    "NL", "NLD", "PL", "POL", "PT", "PRT", "RO", "ROU", "SK", "SVK", "SI", "SVN", "ES", "ESP",
                    "SE", "SWE", "GB", "GBR", "IS", "ISL", "LI", "LIE", "NO", "NOR", "CH", "CHE", "UK"];
                return (aadcInScopeRegionList.indexOf(region) != -1);
            }
            static shouldRestrictionsApplyToAgeUnknown() {
                // Fallback for "Age Unknown" case
                if (CloudExperienceHostAPI.FeatureStaging.isOobeFeatureEnabled("CxhAadcAgeUnknownInScope")) {
                    return (CloudExperienceHostAPI.UtilStaticsCore.getLicensingPolicyValue("AgeAppropriateDesignCode-ApplyToUnknownAgeGroup") === 1) ? true : false;
                }
                else {
                    return false;
                }
            }
            static shouldRestrictionsApplyToAgeGroupAndRegion(ageGroup, region, shouldRestrictionsApplyToMinorOverStatutoryAge) {
                // First, determine if AADC restrictions apply to the user's region
                if (!Eligibility.shouldRestrictionsApplyInRegion(region)) {
                    return false; // Exit early if the region is not in-scope
                }
                // Next, if the region is in-scope for AADC, determine if restrictions apply based on AgeGroup
                switch (ageGroup) {
                    case AgeGroup.MinorWithoutParentalConsent:
                    case AgeGroup.MinorWithParentalConsent:
                    case AgeGroup.MinorNoParentalConsentRequired:
                        return true;
                    case AgeGroup.NotAdult:
                        return shouldRestrictionsApplyToMinorOverStatutoryAge;
                    case AgeGroup.Adult:
                        return false;
                    case AgeGroup.Unknown:
                    default:
                        return Eligibility.shouldRestrictionsApplyToAgeUnknown();
                }
            }
            static shouldRestrictionsApplyInDeviceRegion() {
                let deviceRegion = CloudExperienceHost.Globalization.GeographicRegion.getCode();
                return Eligibility.shouldRestrictionsApplyInRegion(deviceRegion);
            }
            static shouldRestrictionsApplyToCurrentUserAsync(shouldRestrictionsApplyToMinorOverStatutoryAge = false) {
                return new WinJS.Promise((completeDispatch /*, errorDispatch, progressDispatch */) => {
                    if (CloudExperienceHostAPI.FeatureStaging.isOobeFeatureEnabled("CxhAadcBehavior")) {
                        CloudExperienceHost.MSA.getAccountInformation(null /* userName */, null /* accountId */).then((accountInformationSet) => {
                            // Get AgeGroup and Region from the account information property set
                            // Note that "agegroup" is added to the property set as a stringified number
                            // Use Windows region as fallback if "country" isn't in the property set
                            let ageGroup = accountInformationSet.hasKey("agegroup") ? parseInt(accountInformationSet.lookup("agegroup")) : AgeGroup.Unknown;
                            let region = accountInformationSet.hasKey("country") ? accountInformationSet.lookup("country").toUpperCase() : CloudExperienceHost.Globalization.GeographicRegion.getCode();
                            completeDispatch(Eligibility.shouldRestrictionsApplyToAgeGroupAndRegion(ageGroup, region, shouldRestrictionsApplyToMinorOverStatutoryAge));
                        }, (e) => {
                            // If the MSA API throws an error, treat this as "Age Unknown" case and use the Windows region as fallback
                            completeDispatch(Eligibility.shouldRestrictionsApplyToAgeGroupAndRegion(AgeGroup.Unknown, CloudExperienceHost.Globalization.GeographicRegion.getCode(), shouldRestrictionsApplyToMinorOverStatutoryAge));
                        });
                    }
                    else {
                        completeDispatch(false);
                    }
                });
            }
        }
        AgeAppropriateDesignCode.Eligibility = Eligibility;
        class OobeAadcAgeConfirmation {
            static getShouldSkipAsync() {
                if (CloudExperienceHost.getContext().personality !== CloudExperienceHost.TargetPersonality.LiteWhite) {
                    // Always skip the AADC Age Confirmation page if the personality is non LiteWhite, as the page is only designed for LiteWhite
                    return WinJS.Promise.wrap(true);
                }
                else {
                    // Otherwise, skip if the device can't go down the local account path or can't go down the MSA path
                    let allowedIdentityProviders = CloudExperienceHost.getAllowedIdentityProviders();
                    let localDisallowed = (allowedIdentityProviders.indexOf(CloudExperienceHost.SignInIdentityProviders.Local) == -1);
                    let msaDisallowed = (allowedIdentityProviders.indexOf(CloudExperienceHost.SignInIdentityProviders.MSA) == -1);
                    return WinJS.Promise.wrap(localDisallowed || msaDisallowed);
                }
            }
        }
        AgeAppropriateDesignCode.OobeAadcAgeConfirmation = OobeAadcAgeConfirmation;
    })(AgeAppropriateDesignCode = CloudExperienceHost.AgeAppropriateDesignCode || (CloudExperienceHost.AgeAppropriateDesignCode = {}));
})(CloudExperienceHost || (CloudExperienceHost = {}));
//# sourceMappingURL=environment.js.map