I use a USB wifi device that links up to home network. My startup sequence for programs have a command in to disable the wifi, that way it cant' interfere with code running. Works well. Also have a button that I have programmed on the screen that synchronizes the folders on the network drive to the Mach controller.

Something like this to disable wifi:

' M1000.m1s
' Turn off Wifi
dim z as integer
z=Shell("wmic path win32_networkadapter where index=14 call disable",1)

And here is code for sync of folders:

Dim z As Integer

z=Shell("xcopy \\DLINK_NAS323\Volume_1\GCode C:\GCode /S /Y /D",1)

Regards,

Geo