Update attributes

This commit is contained in:
mkuba50 2018-12-15 20:22:36 +01:00
parent cd656f0877
commit 312b5c6c52
2 changed files with 5 additions and 3 deletions

View File

@ -16,7 +16,7 @@ limitations under the License.
*/ */
function uupApiVersion() { function uupApiVersion() {
return '1.17.1'; return '1.17.2';
} }
require_once dirname(__FILE__).'/auths.php'; require_once dirname(__FILE__).'/auths.php';

View File

@ -30,9 +30,10 @@ function composeDeviceAttributes($flight, $ring, $build, $arch, $sku) {
$attrib = array( $attrib = array(
'App=WU_OS', 'App=WU_OS',
'AppVer='.$build, 'AppVer='.$build,
'AttrDataVer=52', 'AttrDataVer=54',
'BranchReadinessLevel=CB', 'BranchReadinessLevel=CB',
'CurrentBranch='.$branch, 'CurrentBranch='.$branch,
'DataVer_RS5='.PHP_INT_MAX,
'DeviceFamily=Windows.Desktop', 'DeviceFamily=Windows.Desktop',
'FirmwareVersion=6.00', 'FirmwareVersion=6.00',
'FlightContent='.$flight, 'FlightContent='.$flight,
@ -48,7 +49,7 @@ function composeDeviceAttributes($flight, $ring, $build, $arch, $sku) {
'IsRetailOS='.$isRetail, 'IsRetailOS='.$isRetail,
'OEMModel=Largehard Device Model 42069', 'OEMModel=Largehard Device Model 42069',
'OEMModelBaseBoard=Largehard Base Board', 'OEMModelBaseBoard=Largehard Base Board',
'OEMName_Uncleaned=Largehard', 'OEMName_Uncleaned=Largehard Corporation',
'OSArchitecture='.$arch, 'OSArchitecture='.$arch,
'OSSkuId='.$sku, 'OSSkuId='.$sku,
'OSUILocale=en-US', 'OSUILocale=en-US',
@ -58,6 +59,7 @@ function composeDeviceAttributes($flight, $ring, $build, $arch, $sku) {
'TelemetryLevel=1', 'TelemetryLevel=1',
'UpdateManagementGroup=2', 'UpdateManagementGroup=2',
'UpgEx_RS5=Green', 'UpgEx_RS5=Green',
'Version_RS5='.PHP_INT_MAX,
'WuClientVer='.$build, 'WuClientVer='.$build,
); );