1 Message
0
4841
Dell Apps incompatible in Microsoft Store
After reinstalling Windows 10 on my Inspiron G3 15 3579 Laptop, I am unable to install My Dell & Dell Mobile Connect Applications from Microsoft Store.It is showing that "The App is incompatible on your device".
DELL-Cares
Moderator
Moderator
•
25.9K Posts
1
November 16th, 2020 23:00
* Copy and paste the following green text into the Notepad application
* Name the file: RegEdit_for_DMC.bat
* Select the Save as Type as: All Files
* Double-click the file that you just created to run it. You must reboot for the changes to be applied
@echo off
setlocal
echo:
echo Setting OEMID in RegEdit...
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Store" /v OEMID /f /t REG_SZ /d DELL
echo:
echo Setting SCMID...
echo Fetching System Model Name
for /f "tokens=2 delims==" %%a in ('wmic computersystem get model /format:list') do set SYSMODEL=%%a
set SYSMODEL=%SYSMODEL: =%
echo System Model Name is "%SYSMODEL%"
for /f "tokens=1 delims= " %%a in ("%SYSMODEL%") do set SYSNAME=%%a
echo System Name is %SYSNAME%
set SCMID=DELL_%SYSNAME%
echo SCMID to be set is %SCMID%
echo Setting SCMID in RegEdit
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Store" /v StoreContentModifier /f /t REG_SZ /d %SCMID%