欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

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

 

使用以下命令,直接获取服务器启动时间:

Powershell - 获取服务器启动时间

 

 通过以下脚本,批量获取服务器的启动时间:

$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
}