Powershell脚本只从NET TIME命令获取小时和分钟

时间:2018-01-03 18:33:16

标签: regex windows powershell time ob-get-contents

我正在尝试从PowerShell脚本中仅检索日期和时间,以下是我到目前为止所尝试的内容:

脚本:

NET TIME \\ComputerName | Out-File $location

(Get-Content $location)  | % {
    if ($_ -match "2018 : (.*)") {
        $name = $matches[1]
        echo $name
    }
}

net time输出如下:

Current time at \\Computer Name is 1/3/2018 1:05:51 PM

Local time (GMT-07:00) at \\Computer Name is 1/3/2018 11:05:51 AM

The command completed successfully.

我只需要当地时间的部分" 11:05"。

4 个答案:

答案 0 :(得分:2)

虽然Get-Date不支持查询远程计算机,但可以使用WMI检索远程计算机的日期/时间和时区信息。可以在this TechNet PowerShell Gallery page找到一个示例。使用基于Win32_LocalTime类调整的Win32_TimeZone类,将以易于转换为[DateTime]的形式提供信息,以便在脚本中进一步使用。

答案 1 :(得分:0)

使用-match测试正则表达式 然后使用autogenerated $ matches array

检查匹配项
PS> "Current time at \Computer Name is 1/3/2018 1:05:51 PM Local time (GMT-07:00) at \Computer Name is 1/3/2018 11:05:51 AM" -match '(\d\d:\d\d):'
True
PS> $matches
Name                           Value
----                           -----
1                              11:05
0                              11:05:

PS> $matches[1]
11:05

答案 2 :(得分:0)

我意识到如果您没有启用PowerShell远程处理,这可能对您不起作用,但如果是,我会这样做。

Invoke-Command -ComputerName ComputerName -ScriptBlock {(Get-Date).ToShortTimeString()}

答案 3 :(得分:0)

您可以使用此功能获取您想要的任何信息。我改编了this script的代码。它将使用LocalDateTime获得的Get-WmiObject值转换为DateTime对象。此后,您可以使用日期信息执行任何操作。您也可以调整它以使用您想要的任何DateTime变量(即上次启动时间)。

代码

function Get-RemoteDate {
    [CmdletBinding()]
    param(
        [Parameter(
            Mandatory=$True,
            ValueFromPipeLine=$True,
            ValueFromPipeLineByPropertyName=$True,
            HelpMessage="ComputerName or IP Address to query via WMI"
        )]
        [string[]]$ComputerName
    )
    foreach($computer in $ComputerName) {
        $timeZone=Get-WmiObject -Class win32_timezone -ComputerName $computer
        $localTime=([wmi]"").ConvertToDateTime((Get-WmiObject -Class Win32_OperatingSystem -ComputerName $computer).LocalDateTime)
        $output=[pscustomobject][ordered]@{
            'ComputerName'=$computer;
            'TimeZone'=$timeZone.Caption;
            'Year'=$localTime.Year;
            'Month'=$localTime.Month;
            'Day'=$localTime.Day;
            'Hour'=$localTime.Hour;
            'Minute'=$localTime.Minute;
            'Seconds'=$localTime.Second;
        }
        Write-Output $output
    }
}

使用以下任一方法调用该函数。第一个用于单台计算机,第二个用于多台计算机。

Get-RemoteDate "ComputerName"
Get-RemoteDate @("ComputerName1", "ComputerName2")