本帖最后由 523066680 于 2014-7-5 17:42 编辑
论坛啥时候也支持个代码语法高亮?- [syntax lang="powershell"] [/syntax]
复制代码
# NOTE: RemoteRegistry Service needs to run on a target system!
$Hive = 'LocalMachine'
# you can specify as many keys as you want as long as they are all in the same hive
$Key = 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall', 'SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
# you can specify as many value names as you want
$Value = 'DisplayName', 'DisplayVersion', 'UninstallString'
# you can specify a remote computer name as long as the RemoteRegistry service runs on the target machine,
# you have admin permissions on the target, and the firewall does not block you. Default is the local machine:
$ComputerName = $env:COMPUTERNAME
# add the value "RegPath" which will contain the actual Registry path the value came from (since you can specify more than one key)
$Value = @($Value) + 'RegPath'
# now for each regkey you specified...
$Key | ForEach-Object {
# ...open the hive on the appropriate machine
$RegHive = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($Hive, $ComputerName)
# ...open the key in that hive...
$RegKey = $RegHive.OpenSubKey($_)
# ...find names of all subkeys...
$RegKey.GetSubKeyNames() | ForEach-Object {
# ...open subkeys...
$SubKey = $RegKey.OpenSubKey($_)
# ...and read all the requested values from each subkey
# ...to store them, use Select-Object to create a simple new object
$returnValue = 1 | Select-Object -Property $Value
$Value | ForEach-Object {
$returnValue.$_ = $subkey.GetValue($_)
}
# ...add the current regkey path name
$returnValue.RegPath = $SubKey.Name
# return the values:
$returnValue
# close the subkey
$SubKey.Close()
}
# close the regkey
$RegKey.Close()
# close the hive
$RegHive.Close()
} | Out-GridView |