Go Back   TechArena Community > Software > Software Development
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , , ,

Sponsored Links



Vbscript Installing automatic software

Software Development


Reply
 
Thread Tools Search this Thread
  #1  
Old 19-01-2010
Din_the1's Avatar
Member
 
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
Reply With Quote
  #2  
Old 20-01-2010
aftab1's Avatar
Member
 
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
Reply With Quote
  #3  
Old 20-01-2010
Reegan's Avatar
Member
 
Join Date: Oct 2005
Posts: 2,299
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.
Reply With Quote
  #4  
Old 20-01-2010
kelfro's Avatar
Member
 
Join Date: Apr 2008
Posts: 1,976
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.
Reply With Quote
  #5  
Old 20-01-2010
Praetor's Avatar
Member
 
Join Date: Apr 2008
Posts: 1,937
Re: Vbscript Installing automatic software

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

then try out the following vbscript:

Quote:
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!
Reply With Quote
Reply

  TechArena Community > Software > Software Development


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Vbscript Installing automatic software"
Thread Thread Starter Forum Replies Last Post
Need software for automatic backup from hard drive Sparrow Software Development 5 29-09-2011 12:50 PM
how to create automatic self extracting zip file in vbscript vivekmohan Software Development 1 03-09-2009 10:10 AM
Automatic Updates Not Installing????????????? drb Windows XP Support 3 04-02-2008 02:47 AM
VBScript runtime error installing MS Win Installer Cleanup Util Cynthia Vista Setup and Install 2 05-11-2007 02:12 PM
Automatic Disk Defragmentation Software coolvicki7 Windows Software 3 11-09-2007 12:02 PM


All times are GMT +5.5. The time now is 03:58 AM.