gpt4 book ai didi

windows - 在 Windows 的注册表编辑器中递归创建 key

转载 作者:可可西里 更新时间:2023-11-01 11:51:04 25 4
gpt4 key购买 nike

我需要使用 Power Shell 在 Windows 的寄存器编辑器中递归地创建一个键。 md HKLM:\Software\a\b\c 在此命令中,仅当父键 a 存在时才会创建 b 和 c 键,但我想创建 a\b\c递归。请帮助我。

最佳答案

使用-Force参数:

PS C:\> md HKLM:\Software\a\b\c
PS C:\> Test-Path HKLM:\Software\a\b\c
False
PS C:\> md HKLM:\Software\a\b\c -Force
PS C:\> Test-Path HKLM:\Software\a\b\c
True

关于windows - 在 Windows 的注册表编辑器中递归创建 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29490146/

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