Category: Links
Export & Import Wireless Network Info on Windows machines
Create a batch file and add it to the GPO.
This Batch file checks if the name exist. If not, WLAN will be created.
@echo off netsh wlan show profiles | find /i "<Wifi-Name>" if errorlevel 1 ( netsh wlan add profile filename="\\<DOMAIN>\NETLOGON\<XMLNAME>" user=all )