Hello – is it possible to set the AUTOSTART flag in a tcl script and save the changes in or into the NetConfig file?
Tried the commands below and can reset the AUTOSTART flag in tcl, but is it possible to somehow get the AUTOSTART changes into the NetConfig file? Thanks in advance.
hcitcl>netcfgLoad
hcitcl>set jdData [netconfig get connection data “jd_in_tcpipNEW_MOD” ]
hcitcl>keylget jdData AUTOSTART newAuto
1
hcitcl>puts $newAuto
0
hcitcl>keylset jdData AUTOSTART 1
hcitcl>keylget jdData AUTOSTART newAuto
1
hcitcl>puts $newAuto
1
[ How can I get the new setting into the NetConfig file from the tcl script? ]