Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vmlite autorun

Status
Not open for further replies.

bgaideski

Technical User
Mar 10, 2009
11
0
0
US
you all have been very helpful in the past. it always amazes me that this forum does a much better job at providing avaya support then avaya does.

i have yet another question. is there a way to autorun voicemail lite?

i put it in startup, so it launches with windows, however it still requires you to press the 'Run' button. is there a way you can launch the shortcut with a command to make it automatically start running?

thanks in advance!

-brian
 
It does "run" when the pc starts only you do not see it "run"



Homo sapiens non urinat in ventum

honey, i fried the IP Office !!!

 
so, just so i understand fully.

what im seeing that is not running, is actually just the console to view whats going one.... but when windows starts, it runs, with no output to a gui?

 
well ill definitely test it, but this is planning id like to do before i test it. its our main voicemail system here, so when i test it, voicemail will go down for a while. especially if it doesn't work. im just trying to do my best to eliminate that downtime.
 
When I do voicemail lite installs I just ensure that the voicemail lite .exe is in the startup folder and then voicemail works straight after the reboot (as long as the program starts, which it should).

The Run option under the console is only to display the info from the voicemail, it isnt needed for the voicemail to actually work.
 
thanks for all the help. i feel that im prepared to do the switchover from physical to virtual now.

-brian
 
we get it to run as a service....

Reg Update:

Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VoiceMail]
"Type"=dword:00000010
"Start"=dword:00000002
"ErrorControl"=dword:00000001
"ImagePath"=hex(2):43,00,3a,00,5c,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,\
  20,00,46,00,69,00,6c,00,65,00,73,00,5c,00,41,00,76,00,61,00,79,00,61,00,5c,\
  00,49,00,50,00,20,00,4f,00,66,00,66,00,69,00,63,00,65,00,5c,00,56,00,6f,00,\
  69,00,63,00,65,00,6d,00,61,00,69,00,6c,00,20,00,53,00,65,00,72,00,76,00,65,\
  00,72,00,5c,00,53,00,65,00,72,00,76,00,69,00,63,00,65,00,5c,00,73,00,72,00,\
  76,00,61,00,6e,00,79,00,2e,00,65,00,78,00,65,00,00,00
"ObjectName"=".\\Administrator"
"FailureActions"=hex:00,00,00,00,00,00,00,00,00,00,00,00,03,00,00,00,63,00,65,\
  00,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VoiceMail\Enum]
"0"="Root\\LEGACY_VOICEMAIL\\0000"
"Count"=dword:00000001
"NextInstance"=dword:00000001

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VoiceMail\Parameters]
"Application"="C:\\Program Files\\Avaya\\IP Office\\Voicemail Server\\VMLite.exe"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VoiceMail\Security]
"Security"=hex:01,00,14,80,90,00,00,00,9c,00,00,00,14,00,00,00,30,00,00,00,02,\
  00,1c,00,01,00,00,00,02,80,14,00,ff,01,0f,00,01,01,00,00,00,00,00,01,00,00,\
  00,00,02,00,60,00,04,00,00,00,00,00,14,00,fd,01,02,00,01,01,00,00,00,00,00,\
  05,12,00,00,00,00,00,18,00,ff,01,0f,00,01,02,00,00,00,00,00,05,20,00,00,00,\
  20,02,00,00,00,00,14,00,8d,01,02,00,01,01,00,00,00,00,00,05,0b,00,00,00,00,\
  00,18,00,fd,01,02,00,01,02,00,00,00,00,00,05,20,00,00,00,23,02,00,00,01,01,\
  00,00,00,00,00,05,12,00,00,00,01,01,00,00,00,00,00,05,12,00,00,00

Batch File
Code:
ECHO OFF
CLS
ECHO Installing VMLite Service....
ECHO.
ECHO.
ECHO Creating VMLite Service Directory...
ECHO.
MKDIR "C:\Program Files\Avaya\IP Office\VoiceMail Server\Service"
ECHO Copying SRVANY...
ECHO.
COPY Service\*.* "C:\Program Files\Avaya\IP Office\VoiceMail Server\Service\*.*"
ECHO Importing Registry Entries...
ECHO.
REGEDIT/S RegUpdate.reg
ECHO.
ECHO Installation Complete.
ECHO.
PAUSE

Just make sure you have srvany.exe and instsrv.exe from the win2k3 resource kit with you and job done!



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top