Export & Import Wireless Network Info on Windows machines

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
)