Skip to content

Instantly share code, notes, and snippets.

@timku
Last active October 29, 2020 13:10
Show Gist options
  • Save timku/7638fecd7e5c7122b028e4a0f527d9ae to your computer and use it in GitHub Desktop.
Save timku/7638fecd7e5c7122b028e4a0f527d9ae to your computer and use it in GitHub Desktop.
Windows backup/restore Wifi settings for all access points
@echo off
if not exist data mkdir data
netsh wlan export profile key=clear folder=data
echo -------
echo DONE
echo -------
pause
@echo off
for /r %%i in (data\*.xml) do (
echo Restoring: %%i
netsh wlan add profile filename="%%i" user=all
)
echo -------
echo DONE
echo -------
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment