Software: Microsoft-IIS/10.0. PHP/7.4.33 uname -a: Windows NT LAKE 10.0 build 20348 (Windows Server 2016) AMD64 IWPD_801(traduongco) Safe-mode: OFF (not secure) C:\Windows\SystemApps\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy\webapps\inclusiveOobe\js\ drwxrwxrwx | |
| Viewing file: Select action/file-type: //
// Copyright (C) Microsoft. All rights reserved.
//
define(['lib/knockout', 'legacy/bridge', 'legacy/core'], (ko, bridge, core) => {
class OobeEULAData {
// Retrieve the eula file content as string given the type (Microsoft or OEM)
getEulaFileStringAsync(eulaType) {
// Call the WinRT API to retrieve the storage file given the type (Microsoft or OEM)
return CloudExperienceHostAPI.OobeEulaManagerStaticsCore.getEulaFileAsync(eulaType).then((fileString) => {
if (fileString && (fileString.length > 0)) {
bridge.invoke("CloudExperienceHost.Telemetry.logEvent", "GetEulaFileAsyncValidFileSuccess");
return fileString;
}
else if (eulaType === CloudExperienceHostAPI.EulaType.microsoft) {
let err = "getEulaFileAsync succeeded with empty file for Microsoft type.";
bridge.invoke("CloudExperienceHost.Telemetry.logEvent", "GetEulaFileAsyncEmptyFileMicrosoftSuccess");
bridge.invoke("CloudExperienceHost.Telemetry.oobeHealthEvent", CloudExperienceHostAPI.HealthEvent.microsoftEulaShownResult, 0x80070002);
throw err;
}
else {
bridge.invoke("CloudExperienceHost.Telemetry.logEvent", "GetEulaFileAsyncEmptyFileOEMSuccess");
bridge.invoke("CloudExperienceHost.Telemetry.oobeHealthEvent", CloudExperienceHostAPI.HealthEvent.oemEulaShownResult, 0x80070002);
}
}, (err) => {
if (eulaType === CloudExperienceHostAPI.EulaType.microsoft) {
bridge.invoke("CloudExperienceHost.Telemetry.logEvent", "GetEulaFileAsyncMicrosoftFailure", core.GetJsonFromError(err));
bridge.invoke("CloudExperienceHost.Telemetry.oobeHealthEvent", CloudExperienceHostAPI.HealthEvent.microsoftEulaShownResult, err.number ? err.number : 0x8000ffff);
throw err;
}
else {
bridge.invoke("CloudExperienceHost.Telemetry.logEvent", "GetEulaFileAsyncOEMFailure", core.GetJsonFromError(err));
bridge.invoke("CloudExperienceHost.Telemetry.oobeHealthEvent", CloudExperienceHostAPI.HealthEvent.oemEulaShownResult, err.number ? err.number : 0x8000ffff);
}
});
}
getEulaData() {
let eulaData = {
msEulaString: "",
hasOEMEula: false,
oemEulaString: ""
};
// Note that some of the calls here, especially the one to the GetEulaFileAsync method, while asynchronous,
// may have significant run time on this thread, so we need to ensure this code never ends up on the UI
// thread, and that "Just a moment..." with a spinner continues to be shown throughout the EULA loading.
return this.getEulaFileStringAsync(CloudExperienceHostAPI.EulaType.microsoft).then((msFileString) => {
eulaData.msEulaString = msFileString;
bridge.invoke("CloudExperienceHost.Telemetry.oobeHealthEvent", CloudExperienceHostAPI.HealthEvent.microsoftEulaShownResult, 0);
return this.getEulaFileStringAsync(CloudExperienceHostAPI.EulaType.oem);
}).then((oemFileString) => {
if (oemFileString) {
eulaData.hasOEMEula = true;
eulaData.oemEulaString = oemFileString;
bridge.invoke("CloudExperienceHost.Telemetry.oobeHealthEvent", CloudExperienceHostAPI.HealthEvent.oemEulaShownResult, 0);
}
return eulaData;
});
}
}
return new OobeEULAData();
}); |
:: Command execute :: | |
--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.38 ]-- |