我试图从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”的部分。
使用-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
虽然Get-Date
不支持查询远程计算机,但可以使用WMI检索远程计算机的日期/时间和时区信息。一个例子可以在this TechNet PowerShell Gallery page找到。使用基于Win32_LocalTime
类调整的Win32_TimeZone
类,将以易于转换为[DateTime]
的形式提供信息,以便在脚本中进一步使用。
您可以使用此功能获取所需的任何信息。我改编了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")
我意识到如果你没有启用PowerShell远程处理,这对你可能不起作用,但如果是这样的话,我会这样做。
Invoke-Command -ComputerName ComputerName -ScriptBlock {(Get-Date).ToShortTimeString()}