Windows 운영 체제에는 고객 위치에서 무선 문제를 분석할 때 유용하게 사용할 수 있는 로그가 많이 있습니다. 특히 이러한 문제를 다른 네트워크 환경에서 복제할 수 없는 경우 더욱 그렇습니다.
이전 테스트에서 이미 존재하는 로그:
WLANAutoconfig.log
이벤트 뷰어의 파일(캐비닛(CAB) 파일로 컴파일되지 않은 경우)을 찾아 Windows 이벤트 뷰어에서 수동으로 저장할 수 있습니다.
Wlan-autoconfig
폴더.NETSH
아래 스크립트는 C:\wlogs 폴더로 출력됩니다.WLAN-autoconfig
진단 로깅
활성화할 수 있습니다. WLAN-autoconfig
향후 테스트 전에 SUT(테스트 중인 시스템)에 진단 로그인합니다. 이는 좀 더 자세한 로그 메시지를 사용해 도움이 될 수 있습니다. 다음 지침을 사용합니다.
진단 로그 활성화하는 방법:
Wlan-Autoconfig
Wlan-Autoconfig
폴더.NETSH
출력 CAB 폴더.
Netsh
참조용 스크립트 텍스트: (아래 텍스트를 복사하여 메모장에 붙여넣고 파일을 ETL.bat
)
@echo off
rem PASTE THIS SCRIPT INTO NOTEPAD AND SAVE AS A .BAT FILE. RT CLICK THE FILE AND RUN AS ADMINISTRATOR.
rem DO NOT CREATE DIRECTORY IF IT ALREADY EXISTS
if exist c:\wlogs goto SKIPMKDIR
mkdir c:\wlogs
:SKIPMKDIR
rem BEGIN TRACE
netsh ras set tracing * enable
rem BUNDY, I WOULD LIKE TO DYNAMICALLY GENERATE THE FILENAME wlan001.etl TO AVOID WRITING OVER PREVIOUS LOGS
SET file1=1
IF EXIST c:\wlogs\wlan%file1%.etl GOTO nextlog
netsh trace start scenario=wlan tracefile=c:\wlogs\wlan1.etl capture=yes persistent=yes maxsize=250 report=yes
filemode=append
GOTO filedone
:nextlog
SET /A "file1+=1" IF EXIST c:\wlogs\wlan%file1%.etl GOTO nextlog
netsh trace start scenario=wlan tracefile=c:\wlogs\wlan%file1%.etl capture=yes persistent=yes maxsize=250 report=yes
filemode=append
:filedone
rem DISPLAY PROMPT TO PRESS ANY KEY TO STOP THE CAPTURE
set /p =Press any key to stop the capture. < nul
pause > nul
rem STOP TRACE
netsh trace stop
rem DISPLAY RESULTS AND PROMPT TO HIT ANY KEY BEFORE ENDING
pause