zoukankan      html  css  js  c++  java
  • win10 Enable developer Mode

    经过漫长的安装过程

    win10终于装上了vs2015 rc…

     

    写个小程序试试

    结果提示:

    image

     

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

    据说应该有这么个界面:

    image

     

    但是这个界面根本出不来

    直接闪退的说…

     

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

    https://msdn.microsoft.com/library/windows/apps/xaml/dn706236.aspx

    三种方法,任选其一

    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 sideloading 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: HKLMSOFTWAREMicrosoftWindowsCurrentVersionAppModelUnlockAllowAllTrustedApps
    • Set the value of this DWORD to 1: HKLMSOFTWAREMicrosoftWindowsCurrentVersionAppModelUnlockAllowDevelopmentWithoutDevLicense

     

    3,PowerShell

    • Run Windows PowerShell with administrator privileges.
    • Run the following command: PS C:WINDOWSsystem32> reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionAppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"
    • Run this command too: PS C:WINDOWSsystem32> reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionAppModelUnlock" /t REG_DWORD /f /v "AllowAllTrustedApps" /d "1"
  • 相关阅读:
    Unobtrusive Ajax
    Asp.Net Web API 2(入门)第一课
    c# in depth之泛型的实现
    ASP.NET MVC 單元測試系列
    菜单栏
    【C++ 中文手册】即将完成
    AspNet MVC3中过滤器 + 实例
    虚拟机安装Linux中常见异常及解决办法
    webbrowser打开新窗口事件+=
    Java Bad version
  • 原文地址:https://www.cnblogs.com/sun8134/p/4521228.html
Copyright © 2011-2022 走看看