시스템 켜짐 시간 가져오기

2236 단어 시간
때때로 서버의 운행 시간을 계산하기 위해 시스템의 가동 시간을 얻어야 한다.
 
   1:  $RunTime = (Get-WmiObject -Class Win32_OperatingSystem -Namespace root\CIMV2).lastbootuptime
   2:  $Year = $RunTime.Substring(0,4)
   3:  $Month = $Runtime.Substring(4,2)
   4:  $Day = $Runtime.Substring(6,2)
   5:  $Hour = $Runtime.Substring(8,2)
   6:  $Min = $Runtime.Substring(10,2)
   7:  $Sec = $Runtime.Substring(12,2)
   8:  $RunTimeS = $Year + "-" + $Month + "-" + $Day + " " + $Hour + ":" + $Min + ":" + $Sec
   9:  $StartTime = [system.Convert]::ToDateTime($RunTimeS)
  10:  Write-Host " :"$StartTime

<!--&#십삼;
.csharpcode, .csharpcode pre
{
font-size: small;&#십삼;
color: black;&#십삼;
font-family: consolas, "Courier New", courier, monospace;&#십삼;
background-color: #ffffff;&#십삼;
/*white-space: pre;*/&#십삼;
}
.csharpcode pre { margin: 0em; }&#십삼;
.csharpcode .rem { color: #008000; }&#십삼;
.csharpcode .kwrd { color: #0000ff; }&#십삼;
.csharpcode .str { color: #006080; }&#십삼;
.csharpcode .op { color: #0000c0; }&#십삼;
.csharpcode .preproc { color: #cc6633; }&#십삼;
.csharpcode .asp { background-color: #ffff00; }&#십삼;
.csharpcode .html { color: #800000; }&#십삼;
.csharpcode .attr { color: #ff0000; }&#십삼;
.csharpcode .alt
{
background-color: #f4f4f4;&#십삼;
width: 100%;&#십삼;
margin: 0em;&#십삼;
}
.csharpcode .lnum { color: #606060; }&#십삼;
-->

좋은 웹페이지 즐겨찾기