经过漫长的安装过程
win10终于装上了vs2015 rc…
写个小程序试试
结果提示:
<a href="http://images0.cnblogs.com/blog/55095/201505/220008267293046.png"></a>
根据提示打开 设置--更新--for developer
据说应该有这么个界面:
<a href="http://images0.cnblogs.com/blog/55095/201505/220008278227246.png"></a>
但是这个界面根本出不来
直接闪退的说…
翻 MSDN 终于翻出了解决方法:
<a href="https://msdn.microsoft.com/library/windows/apps/xaml/dn706236.aspx">https://msdn.microsoft.com/library/windows/apps/xaml/dn706236.aspx</a>
三种方法,任选其一
1,组策略:
Open a cmd prompt with administrator privileges.
Run Gpedit.msc.
Go to Local Computer Policy > Computer Configuration > Administrative Templates > Windows Components > App Package Deployment
Edit the policies to enable the following:
Allows development of Windows Store apps and installing them from an integrated development environment (IDE) (Enables your device for development from Visual Studio)
Reboot your machine.
2,注册表:
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"
<b></b>
<b>本文转自 sun8134 博客园博客,原文链接:http://www.cnblogs.com/sun8134/p/4521228.html</b><b> ,如需转载请自行联系原作者</b>