powershell 功能 - WINDOWS - REGISTRY:有用的注册表功能。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 功能 - WINDOWS - REGISTRY:有用的注册表功能。相关的知识,希望对你有一定的参考价值。
#Configuration
$registrypath = "HKLM:\Software\TrendMicro\PC-cillinNTCorp\CurrentVersion\Misc"
$name = "VDIEnabled"
$value = "1"
# Test that a registry path exists and create a key in the location
if (!(Test-Path $registrypath))
{
New-Item -Path $registrypath -Force | out-null
New-ItemProperty -Path $registrypath -Name $name -Value $value -PropertyType DWORD -Force #| out-null
} else {
New-ItemProperty -Path $registrypath -Name $name -Value $value -PropertyType DWORD -Force #| out-null
}
以上是关于powershell 功能 - WINDOWS - REGISTRY:有用的注册表功能。的主要内容,如果未能解决你的问题,请参考以下文章
windows powershell怎么关闭
powershell 功能 - WINDOWS - REGISTRY:有用的注册表功能。
SQL2008安装出错(Windows PowerShell未能安装)
powershell 这将获得Windows Server 2012 r2上的所有Windows功能及其状态
怎么打开windows powershell
Windows中查看PowerShell版本和virbox版本