skypiax: added configs/windows-service directory, contains batch files needed to start skype instances as service, and then start FreeSwitch
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14359 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
a81f073bd2
commit
6b12792bec
|
@ -0,0 +1,61 @@
|
|||
echo off
|
||||
|
||||
REM
|
||||
REM you MUST use the new Skype BETA (4.x) for Windows, older versions (3.x) cannot be started this way
|
||||
REM
|
||||
REM you have to adjust PATH to where the Skype executable is
|
||||
set PATH=%PATH%;C:\Program Files\Skype\Phone\
|
||||
|
||||
REM echo %PATH%
|
||||
|
||||
REM start a Skype client instance that will login to the Skype network using the "username password" you give to it.
|
||||
REM Here ciapalo would be the password and skypiax1 the username
|
||||
|
||||
start Skype.exe /secondary /username:skypiax20 /password:ciapalo
|
||||
call C:\wait.cmd 20
|
||||
|
||||
start Skype.exe /secondary /username:skypiax19 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
|
||||
REM
|
||||
REM Following Skype client instances are commented out
|
||||
REM
|
||||
|
||||
start Skype.exe /secondary /username:skypiax18 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax17 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax16 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax15 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax14 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax13 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax12 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax11 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax10 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax9 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax8 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax7 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax6 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax5 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax4 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax3 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax2 /password:ciapalo
|
||||
call C:\wait.cmd 5
|
||||
start Skype.exe /secondary /username:skypiax1 /password:ciapalo
|
||||
call C:\wait.cmd 120
|
||||
NET start AICCU2
|
||||
pause
|
|
@ -0,0 +1,4 @@
|
|||
REM would you believe there is no sleep() in standard windows batchfiles?
|
||||
@ping 127.0.0.1 -n 2 -w 1000 > nul
|
||||
@ping 127.0.0.1 -n %1% -w 1000> nul
|
||||
|
Loading…
Reference in New Issue