找到一段操作注册表的代码, 代码中判断键不存在时会创建它, 但是下面的代码一直报错, 求路过高手指引, 提前感谢
pppFile 这个键是不存在的- New-PSDrive -name HKCR -PSProvider registry -root HKEY_CLASSES_ROOT
- function Set-RegistryValue($key, $name, $value, $type = "String")
- {
- if ((Test-Path $key) -eq $false) { md $key }
- Set-ItemProperty $key $name $value -type $type
- }
-
- Set-RegistryValue 'HKCR:\pppFile\DefaultIcon' 'ppp' "notepad.exe,0"
- Set-RegistryValue 'HKCR:\pppFile\shell\open\command' 'ppp' 'notepad.exe "%1"'
复制代码
|