질문과 답변
하드웨어 갑자기 컴퓨터가 지맘대로 종료, 재부팅합니다
2024.03.25 16:00
윈도우에서 맘대로 종료하거나, 종료 상태에서 지혼자 재부팅합니다.
어디가 문제일까요?
어디가 문제일까요?
댓글 [3]
-
장스 2024.03.25 16:35
-
YoungSS 2024.03.25 16:44
하드웨어쪽인지, 윈도우 문젠지 모르겠지만
이벤트 로그에 꺼진거/재부팅에 대한 기록이 있어요.
밑의 코드를 복사해 파워쉘[관리자]에 쳐보세요. 날짜순으로 20개 리스트가 뜹니다.
Clear-Host Get-WinEvent -FilterHashtable @{logname = 'System'; id = 1074,6008} | ` Sort TimeCreated -Desc | Select -First 20 | ForEach-Object { $EventData = New-Object PSObject | Select-Object Date, EventID, User, ` Action, Reason, ReasonCode, Comment, Computer, Message, Process $EventData.Date = $_.TimeCreated $EventData.User = $_.Properties[6].Value $EventData.Process = $_.Properties[0].Value $EventData.Action = $_.Properties[4].Value $EventData.Reason = $_.Properties[2].Value $EventData.ReasonCode = $_.Properties[3].Value $EventData.Comment = $_.Properties[5].Value $EventData.Computer = $env:ComputerName $EventData.EventID = $_.id $EventData.Message = $_.Message $EventData | Select-Object Date, Computer, EventID, Action, ` User, Reason, Message }
님은 한글로 표시될겁니다.
-
brucex 2024.03.25 22:22
고맙습니다.
케이스 전원버튼을 먼저 의심해보세요.