After a lengthy installation process
Win10 finally installed on the vs2015 RC ...
Try writing a little program.
Results hint:
Open settings as prompted--Update--for Developer
It is said that there should be an interface:
But this interface doesn't come out at all.
The direct flashback says ...
Turning MSDN finally turned out the solution:
Https://msdn.microsoft.com/library/windows/apps/xaml/dn706236.aspx
Three ways to choose one
1, Group Policy:
- Open a CMD prompt with administrator privileges.
- Run gpedit.msc.
- Go to Local computer Policy > Computer Configuration > Administrative Templates > Windows components > App PAC Kage Deployment
- Edit the policies to enable the following:
- Allow all trusted apps to install (enables your device for sideloading apps)
- Allows development of Windows Store apps and installing them from a integrated development environment (IDE) (Enables you R device for development from Visual Studio)
- Reboot your machine.
2, registration form:
- Open a CMD prompt with administrator privileges.
- Run regedit.
- Set the value of this DWORD to 1:hklm\software\microsoft\windows\currentversion\appmodelunlock\allowalltrustedapps
- Set the value of this DWORD to 1:hklm\software\microsoft\windows\currentversion\appmodelunlock\ Allowdevelopmentwithoutdevlicense
3,powershell
- Run Windows PowerShell with administrator privileges.
- Run the following command: PS c:\windows\system32> reg ADD "hkey_local_machine\software\microsoft\windows\ Currentversion\appmodelunlock "/t reg_dword/f/V" allowdevelopmentwithoutdevlicense "/d" 1 "
- Run This command too: PS c:\windows\system32> reg ADD "hkey_local_machine\software\microsoft\windows\ Currentversion\appmodelunlock "/t reg_dword/f/V" Allowalltrustedapps "/d" 1 "
Win10 Enable Developer Mode