Board logo

标题: [转载代码] [PowerShell每日技巧]通过注册表查看时间服务器(20140326) [打印本页]

作者: DAIC    时间: 2014-4-4 20:35     标题: [PowerShell每日技巧]通过注册表查看时间服务器(20140326)

Maybe you'd like to get a list of timeservers registered in the Registry database. Then you probably run code like this:
  1. Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers'
复制代码
  1. $path = 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers'
  2. $key = Get-Item -Path $path
  3. Foreach ($valuename in $key.GetValueNames())
  4. {
  5.   if ($valuename -ne '')
  6.   {
  7.     $key.GetValue($valuename)
  8.   }
  9. }
复制代码
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




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2