Jump to content

Geej

Member
  • Posts

    635
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Singapore

Everything posted by Geej

  1. Updated to v4.0.2 Add 1 more plugin: Office2007wlx 0.0.4
  2. Thanks for pointing out my mistake. Was meant to say along the below line & apply at T13 (Tweak meant to apply for all users)[HKEY_CURRENT_USER\Control Panel\Desktop] "CTTuneMakeSettingsDefault"=dword:00000001 but open the wrong file. Not important anymore since OP already solve his problem.
  3. Try this tweak ;Turn On ClearType font smoothing, for smoother Global logon look [HKEY_USERS\.DEFAULT\Control Panel\Desktop] "ForegroundFlashCount"=dword:00000002 ;0 indicates disable font smoothing ;1 indicates standard font smoothing ;2 indicates Use ClearType font smoothing
  4. It could be due to WindowsUpdateAgent30-x86.exe (in HF folder). Try remove this file and see how it goes. If confirm this file is the problem, check out Windows Update Agent and see Cdm.dll Wuaucpl.cpl Wuweb.dll Wuauserv.dll Wucltui.dll are the correct version. That is all I know right now.
  5. If u use Winnt.sif, it will reboot automatically w/o waiting for 15s
  6. Try using WINRAR... 1st, Rar your sample.reg file 2nd. Convert to SFX with comment file as follow: ;The comment below contains SFX script commands TempMode setup=REGEDIT /S sample.reg Silent=1 Overwrite=1 3rd. create a svcpack folder and place your newly created SFx file (in exe format) here. 3rd. wrap with entries_regtweak.ini (up one folder level) 4th. Cab the pack and apply at T13 If unsure what I'm talking, there are many working addon in nlite application Add-On subforum using svcpack method. Just download and see it's file structure.
  7. Geej

    BSOD

    http://plasticbugs.com/?p=227
  8. Try booting into recovery console, replace the below 4 files that you deleted back to its original location (WINDOWS\system32) from your XP CD ntoskrnl.ex_ hal.dl_ KDCOM.DL_ BOOTVID.dl_ While you are in recovery console, use expand command to restore those 4 files. Expand guide
  9. What program is that? (Sorry I don't understand the screenshot, I mean the RunonceEx 1st screenshot program title) Nevertheless, chances is that the program could be in i386\svcpack folder on the CD, in exe form. Possibly 7zsfx or autoit compiled script. These two exe form can write to runonceEx registry during T13. So that the program will run at RunOnceEx. If the slipstreamed CD is done using HFSLIP but not done by you, it may be hard to trace the source of that program. (takes a lot of guessing to pinpoint the actual exe. Try identify it by it's program title or similar) Good luck in your tracing...
  10. Not sure if this guide works. Maybe worth a try if run out of solution. (How To Repair or Replace Boot.ini in Windows XP)
  11. You may be referring to HFGUIRUNONCE programs that install silently in the background or RunOnceEx programs (This one is easy to recognize. It has 'Windows Update' dialog box shown what program is currently installing, along with the program title) Once these program are fully installed, only then will be presented to your desktop. Is that right?
  12. Open Network Connections thru My Computers ; Display Network Connections to MY Computer RegWrite('HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Network Connections', '', 'Reg_sz', '') RegWrite('HKCR\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Network Connections\Command', '', 'Reg_sz', 'Explorer ::{7007ACC7-3202-11D1-AAD2-00805FC1270E}')
  13. Alternatively, if you already logon to user desktop, and wants to enable quick launch, try ;Toggle Quick Launch state. Requires mouse connection to work $MousePos=MouseGetPos ( ); get current position $X=$MousePos[0] $Y=$MousePos[1] MouseClick ( "primary" ,@DesktopWidth-10,@DesktopHeight-10,1, 1 ); click once near system clock send ("+{F10}"); Bring up context menu send ("{T}{Q}"); Toggle Quick Launch mouseclick ("primary",$X,$Y,1,1); rtn to previous mouse position
  14. Updated script Changes: 1) Drives space info will align properly even if Notepad2 is set as default text editor. (Previously support default notepad only) (provided HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe exists) 2) Add uninstaller option via Add/Remove panel (Displayed name is : Show All Drives Space) 3) Change installed path to %programfiles%\Show All Drives Space 4) Icon change for main exe 5) Removed Start Menu shortcut. Accessing the program is thru My Computer context menu only. As far as I know, it can run in W2K & Vista as well. (but tested in XP only)
  15. This is a patched UXTHEME.DLL ( source) for use with 3rd party visual style. For WindowsXP (SP3) File version: 6.00.2900.5512 (xpsp.080413-2105) Note: For use with English XP system only PatchedUXTHEME.cab (Put in HFAAO) Size: 99.09 Kb (101,470 bytes) MD5: FA3B761FDA22A46C97FE4C06DCB38CC8 (If you put this file in HFAAO, then i386\REPLACE\uxtheme.dl_ is not required)
  16. occache.dll-not-registered-error in setuperr.log is the fault of IE8 installer. I compared IE7 & IE8 occache.dll and there are differences in the function inside. Look's like there is nothing much we can do unless MS update the file in IE8. Anyway, I think it relates to ActiveX Cache Folder although I dun know much about this folder's function.
  17. The code to not install safesurf and extras comes from johndoe74's script, not mine. (Mine only takes care of the email screen) Nevertheless, try something like below code should works... When u get to install option for FW,AV or both screen, paste the code or amend accordingly. Same for Safesurf screen install prompt $T2="COMODO Internet Security Configuration Wizard";beginning of the script ;FW only as it unchecks AV option Winwait ($T2,"Select this option to install COMODO Antivirus") WinActivate ($T2,"Select this option to install COMODO Antivirus") controlclick ("COMODO Internet Security Configuration Wizard","Install COMODO Antivirus",1003);uncheck AV sleep (250) ControlClick ($T2,"Select this option to install COMODO Antivirus",12324);Next Winwait ($T2,"Firewall with Optimum Proactive Defense") WinActivate ($T2,"Firewall with Optimum Proactive Defense") ControlClick ($T2,"Firewall with Optimum Proactive Defense",12324) ;This part: not install safesurf Winwait ($T2,"COMODO SafeSurf Toolbar") WinActivate ($T2,"COMODO SafeSurf Toolbar") ControlClick ($T2,"COMODO SafeSurf Toolbar",1002);No install COMODO Safesurf sleep (250) ControlClick ($T2,"COMODO SafeSurf Toolbar",1148);Don't Make Ask.com my default search provider sleep (250) ControlClick ($T2,"COMODO SafeSurf Toolbar",1149);Don't Make COMODO Search my homepage sleep (250) ControlClick ($T2,"COMODO SafeSurf Toolbar",12324);Next
  18. FWonlyPre is only partial code, need to code from scratch for new version. Dun think I want to support new version. There is one guy who post a new version of script. Maybe for FW only, u can request him to make. Over Here BTW, the installer is getting bigger and bigger (now 72.2MB). And I only use native Windows FW Do consider alternative FW pack ...
  19. Try applying only 1 registry tweak (remove the rest) via GUIRUNONCE or RUNONCEEX. (I had mine done this way and it works) [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update] "AUOptions"=dword:00000002
  20. Some sample here : Hacking RUN Dialog Box in Windows XP
  21. Hi riosilente I don't really understand what u are saying... U don't use nlite & HFslip. R u using RMVi...? If not at all, r u saying u want to apply a default theme using RunonceEx together with your choice theme in a normal environment? If not, then what r u trying to achieve? What is "universal for all people"? I interpret as ... u already understand that everyone is using WINNT.SIF to set default theme.? For "any software to apply automatically this string at WINNT.SIF', I do not know of any. Maybe someone out there knows...
  22. Hi riosilente Not sure how to do it using nlite. Have u look at this guide? The easiest way to set your own theme is thru WINNT.SIF
  23. WindowsXP-KB942288-v3-x86.exe can take /quiet /norestart switch. Have u try running via HFGUIRUNONCE with WindowsXP-KB942288-v3-x86.exe /quiet /norestart switch? It might work.
  24. Geej

    Windows Updates

    Then package them up with with any one of the utils that create cabinet files, like makecab.exe NOTE: If you have version 9, then its "9b" instead of "10b", respectively. Thanks, decided to look around and found dl available from http://www.ryanvm.net/forum/viewtopic.php?t=6167
  25. Geej

    Windows Updates

    I can't download SWFLASH.CAB from Rapidshare in 1st post link of Xp list. Can add mirror such as mediafire? Thanks in advance.
×
×
  • Create New...