Can we send AT commands by using Microsoft Mobile Broadband APIs in Windows 8 laptop? I know there is SetCommand() method in IMBNDeviceService interface. Can we send AT commands through it? If so, what is the syntax. thanks.
Asked
Active
Viewed 532 times
1 Answers
0
No, you can't. The DeviceServices interfaces are for sending MBIM interface commands, defined here. You can use the Mobile Broadband API DeviceServices interfaces to see which MBIM interfaces are exposed by your device, defined by their GUIDs. The MBIM interfaces have their own commands, hence the SetCommand() method.
If you want to send AT commands, find the device's COM port, and use that instead. Not all modern devices expose a COM port.

user1725145
- 3,993
- 2
- 37
- 58
-
How do I find out the COM port used by my SIM card on laptop? Is there any specific driver I need to install? In DeviceManager I do not find any modems category. However the Sierra Skylight software detects my SIM card. – user3291904 Mar 09 '15 at 16:26
-
If you can't see a COM port in Windows Device Manager, then maybe the device does not expose one. Maybe the Sierra software uses the network adapter instead. You would have to ask the laptop manufacturer about a different driver. – user1725145 Mar 09 '15 at 16:50