1
Answer

GSM Modem Problem Connection

Shakeel Ahmed

Shakeel Ahmed

8y
315
1
Can you tell how to connect serial port with my c# app in windows 10, i have google from last 12 days and do a lot work but serial ports are not founds and gsm modem is not connecting, i try to getSerialPortsName() fun , Manager fun  but only return string[] empty arry
 
Shakeel ahmed
ahmedshakeelpk@gmail.com
0092-321-9525315 
Answers (1)
1
Kashif Asif

Kashif Asif

NA 462 54.8k 8y

Attachment SerialPort.zip

NOTE: Required Drivers for GSM Modem should be installed first.
 
 First Import System.Management in your project References. to import this,
right click on  References then click on add References then select assemblies from left sidebar and search for System.Management, select it and add.
 and use this namespace
 
using System.Management;
 
now You can fetch GSM Devices List connected to your laptop using WMI Query
 
ManagementObjectSearcher devices = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM win32_SerialPort");
 
then connect it using SerialPort Class.
 
// Pass COM Port to SerialPort object.
System.IO.Ports.SerialPort _Port = new System.IO.Ports.SerialPort("COM4");
 
complete code is attached.