我正在尝试添加注册表项,但是出现以下错误:
New-ItemProperty:无法使用界面。该提供程序未实现IDynamicPropertyCmdletProvider接口
禁用IE首先弹出
$ registryPath = “ HKEY_CURRENT_USER \ Software \ Policies \ Microsoft \ Internet Explorer \ Main”
$ Name =“ DisableFirstRunCustomize”
$ value =“ 00000001”
新项-Path $ registryPath -Force |空空
New-ItemProperty -Path $ registryPath -Name $ name -Value $ value` -PropertyType DWORD
答案 0 :(得分:1)
您的$registryPath
不正确。正确的语法是:
$registryPath = "HKCU:\Software\Policies\Microsoft\Internet Explorer\Main"