Powershell - 获取服务器启动时间
程序员文章站
2022-06-19 18:15:07
www.orangeisland.cn 使用以下命令,直接获取服务器启动时间: 通过以下脚本,批量获取服务器的启动时间: $TextPath = "C:\Users\admin\Desktop\serverlist.txt";$TxtCon=Get-Content($TextPath)foreach ......
www.orangeisland.cn
使用以下命令,直接获取服务器启动时间:
通过以下脚本,批量获取服务器的启动时间:
$textpath = "c:\users\admin\desktop\serverlist.txt";
$txtcon=get-content($textpath)
foreach($linecon in $txtcon)
{
echo $linecon
get-wmiobject win32_operatingsystem -computername $linecon | fl csname,lastbootuptime,name >>c:\users\admin\desktop\bootup_result.txt
}