powershell 测试Registryvalue
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 测试Registryvalue相关的知识,希望对你有一定的参考价值。
Function Test-RegistryValue {
param
(
[Object]
$regkey,
[Object]
$name
)
Get-ItemProperty $regkey $name -ErrorAction SilentlyContinue |
Out-Null
$?
}
Test-RegistryValue -regkey 'HKCU:\\Software\Microsoft\Office\14.0\Excel\Options' -name 'OPEN1'
以上是关于powershell 测试Registryvalue的主要内容,如果未能解决你的问题,请参考以下文章
powershell 测试tridion-powershell-modules
powershell 测试tridion-powershell-modules
powershell 使用powershell创建用于测试SQL的Azure VM
如何测试 Notepad++ 是不是通过 powershell 安装?
powershell 性能测试小脚本
powershell 此示例在powershell中运行C#代码。我需要这个,当有一部分代码要测试但它只能在p中测试