- Moderator
- #301
Actualized complete set in first post
That's because you're missing the VC++ 2013 redistributable.This program can't start because MSVCP120.dll is missing from your computer. Try reinstalling the program to fix this problem.
Basically same as before, but this time the filename does not have the D on the end.
I use it regularly, and I really enjoy itPlugin didn't have much interest so I just dropped it
if (!m_skypeAccess.Client.IsRunning)
{
Log.Debug("Skype4MP ==> Starting Skype client");
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = @"C:\Program Files (x86)\Skype\Phone\Skype.exe";
startInfo.Arguments = "/secondary /username:USERNAME /password:PASSWORD";
startInfo.CreateNoWindow = true;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
System.Diagnostics.Process.Start(startInfo);
//m_skypeAccess.Client.Start(false, false);
Log.Debug("Skype4MP ==> Started Skype client");
}
m_skypeAccess = new SKYPE4COMLib.Skype();
if (!m_skypeAccess.Client.IsRunning)
{
m_skypeAccess.Client.Start(false, false);
}
// This should be handled in another thread.
m_skypeAccess.SilentMode = true;
cmd.Command = "SET SILENT_MODE ON"
cmd.Blocking = true;
cmd.Expected = s;
m_skypeAccess.SendCommand(cmd);