본문으로 바로가기
반응형

 

community.spiceworks.com/how_to/24989-export-import-wireless-network-info-on-windows-machines

 

netsh wlan show profiles 모든 프로파일 보기
netsh wlan export profile key=clear 암호가 보이게 모두 추출
netsh wlan export profile 모든 프로파일 각각 xml로 추출 , 암호는 보이지않게
netsh wlan export profile "SSID이름" folder=c:\temp
netsh wlan add profile filename=filename user=all 추출한 프로파일 xml 추가하기

 

프로파일 삭제하기

netsh wlan delete profile "SSID이름"

 

For구문으로 여러개의 xml 임포트

xml 파일명에 띄워쓰기 없도록

 

FOR /F "tokens=* usebackq" %%a IN (`dir .\*.XML /b/a-d/one`) DO (
  if exist .\%%a netsh wlan add profile %%a user=all >nul
  echo %%a 무선랜 재설정중..
  )
 

user=all 은 모든 사용자에게(윈도우 계정 여럿일때) 

 

적당히 배치파일 꾸며서 사용

반응형