I need to create the following registry entry
HKLM:\software\bmc software\control-m/agent
but am having a problem due to the forward slash before "agent"
I have no problem creating an entry that doesn't have the forward slash For example:
PS C:\powershell> new-item -path 'HKLM:\software\bmc software\control-mXXXagent'
But creating with the forward slash fails.
PS C:\powershell> new-item -path 'HKLM:\software\bmc software\control-m/agent'
New-Item : The registry key at the specified path does not exist. At line:1 char:10 + new-item <<<< -path 'HKLM:\software\bmc software\control-m/agent' + CategoryInfo : InvalidArgument: (HKEY_LOCAL_MACH...tware\control-m:String) [New-Item], ArgumentExceptio n + FullyQualifiedErrorId : System.ArgumentException,Microsoft.PowerShell.Commands.NewItemCommand
And using the PowerShell backtic ` escape character doesn't help either.
PS C:\powershell> new-item -path 'HKLM:\software\bmc software\control-m`/agent'
New-Item : The registry key at the specified path does not exist. At line:1 char:10 + new-item <<<< -path 'HKLM:\software\bmc software\control-m
/agent' + CategoryInfo : InvalidArgument: (HKEY_LOCAL_MACH...ware\control-m
:String) [New-Item], ArgumentExceptio n + FullyQualifiedErrorId : System.ArgumentException,Microsoft.PowerShell.Commands.NewItemCommand
And advice would be appreciated. Thanks
-Path 'HKLM:\software\bmc software\new.key*%$!@#'
works fine. The only problem is with the forward slash. I thought it must be a bug, but apparently the real reason is that forward slash is interpreted as a path separator.New-Item -Path 'HKLM:/software\bmc software/newkey'
would work fine, for example, to create a key called newkey. I'll update my answer to explain that. – Oxyacetylene