|
-
Jan 5th, 2000, 08:33 PM
#1
Thread Starter
Hyperactive Member
With tweakUI you can set your machine up so that it does not display the splash screen at startup....
What is changed to accomplish this??
In other words: How could I acchieve this without using tweakUI and doing it by hand (maybe it's some registry setting) ???
-
Jan 5th, 2000, 08:42 PM
#2
it adds "logo=0" to the bottom of the "Options" section in "c:\msdos.sys"
i think you can alter this file like an ordinary ini file...
Code:
' Module declaration
Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationname As String, ByVal lpKeyName As Any, ByVal lsString As Any, ByVal lplFilename As String) As Long
'Code that does it
public sub RemoveSplash()
WritePrivateProfileString "Options", "Logo", "0", "c:\msdos.sys"
end sub
------------------
Matthew Ralston
E-Mail: [email protected]
ICQ:31422892
Web Sites:The Blue Link My Home Page (Not up at the moment!)
[This message has been edited by matthewralston (edited 01-06-2000).]
-
Jan 6th, 2000, 04:33 AM
#3
Addicted Member
Hi.
If you want to do it manually:
open your C:\msdos.sys in wordpad.
in the options "section" add the 2 commented lines without the comments.
[Options]
BootMulti=1
BootMenu=1' To have booting options
BootGUI=1
Logo=0 ' To get rid of splash screen.
DoubleBuffer=1
Network=1
In the same order.
When done. save it with text option.
Good Luck.
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
|