Can I run Skype for Windows desktop from the command line ?
@echo off
If Exist "%ProgramFiles(x86)%\Skype\Phone\" (
CD /D "%ProgramFiles(x86)%\Skype\Phone\"
start "" skype.exe /minimized
) Else (
CD /D "%ProgramFiles%\Skype\Phone\"
start "" skype.exe /minimized
)
You can also supply the following arguments:
/nosplash ====> Do not display splash screen when Skype starts.
/minimized ====> Skype is minimized to system tray when it starts.
/callto:nameornumber ====> Call the specified Skype Name or phone number.
/shutdown ====> Close Skype.
/secondary ====> Allows you to start an additional skype.exe instance.