Is it possible to set the "Update & Security > For developers" attribute "Sideload apps" from a powershell script on Windows 10 Anniversary (just plain "old" Win10)?
Asked
Active
Viewed 6,692 times
1 Answers
7
Run PowerShell with administrator privileges. To enable sideloading, run this command:
PS C:\WINDOWS\system32> reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowAllTrustedApps" /d "1"
To enable developer mode, run this command:
PS C:\WINDOWS\system32> reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"

4c74356b41
- 69,186
- 6
- 100
- 141
-
Works like a charm. 1000 x Thx – hotlipsdk Nov 09 '16 at 10:53