I searched on the interest, it said the Skype4com already stopped working in 2014, and only Skype URIs are official supported.
However, Skype URIs seems only support web browser.
Is there anyway to control Skype in C++/C# on PC?
I searched on the interest, it said the Skype4com already stopped working in 2014, and only Skype URIs are official supported.
However, Skype URIs seems only support web browser.
Is there anyway to control Skype in C++/C# on PC?
Use this in C#,
ProcessStartInfo PInfo = new ProcessStartInfo();
PInfo.Domain = "Domain";
PInfo.UserName = "YourUserName";
PInfo.Password = "YourPassword";
PInfo.FileName = @"C:\Program Files (x86)\Skype\Phone\Skype.exe";
PInfo.UseShellExecute = false;
Process skype = Process.Start(PInfo);
here Change @"C:\Program Files (x86)\Skype\Phone\Skype.exe"
to directory where your skype is installed, and other parameters as well,