PDA

Click to See Complete Forum and Search --> : Starting windows without a splash screen


Inhumanoid
Jan 5th, 2000, 07:33 PM
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, 07:42 PM
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...

' 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: m.ralston@mediavault.co.uk
ICQ:31422892 (http://www.thebluelink.cjb.net/icq.html)
Web Sites:The Blue Link (http://www.thebluelink.cjb.net) My Home Page (http://mralston.cjb.net) (Not up at the moment!)

[This message has been edited by matthewralston (edited 01-06-2000).]

Lyla
Jan 6th, 2000, 03:33 AM
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.