gpt4 book ai didi

powershell - 通过 PowerShell 设置 REG_NONE 值

转载 作者:行者123 更新时间:2023-12-03 09:05:47 24 4
gpt4 key购买 nike

New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.bmp\OpenWithProgids -Name Paint.Picture -Type None -Value ([byte[]]::new(0)) -Force

适用于 Windows 10,但在 Windows 8.1 中存在问题。

最佳答案

用于调用构造函数的new静态扩展方法是 PowerShell 5.0 中的新增功能,PowerShell 5.0 是 Windows 10 附带的 Windows PowerShell 版本。

在 Windows PowerShell 4.0(8.1 附带的版本)中,您应该能够通过简单地将空数组转换为 byte[] 来获得相同类型的空字节数组,如下所示:[字节[]]@()

以前版本的 [Microsoft.Win32.RegistryValueKind] 没有 None 值,但使用 指定 Unknown [byte[]] 对象作为值将导致相同类型的注册表值条目 - 因此在两个平台上工作的版本将是:

New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.bmp\OpenWithProgids -Name Paint.Picture -Type Unknown -Value ([byte[]]@()) -Force

关于powershell - 通过 PowerShell 设置 REG_NONE 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47530823/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com