Results 1 to 5 of 5

Thread: Vbscript Installing automatic software

  1. #1
    Join Date
    Dec 2008
    Posts
    27

    Vbscript Installing automatic software

    Hello,

    I would like to create a script to automate installation of soft.

    I would like user to ticks the right box, click next, informs the path setup etc ...

    Can you help me on this method? (link, code etc.)

    Thank you in advance

  2. #2
    Join Date
    Mar 2008
    Posts
    198

    Re: Vbscript Installing automatic software

    Why do not you Msi packaging? There are many third part msi packagin tools are available for this.

    Have a look at this article : How to create a third-party Microsoft Installer package

  3. #3
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Vbscript Installing automatic software

    I use the Wise for Windows Installer to create MSI packages, This MSI tool is fully compatible with Microsoft .MSI standards, and it also extends the capabilities of .MSI packages without making changes to their native format. You can download this Wise for Windows Installer Guide to know it more better.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    Re: Vbscript Installing automatic software

    On the installation CD winxp you have a tool called WinINSTALL. Image before, after and register files, which I believe can create the msi.

    After you must use a script to deploy. If you absolutely want to use a single vbs script, the process is much the same: copy/paste your files (this is especially true for Notes) and possible execution of a registry file.

    For Notes it will modify the notes.ini (hence the script is relevant) to customize it directly without user interaction.

  5. #5
    Join Date
    Apr 2008
    Posts
    1,948

    Re: Vbscript Installing automatic software

    suppose your setup is at rd \\Server\folder\setup.exe /s

    then try out the following vbscript:

    Set WSHShell = CreateObject("Wscript.Shell")
    WSHShell.Run "\\Server\folder\setup.exe /s",0,true
    0 shows installing setup silent , means only the .bat process will be visible true means wait in vbscript progressing until the bat process gets ended!

Similar Threads

  1. Need software for automatic backup from hard drive
    By Sparrow in forum Software Development
    Replies: 5
    Last Post: 29-09-2011, 11:50 AM
  2. how to create automatic self extracting zip file in vbscript
    By vivekmohan in forum Software Development
    Replies: 1
    Last Post: 03-09-2009, 09:10 AM
  3. Replies: 7
    Last Post: 18-03-2008, 08:40 AM
  4. Automatic Updates Not Installing?????????????
    By Hardik in forum Windows XP Support
    Replies: 3
    Last Post: 04-02-2008, 02:47 AM
  5. VBScript runtime error installing MS Win Installer Cleanup Utility
    By Han's Son in forum Vista Setup and Install
    Replies: 1
    Last Post: 05-11-2007, 02:12 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,555,061.25301 seconds with 16 queries