On Sun, Dec 20, 2009 at 1:52 PM, Kaushal Shriyan
<kaushalshri...@gmail.com> wrote:
> On Sat, Dec 19, 2009 at 4:53 PM, FwdTmp <fwd...@freemail.hu> wrote:
>> hi!
>>
>> command line win printer installation sucks. really. I have been
>> trying fog ages with only a bit of success (there are tools for it,
>> but when you do it "manually" the unattended installation works, but
>> when you call it from a script, it does nothing (not even error
>> messages!). if anyone can solve it, do it fast :) because time of
>> printing will run out faster... ;)
>>
>>
>>> I've never tried setting up unattended install of a network printer, so
>>> I can't help you, sorry. I suggest you search on the web to see if you
>>> can find more information about setting up shared network printers from
>>> the command-line, and trying out the commands on a computer before
>>> actually adding it to the unattended installation.
>>
>>
>>
>>
>> ------------------------------------------------------------------------------
>> This SF.Net email is sponsored by the Verizon Developer Community
>> Take advantage of Verizon's best-in-class app development support
>> A streamlined, 14 day to market process makes app distribution fast and easy
>> Join now and get one step closer to millions of Verizon customers
>> http://p.sf.net/sfu/verizon-dev2dev
>> _______________________________________________
>> unattended-info mailing list
>> unattended-info@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/unattended-info
>>
>
> Hi Again
>
> I am able to install outlook2003 unattended but the issue is that I
> need to click on OK button manually.
>
> is there a way to handle it automatically unattended
>
> I came to know about send keys but not sure how to use it ?
>
> Thanks and Regards,
>
> Kaushal
>

Hi,

sendkeys.vbs

###################################
set shell = createobject("wscript.shell")
wscript.sleep 1500
shell.SendKeys "{ENTER}"
###################################


outlook.bat
########################################################
@Echo off

set ooo_install=%Z%\packages\outlook2003\setup.exe

start %windir%\system32\cscript.exe %Z%\scripts\sendkeys.vbs &&
todo.pl ".reboot-on 194 %ooo_install%"

goto exit

:exit
########################################################

Does it make sense ?

Please advice

Thanks and Regards,

Kaushal

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to