시스템 켜짐 시간 가져오기
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; }&#십삼;
-->
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Arduino에서 일정 단위 시간(프레임)마다 처리 진행예를 들면 10ms 주기로 처리를 제어하고 싶지만, 인터럽트 처리를 사용할 수 없는 때 로봇 제어 등으로 밀리초 단위로 처리를 진행하고 싶을 때가 있습니다. 인터럽트 처리를 사용하는 것도 손이지만 I2C와 인터럽트 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.