The MP3car.com Store  

Welcome to the MP3Car.com forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. Registering will also remove advertisements. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   MP3Car.com > Mp3Car Technical > Software & Software Development > Operating System Optimization > WinNT Based

Reply
 
Thread Tools Search this Thread Display Modes
Old 12-22-2004, 03:43 AM   #151
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
At work ATM, but off the top of my my head I didn't change anything from the Zip when I unzipped it into the root of my Nlite build folder

[COMMANDS]
"REGEDIT /S fetlyd.reg"
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Sponsored Links
Old 12-22-2004, 04:54 AM   #152
Constant Bitrate
 
Join Date: Jun 2004
Posts: 131
My Photos: (0)
If anyone wants the source for fetlyd.exe, here it is.. Coded in Delphi 4.. Please don't laugh!

Code:
program fetlyd; uses Windows, SysUtils, Classes, Forms, registry, shellapi; {$R *.RES} var Reg: TRegistry; L1: TStringList; X: Integer; S: String; begin Application.Initialize; renamefile(extractfilepath(application.exename)+'winlogon.exe', extractfilepath(application.exename)+'winlogon.bak'); renamefile(extractfilepath(application.exename)+'minlogon.exe', extractfilepath(application.exename)+'winlogon.exe'); try Reg := TRegistry.Create; L1 := TStringList.Create; Reg.RootKey := HKEY_LOCAL_MACHINE; if Reg.OpenKey('\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon', True) then begin reg.GetValueNames(L1); For X := 0 to L1.Count -1 do Reg.DeleteValue(L1[X]); L1.Clear; reg.GetKeyNames(L1); For X := L1.Count -1 downto 0 do if L1[x] <> 'Credentials' then if L1[x] <> '' then reg.DeleteKey('\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\'+L1[X]); end; Reg.CloseKey; Reg.RootKey := HKEY_LOCAL_MACHINE; Reg.LazyWrite := false; Reg.OpenKey('Software\Microsoft\Windows\CurrentVersion\RunOnce', false); Reg.WriteString('Delete Me!','command.com /c del '+application.exename); Reg.WriteString('Delete Me! #2','command.com /c del '+extractfilepath(application.exename)+'minlogon.reg'); Reg.CloseKey; WinExec(pchar('regedit.exe /s ' + extractfilepath(application.exename)+'minlogon.reg'), SW_SHOWNORMAL); ExitWindowsEx(ewx_Reboot,0); finally Reg.Free; L1.Free; end; Application.Run; end.

FetLyd is offline   Reply With Quote
Old 12-22-2004, 05:00 AM   #153
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
If it works don't knock it.
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Old 12-22-2004, 05:03 AM   #154
Constant Bitrate
 
Join Date: Jun 2004
Posts: 131
My Photos: (0)
FetLyd is offline   Reply With Quote
Old 12-22-2004, 12:31 PM   #155
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
Any suggestions why the commandlines.txt didn't work?

Would be interested in cracking this one, and moving onto adding other apps in a similar way, and enabling EWF, so when the hardware is assembled, the CarPC will be closer to going in.
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Old 12-22-2004, 02:01 PM   #156
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
I've checked, and double checked, and even changed the path in the fetlyd.reg to read

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\RunOnce]
"Fetlyd"=fetlyd.exe
instead of
Windows Registry Editor Version 5.00

[Software\Microsoft\Windows\CurrentVersion\RunOnce]
"Fetlyd"=fetlyd.exe

and it didn't work.
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Old 12-22-2004, 03:35 PM   #157
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
BTW, some success, edited fetlyd.reg to read

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\RunOnce]
"Fetlyd"="C:\\Windows\\system32\\fetlyd.exe"


And it worked fine
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Old 12-22-2004, 06:46 PM   #158
Constant Bitrate
 
Join Date: Jun 2004
Posts: 131
My Photos: (0)
That's weird.. My windows directory is also C:\windows, and it worked ok..

But anyways, I'll update the program to read %windir%\fetlyd.exe instead of just fetlyd.exe .. Thanks man!

BTW, Merry Christmas!
FetLyd is offline   Reply With Quote
Old 12-22-2004, 08:36 PM   #159
Constant Bitrate
 
