返回列表 发帖

[转载代码] [PowerShell每日技巧]通过注册表查看时间服务器(20140326)

Maybe you'd like to get a list of timeservers registered in the Registry database. Then you probably run code like this:
Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers'COPY
$path = 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers'
$key = Get-Item -Path $path
Foreach ($valuename in $key.GetValueNames())
{
  if ($valuename -ne '')
  {
    $key.GetValue($valuename)
  }
}COPY
This code accesses the Registry key, and then uses its methods to get the value names, then dumps the values.

http://powershell.com/cs/blogs/tips/archive/2014/03/26/finding-time-servers-and-reading-all-regkey-values.aspx

返回列表