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

问题描述 投票:0回答:4

我试图从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”的部分。

regex windows powershell time ob-get-contents
4个回答
0
投票

使用-match测试正则表达式然后使用autogenerated $ matches数组检查匹配项

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
投票

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


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")

0
投票

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

Invoke-Command -ComputerName ComputerName -ScriptBlock {(Get-Date).ToShortTimeString()}
© www.soinside.com 2019 - 2024. All rights reserved.