https://community.spiceworks.com/how_to/24989-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
) 

 

Leave a Reply

Your email address will not be published. Required fields are marked *