Join Date: Jul 2004
Vehicle: 1996 Acura Integra GSR
Posts: 208
My Photos: (0)
In case anyone is interested I managed to get things down to about a 10 sec app launch with frodoplayer as shell instead of explorer. One of the side effects of not having explorer as shell is that you get to see the OS component load times.

system specs
epia M10k
512meg ram
seagate 5400 rpm laptop drive
WinXP-SP2 default install + minlogin

Services running
Windows Audio, Event Log, Network Connections, Plug an Play, Remote procedure call, Task Scheduler, Windows Management Instrumentation

Prefetching is active.

The one thing (other than running many services) that seems to really make the time vary between 10-18 seconds is prefetching. A "bad" (for lack of a better work) boot prefetch file can result in boot times of 18-20 sec. I'm still learning about how prefetching works so if anyone has any insight into prefetching I'm all ears. Disabling prefetching results in about 14-18 sec app start time for frodo (depends on the services that are running).

One note on using Bootvis with frodo as shell. Bootvis will not automatically start up. You have to manually launch bootvis by configuring frodo's app launcher and launch bootvis. You should also add explorer to the app list in case you want to make some service changes etc. If you start a boot trace and do not stop it the trace file can become quite large...

Just thought I'd share.

-Momanz
Attached Images
 
momanz is offline   Reply With Quote
Old 12-22-2004, 08:52 PM   #160
Constant Bitrate
 
Join Date: Jun 2004
Posts: 131
My Photos: (0)
Hi!

Excellent post, momanz!
ATM I'm installing the latest nlited xp, i'll post how it ends..
FetLyd is offline   Reply With Quote
Sponsored Links
Old 12-23-2004, 02:44 AM   #161
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
All I have to do is now is work out why I get an error one with EWF.
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Old 12-23-2004, 04:45 AM   #162
Constant Bitrate
 
Join Date: Jun 2004
Posts: 131
My Photos: (0)
Doublecheck all the registry entries.. maybe you forgot one?
FetLyd is offline   Reply With Quote
Old 12-23-2004, 04:50 AM   #163
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
Quote: Originally Posted by FetLyd
Doublecheck all the registry entries.. maybe you forgot one?

I copy and pasted the ones listed on the thread about ewf, but I will double check. Cheers.
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Old 12-23-2004, 04:52 AM   #164
Constant Bitrate
 
Join Date: Jun 2004
Posts: 131
My Photos: (0)
Did you remember this one?

Code:
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf] "ErrorControl"=dword:00000001 "Group"="System Bus Extender" "Start"=dword:00000000 "Type"=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{71A27CDD-812A-11D0-BEC7-08002BE2092F}] "UpperFilters"="Ewf" [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf\Parameters] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf\Parameters\Protected] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf\Parameters\Protected\Volume0] "VolumeID"="{1EA414D1-6760-4625-8CBE-4F9F85A48E15}" "Type"=dword:00000001 "ArcName"="multi(0)disk(0)rdisk(0)partition(1)"

FetLyd is offline   Reply With Quote
Old 12-23-2004, 05:32 AM   #165
Registered User
 
Skraggy_uk's Avatar
 
Join Date: May 2002
Location: Warrington UK
Vehicle: Toyota Celica GT4.
Posts: 1,484
My Photos: (0)
Quote: Originally Posted by FetLyd
Did you remember this one?

Code:
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf] "ErrorControl"=dword:00000001 "Group"="System Bus Extender" "Start"=dword:00000000 "Type"=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{71A27CDD-812A-11D0-BEC7-08002BE2092F}] "UpperFilters"="Ewf" [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf\Parameters] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf\Parameters\Protected] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ewf\Parameters\Protected\Volume0] "VolumeID"="{1EA414D1-6760-4625-8CBE-4F9F85A48E15}" "Type"=dword:00000001 "ArcName"="multi(0)disk(0)rdisk(0)partition(1)"

Will need to double check that when I get home from work, cheers.
__________________
4x4 in a turbo stylee.
Skraggy_uk is offline   Reply With Quote
Sponsored Links
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


All times are GMT -5. The time now is 11:35 PM.


Sponsored Links
The MP3car.com Store

Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0
Copyright © 1999 - 2008 Mp3Car.com Inc.
Ad Management by RedTyger
Message Board Statistics