|
-
Oct 21st, 2000, 10:47 AM
#1
Thread Starter
Member
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
-
Oct 21st, 2000, 11:47 AM
#2
Junior Member
review this article
http://www.vbsquare.com/articles/service/
does that what u need?
-
Oct 21st, 2000, 05:58 PM
#3
Hyperactive Member
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
-
Oct 21st, 2000, 06:20 PM
#4
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.
-
Oct 21st, 2000, 06:30 PM
#5
Hyperactive Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|