在Windows的注册表编辑器中递归创建密钥

时间:2015-04-07 11:09:11

标签: windows powershell registry

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

1 个答案:

答案 0 :(得分:2)

使用-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