博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
win10 Enable developer Mode
阅读量:6281 次
发布时间:2019-06-22

本文共 1472 字,大约阅读时间需要 4 分钟。

经过漫长的安装过程

win10终于装上了vs2015 rc…

 

写个小程序试试

结果提示:

 

根据提示打开 设置--更新--for developer

据说应该有这么个界面:

 

但是这个界面根本出不来

直接闪退的说…

 

翻 MSDN 终于翻出了解决方法:

三种方法,任选其一

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:
  • Allow all trusted apps to install (Enables your device for  apps)
  • 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,注册表:

  • 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"
本文转自 sun8134 博客园博客,原文链接:http://www.cnblogs.com/sun8134/p/4521228.html
   ,如需转载请自行联系原作者
你可能感兴趣的文章
怎样解题
查看>>
HDU - 4901 The Romantic Hero(dp)
查看>>
LightOJ - 1246 Colorful Board(DP+组合数)
查看>>
sqlserver distribution分发alwayson搭建
查看>>
力扣算法题—055跳跃游戏
查看>>
Nginx服务安装指南
查看>>
layer遮罩层 简单的遮罩层
查看>>
vue中使用腾讯云Im
查看>>
java FTP上传文件
查看>>
ubuntu 安装 eslint
查看>>
【转】围观 Joomla, Wordpress 和 Drupal
查看>>
用JS做关灯游戏(初级)
查看>>
vue.js学习 自定义过滤器使用(2)
查看>>
laravel资源
查看>>
各种排序讲解
查看>>
Sql Server 网络配置
查看>>
要在VR潮流中分一杯羹,首先要搞清楚方向再创业
查看>>
vscode setting.jsonxx
查看>>
网站版权日期的处理
查看>>
Maven之debug技巧
查看>>