gpt4 book ai didi

powershell - 以编程方式启用 Windows 10 开发者模式

转载 作者:行者123 更新时间:2023-12-02 23:22:55 26 4
gpt4 key购买 nike

我知道你可以enable Windows 10 Developer mode interactively转到“设置”|对于开发人员,选择“开发人员模式”,然后重新启动。

有没有办法以编程方式启用此功能? (例如,通过 PowerShell 或类似的方式,以便我可以在刷新我的开发人员工作站时将其作为 Boxstarter 脚本中的一个步骤包含在内)

最佳答案

原来 Nickolaj Andersen 写了一篇文章,其中包含这样的 PowerShell 脚本..

http://www.scconfigmgr.com/2016/09/11/enable-ubuntu-in-windows-10-during-osd-with-configmgr/

以下是从他的帖子中摘录的相关内容:

# Create AppModelUnlock if it doesn't exist, required for enabling Developer Mode
$RegistryKeyPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock"
if (-not(Test-Path -Path $RegistryKeyPath)) {
New-Item -Path $RegistryKeyPath -ItemType Directory -Force
}

# Add registry value to enable Developer Mode
New-ItemProperty -Path $RegistryKeyPath -Name AllowDevelopmentWithoutDevLicense -PropertyType DWORD -Value 1

关于powershell - 以编程方式启用 Windows 10 开发者模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40033608/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com