Results 1 to 16 of 16

Thread: Installing On Multiple Computers...?

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2007
    Posts
    7

    Installing On Multiple Computers...?

    Hello,

    I work at a Computer store and we sell around 3 computers a day. We offer a free service to get your computer up and running and I was wondering if anyone can give me some pointers if I can make someing using VB6 too:

    - Install a freeware Antivirus program
    - Install a freeware Antispyware program
    - Create Recovery DVD's
    - Change settings (Unlock the taskbar is a prime example)

    Is this possible? Sorry for the short post just posting this quickly on a lunch break.

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Installing On Multiple Computers...?

    Welcome to the forums.

    1 and 2 seem like nothing more than executing an existing .EXE file - for that you can use the ShellExecute API

  3. #3
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Installing On Multiple Computers...?

    a recovery dvd is slightly more complicated but the function actually exists in windows already. you can run msbackup and tell it to backup EVERYTHING and it will. Then if you have a crash you reinstall OS and restore the backup file.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  4. #4
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Installing On Multiple Computers...?

    What kind of "change settings" (other than the taskbar) did you have in mind?

  5. #5
    PowerPoster
    Join Date
    Feb 2006
    Location
    East of NYC, USA
    Posts
    5,691

    Re: Installing On Multiple Computers...?

    Quote Originally Posted by quinn_j_n
    - Install a freeware Antivirus program
    - Install a freeware Antispyware program
    Put them both on the same CD and run a batch (on the CD) file to run them both. It will be even easier if they have unattended install modes.
    - Create Recovery DVD's
    Recovery in what way? The normal recovery CD is included by the OEM.
    - Change settings (Unlock the taskbar is a prime example)
    There should be code to do this somewhere in the forums. Write the program, make an install package and install it to the master CD image. Then include it in the batch file.
    The most difficult part of developing a program is understanding the problem.
    The second most difficult part is deciding how you're going to solve the problem.
    Actually writing the program (translating your solution into some computer language) is the easiest part.

    Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.

    Please Help Us To Save Ana

  6. #6

    Thread Starter
    New Member
    Join Date
    Oct 2007
    Posts
    7

    Re: Installing On Multiple Computers...?

    Sorry for taking so long to reply.

    I dont have a sheet of exactly what we do but I will run you through it.

    First of all Computers dont come with the recovery cd/dvd's any more so we create them for the customer free of charge.

    The programs that we install for the customers are AVG Free Edition and Spybot Search and Destroy, during the install of AVG we can just keep clicking next till the end of it and its done and Spybot we tell it not to install Teatimer. There are settings inside AVG and Spybot we have to do later such as telling AVG to scan all files on the computer rather then infectable ones. Also doing updates for AVG and Spybot.

    Settings we change in the computer are:
    - Unlock the Taskbar
    - uncheck Group Similar programs
    - Enable Quick Launch
    - Put a copy of My Computer, Documents, and Internet Explorer on the desktop (I know how i can do this in vb)
    - Etc.


    Is there anything i can do to make this fully automated? We will set this up for multiple computer brands as well (Toshiba, HP, Compaq, Acer, etc) so will it be universal?

    Thanks for any feedback guys!

  7. #7
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Installing On Multiple Computers...?

    why do you unlock the taskbar and ungroup similar buttons? Those are the two most annoying things someone could do to my computer.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  8. #8

    Thread Starter
    New Member
    Join Date
    Oct 2007
    Posts
    7

    Re: Installing On Multiple Computers...?

    Haha Yea I know but the person that made these rules is our computer tech which she doesnt even know how to program a vcr, or get her gps working.

  9. #9
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Installing On Multiple Computers...?

    grab her by her blond hair and give a good shake.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  10. #10

    Thread Starter
    New Member
    Join Date
    Oct 2007
    Posts
    7

    Re: Installing On Multiple Computers...?

    Can anyone give me a few pointers? or is this too much of a program for a beginner to do?

  11. #11
    PowerPoster
    Join Date
    Feb 2006
    Location
    East of NYC, USA
    Posts
    5,691

    Re: Installing On Multiple Computers...?

    Quote Originally Posted by Lord Orwell
    why do you unlock the taskbar and ungroup similar buttons? Those are the two most annoying things someone could do to my computer.
    I always have my taskbar unlocked and similar buttons not grouped.
    The most difficult part of developing a program is understanding the problem.
    The second most difficult part is deciding how you're going to solve the problem.
    Actually writing the program (translating your solution into some computer language) is the easiest part.

    Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.

    Please Help Us To Save Ana

  12. #12
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Installing On Multiple Computers...?

    you are in the minority. The screen will truncate them to a point they are too short to read if you open more than about 5 windows at a time, otherwise. And as for lock/unlock the taskbar, this is also an annoyance when the taskbar decides to not auto-hide.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  13. #13

    Thread Starter
    New Member
    Join Date
    Oct 2007
    Posts
    7

    Re: Installing On Multiple Computers...?

    You thread jacker's, haha. Back to the subject can anyone give me some tips in what I should look for or agian is this out of my skill range?

  14. #14
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Installing On Multiple Computers...?

    Quote Originally Posted by quinn_j_n
    - Install a freeware Antivirus program
    - Install a freeware Antispyware program
    - Create Recovery DVD's
    - Change settings (Unlock the taskbar is a prime example)
    Do you still need all of these or just one or two?

  15. #15
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Installing On Multiple Computers...?

    Quote Originally Posted by Al42
    I always have my taskbar unlocked and similar buttons not grouped.
    Me too

    Lock/unlock the taskbar per user profile (XP):
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\
    LockTaskbar = 0 (0 unlock, 1 lock)

    All users:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  16. #16
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Installing On Multiple Computers...?

    well there you go, that's a start. API calls to change a registry setting.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width