Must be a betterway to image
Results 1 to 4 of 4

Thread: Must be a betterway to image

  1. #1
    Registered User
    Join Date
    Jul 2005
    Posts
    1

    Question Must be a betterway to image

    After imaging the computer using Ghost. There are still a number of applications that need to be installed. My thought is to create a batch file that will call the applications or setup files and for the process to run consecutively. How can this be done?
    __________________
    Newby317

  2. #2
    Registered User TechZ's Avatar
    Join Date
    Apr 2003
    Location
    Bahrain, Middle East
    Posts
    7,525
    http://unattended.msfn.org/

    There is soo much info on it, and the forums there are packed with info on how to do this.

  3. #3
    Registered User InTheWayBoy's Avatar
    Join Date
    Feb 2000
    Location
    Jacksonville, FL USA
    Posts
    435
    Yeah, that's what I use for default WinXP installs...Win9x is still decent with ghost.

    You'll want to read that guide front-to-back, then check out the forums. They have several tools that can help automate and display software installations. WPI is the one I use. I have it setup so that it has the default items checked, then if nothing happens after two minutes it installs those items. So you run that after an install via a batch files or script and then walk away. And it looks pretty too!

  4. #4
    Registered User InTheWayBoy's Avatar
    Join Date
    Feb 2000
    Location
    Jacksonville, FL USA
    Posts
    435
    Forgot about the batch file part:

    Code:
    start /wait setup.exe /S
    That's a pretty normal command...start is the command that just loads something, /wait is the switch to make it wait until the program has terminated, setup.exe is the file you want start to launch, and /S is a common switch for setup.exe to run silently...or without any screens.

    As a basic script you could prepare a directory with all the programs you want to install and just duplicate that line over and over in a batch file. Then just run it manually or through another batch file and you're done.

    Thing is, each setup.exe is different...some use /S, /s, /silent, and even /verysilent. And .msi installers are different as well. You can't just call those with the normal start command.

    In the msfn.org forums there is a section called appliction installs that has a wealth of info on almost any program. This info includes what switch to use to install it without prompt, including setup options, and importing serial numbers and such.

    As a tip, if you don't want certain icons to stay after installing all your programs, just hunt down the icon and copy the full path. Then insert this into your batch file...at the end of course.

    Code:
    del "C:\Documents and Settings\%USERNAME%\Desktop\QuickPar.lnk"
    Edit accordingly...good luck!

Similar Threads

  1. $2000+ image.....lost forever?
    By Archangel42069 in forum Tech-To-Tech
    Replies: 26
    Last Post: April 25th, 2003, 11:16 PM
  2. Ghosting a Drive
    By TheCardMan in forum Tech-To-Tech
    Replies: 2
    Last Post: December 29th, 2002, 09:29 PM
  3. [RESOLVED] w2k image creation
    By nechronius in forum Windows NT/2000
    Replies: 4
    Last Post: October 12th, 2001, 05:34 PM
  4. Bootable image? Repair utils?
    By PitaBred in forum Tech-To-Tech
    Replies: 3
    Last Post: May 30th, 2001, 06:56 AM
  5. [RESOLVED] Need help with burning a Linux ISO image.
    By quinn1981 in forum CD-ROM/CDR(-W)/DVD Drivers
    Replies: 1
    Last Post: August 3rd, 2000, 05:03 PM

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
  •