Recently, I wrote a powershell script to handle some infomation in registry. But when I access the registry path in the image by use cmdlet
Get-ChildItem -Path 'HKLM:\SOFTWARE\Classes\MAPI/Attachment'
I got a error info:
Get-ChildItem: Cannot find path 'HKEY_LOCAL_MACHINE\SOFTWARE\Classes\MAPI\Attachment' because it does not exist.
I know it's because of the forward slash / in the path, but I want to know how can I escape it, or how can I access the path by any method.
