The NIC is configured with the following commands:
- To determine the index value (##)
- wmic nic get name, index
- To Enable
- wmic path win32_networkadapter where index=## call enable
- To Disable
- wmic path win32_networkadapter where index=## call disable
I then have the batch file with a choice statement that allows me to select the option I want.
I found the original information on how to accomplish this task here.