Questions tagged [mobile-broadband-api]

The Mobile Broadband API is an API available from Windows 7 onward that unifies broadband connection management

The Mobile Broadband API is designed for C++ developers. There is also an interface for .NET developers using C# or VB.Net, through COM interop.

The Mobile Broadband API can be used by third-party applications that need to control and manage mobile broadband interfaces.

The documentation can be found here: http://msdn.microsoft.com/en-us/library/windows/desktop/dd323271.aspx

27 questions
1
vote
0 answers

Windows 8 Mobilebroadband Changing Logo in NetworkFlyout via Branding of CarrierControlSchema

I tried to changed the logo in the network flyout which is set via the DeviceMetaDataFile via the CarrierControlSchema. Right now I have a working Provisioning XML file and I added the branding tags. Changing the Name is no Problem, that changes are…
1
vote
1 answer

How to deregister correctly from receiving notifications using IConnectPoint Unadvise?

In the documentation for Mobile Broadband API, it says: The following procedure describes how to register for notifications. 1.Get an IConnectionPointContainer interface by calling QueryInterface on an IMbnInterfaceManager > object. 2.Call…
user1725145
  • 3,993
  • 2
  • 37
  • 58
0
votes
0 answers

How to register the events using C++ WinRT in console application?

I'm trying to understand how to register the events using C++ WinRT using console application. void Radio_StateChanged(Windows::Devices::Radios::Radio const& sender, Windows::Foundation::IInspectable const& args) { printf("\t Radio_StateChanged…
user16933547
0
votes
1 answer

Windows 7 Mobile Broadband API - Crash with no exception

The following code exits before it finishes with no exception: private void Form1_Load(object sender, EventArgs e) { MbnConnectionManager connectionManager = new MbnConnectionManager(); IMbnConnectionManager…
Adam Baxter
  • 1,907
  • 21
  • 41
0
votes
0 answers

Windows10 - Change SIM PIN with script

I need to configure about 200 tablet pc (Windows 10, anniversary version). On each, I must change SIM PIN and disable prompt for it. I'm able to start cellular settings with ms-settings:network-cellular but cannot access the Advanced options tab. Is…
Pitinonoz
  • 1
  • 2
0
votes
1 answer

Connecting to Mobile Network via Mobile Broadband API

I am trying to connect to a mobile network via a modem and a sim card. Every time I try to set the APN String and User Credentials in a Context via SetProvisionedContext() I get the E_INVALIDARG HRESULT. As Parameters I used an Instance of…
Stefan
  • 1
  • 4
0
votes
1 answer

How to send and receive SMS programmatically in Windows 10 using MBN?

We have a program that sends and receives SMS messages via the MBN IMbnSms interface and a 2G/3G/4G modem. Our code works in Windows 7 and Windows 8.x, but fails in Windows 10. IMbnSms.GetSmsStatus() always returns 0x8000000A (E_PENDING) error,…
user3350539
  • 83
  • 1
  • 7
0
votes
2 answers

unable to execute /usr/bin/qmicli: No such file or directory

I am using linux kernel 3.6.9 with Sierra wireless MC7354. This module plugged with Verizon wireless activated sim card with ARM9 processor based embedded board. By enabling kernel qcserial driver and qmi_wwan drivers, we are able to get ifconfig –a…
Jammy1
  • 11
  • 4
0
votes
1 answer

Need an alternative to Mobile Broadband API in WinRT

I am trying to use Mobile Broadband API Interfaces to get mobile device information like IMEI,etc., on Windows RT tablet. You can find the API reference here I am planning to do a console application to retrieve information as shown in an example…
0
votes
1 answer

Use Mobile Broadband API for getting location details

Can I get cellID, LAC, MNC and MCC by using Mobile Broadband API in Windows 8? I have a Windows 7 Location application which opens SIM serial port and gets the cellID, LAC, MNC and MCC details and sends those details to unwired API and gets location…
0
votes
1 answer

What stops Windows from having an open IP connection when an LTE modem is plugged in?

When you plug in an LTE modem, as part of the attach process to the LTE network, it sets up a default EPS bearer to carry signalling traffic. This default bearer is an IP connection with a Traffic Flow Template suitable for signalling traffic. The…
-1
votes
1 answer

What is eth_dr in ethernet ip in c++/C?

i want to write a line of code inside a driver module to get support on Mobile broadband . This is the code : PUCHAR pCurrData; struct eth_hdr *pEthHeader = (struct eth_hdr*)pCurrData; NET_BUFFER_LIST_INFO(pNBL, NetBufferListFrameType) =…
vinay kp
  • 35
  • 8
1
2