Results 1 to 5 of 5

Thread: AUTO launching a pgm when computer boots

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2000
    Posts
    35
    hello,

    i've created a program that needs to be launched when the marchine finishes booting up. all the computers are networked and thus a win95 networking login screens appears each time the computer is booted. the reason for the network is because all the workstations access a nt database server.

    how do i eliminate the signon screens and launch the application with network connectivity to the database server and network printers?

    thanks in advance

  2. #2
    Junior Member
    Join Date
    Sep 1999
    Location
    mousafah,abu-dhabi,UAE
    Posts
    29
    review this article

    http://www.vbsquare.com/articles/service/

    does that what u need?
    Ahmed Walid

  3. #3
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Pittsburgh, PA
    Posts
    329
    2 ways i know of:

    1) Add an entry to this key:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run


    2) add a shortcut to the startup folder in the start menu
    ______________

  4. #4
    Guest
    Another way would be through Autoexec.bat.

    Code:
    Open "C:\Autoexec.bat" For Append As #1
    Print #1, "PATH C:\mypath\myfile.exe"
    Close #1
    Just add a line to the bottom with PATH and your path.

  5. #5
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Pittsburgh, PA
    Posts
    329
    while we're listing all the ways can you use the

    Autorun.ini

    file or the

    Win.ini (maybe: [windows] run= (or) load=)

    just curious
    ______________

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