(imported topic written by SteveRinMa)
Hello,
We are currently rolling out Access points to all of our remote locations. I am trying to send a wireless profile out to all systems that will be able to access the wireless network through bigfix, so far my actions just return as complete but the system never has the profile showing up in the wireless networks connections list. If I run the command local it works with no problem. Here is my command
netsh wlan add profile filename=“Wireless Network Connection-Production.xml” user=all
My attempt at creating a batch file in the action script
// Remove any prior attempts
delete __appendfile
delete profile.bat
// Create the batch file
appendfile @ECHO OFF
netsh wlan add profile filename=“C:\WLAN\Wireless Network Connection-Production.xml” user=all
// batch file was created as __appendfile
// move it to a batch file name
move __appendfile profile.bat
Running cmd in action
extract WirelessNetworkConnection-Production.xml.tmp
DOS waithidden __Download\netsh wlan add profile filename=“Wireless Network Connection-Production.xml” user=all
Any help would be appreciated
Steve