Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: command in DOC for doing the silent installation without any popup ?  (Read 7926 times)

0 Members and 1 Guest are viewing this topic.

navneet

  • Guest
What command i have to use , to do the silent installation by .bat file so that during installation , it should not give any poup wizard.

diablo416



    Hopeful
    Re: command in DOC for doing the silent installation without any popup ?
    « Reply #1 on: January 05, 2009, 07:15:46 AM »

    try this,

    CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False

    ^ put the above in a .vbs file, file.vbs

    Then use wscript.exe to start your batch file
    wscript.exe "c:\file.vbs" "c:\other folder\batch.bat"