Jump to content

squallgreg

Member
  • Posts

    81
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    France

Everything posted by squallgreg

  1. The pic was on his/her (lol) website for a long time, right ? and nobody noticed ? humm.... I dont believe Gosh is a girl. but who cares ? Gosh's been doing a lot for the community ! ^_^
  2. As I said It's updated every week And it comes with an uninstall version in a reg file.
  3. I dont know if you guys have already given this website somewhere else in the MSFN forums : http://www.spywareguide.com/blockfile.php It's a very convenient registry tweak that blocks ALL the known crappy spyware that are installed while using Internet Explorer because of the activeX flaw. It also blocks the spy which are already on your hard drive ! The file is updated several times a month. I think it's a good idea to include it in our unattend CD. Apart of the hotfixes, I havent seen that much things on how to increase the security of Windows with an unattended install....
  4. install.cmd set _USER=Squall net user %_USER% "" /add >nul net localgroup administrators "%_USER%" /add>nul %SystemRoot%\system32\reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultUserName" /d "%_USER%" /f %SystemRoot%\system32\reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultUserPassword" /d "" /f %SystemRoot%\system32\reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "AutoAdminLogon" /d "1" /f cmdlines.txt [COMMANDS] ".\installs.cmd" And everything under $OEM$. NB: someone of the forum did this for me, I'm sure you guys can find the thread
  5. After the scan SFC, has any dll files been modified ? If you scan again, what happens ? Maybe SFC dont recognize the dll files in XP...
  6. did you modify any DLL files such as uxtheme ou sfc_os ?
  7. Salut En fait c'est simple, tu laisses toujours les 6 premiers caractères de ton fichier ensuite tu rajoutes ~1 puis l'extension (.jpg) qui doit être de 3 caractères et non 2. Ainsi msnforum.bmp devient msnfor~1.bmp D'ou le terme 8.3 : 8 lettres avant et 3 après.
  8. Why dont u burn 400mb on two Mini-CDRW ? In your pocket you wont make the difference.
  9. oh man ! This popup after unregistering the dll was so annoying ! THANX. My USB modem is not connected when I install XP...
  10. Allright I have to rewrite what I said in the deleted copy of this thread... I think we can use the command "shutdown /a" at the beginning of the batch file to get rid of the reboot caused by msblast (as soon as you are connected to the net). I just have to find out the switch to reactivate the shutdown right before the end of the batch. And the command to disable XP spyware is : If it may help anyone here is my batch file. I'm using a couple of things found by Numinous :
  11. I'm sad to hear you're leaving the forums. I still think this tiny incident was nothing compared to all the relevant tips you brought to the community. I respect your decision but hope you can change your mind.
  12. I read on MS website that "type 2 hotfixes" cant be uninstall.... You see entries for ALL the type 2 hotfixes ?
  13. Done ! Thanx Numinous. New version, here you go : CLS @echo off echo Eject the XP CD right now ! PAUSE echo. echo Removing zip support... regsvr32.exe -u %systemroot%\system32\zipfldr.dll echo. echo Removing XP spyware... regsvr32.exe -u %systemroot%\system32\regwizc.dll echo. echo Applying Registry Tweaks... regedit.exe /s %systemdrive%\Install\registry.reg echo. echo Installing Winrar 3.1b5 start /wait %systemdrive%\Install\wrar31b5.exe /silent copy "%systemdrive%\Install\RARREG.KEY" "%systemdrive%\program files\WinRAR\" echo. echo Installing DirectX 9.0b... start /wait %systemdrive%\Install\dxsetup.exe /windowsupdate echo. echo Applying Update Rollup 1... start /wait %systemdrive%\hotfixes\KB826939.exe /u /q /z /n echo Applying SP2 hotfixes... for %%i in (%systemdrive%\hotfixes\1\*.exe) do start /wait %%i /u /q /z /n for %%i in (%systemdrive%\hotfixes\2\*.exe) do start /wait %%i /q:a /r:n echo Applying others hotfixes... start /wait %systemdrive%\hotfixes\KBMDAC.exe /q /c:"dahotfix /q /n" start /wait %systemdrive%\hotfixes\Qchain.exe echo Installation complete. Please restart Windows to apply all hotfixes. PAUSE EXIT
  14. Numinous >> so after SP1a + rollup you must install : Hotfixes 1 KB823182 KB824105 KB824141 KB825119 KB828035 Hotfixes 2 js56nen.exe Q330994 Q828750. Q823718 (with /C:"dahotfix /q /n" /Q) But what is 824105 ? is for SP1 and not SP1a ? Is there another "SP1 specific" hotfix we need to include ?
  15. Is anyone know what are the hotfixes we need to apply if the rollup package is already installed ? is it the ones you put on the first post, numinous ?
  16. Numinous >> thanx, I spent a lot of time working on a very simple batch ^^
  17. It is not faster, it is easier to create and to update. To make sure everything's ok. And in the near future, new bloddy hotfixes will come up...
  18. Gosh >> IMHO it's the easiest way to install a splitreamed XP with all the hotfixes. The batch file and the .sif file are made, no need to change it everytime a new hotfix comes up. The only thing you have to do is placed the new hotfix in the appropirate folder (install/hotfixes1, install/hotfixes2, etc). Now that there's a rollup package, you also need to delete the previous hotfixes covered by the rollup update. But that's all. Well, I like to do everything with the GuiRunAtonce section : applying a reg file, installing appz and hotfixes and finally removing the useless folders. If it might help anyone, here is my two batch files called by GuiRunAtonce : Edited on 19/10 at 3pm GMT after the topic was re-opened CLS @echo off MODE CON COLS=80 LINES=40 COLOR 0B TITLE Updating and tweaking Windows XP SP1 echo Post-installation program starting echo Eject the XP CD right now ! PAUSE echo. echo Removing zip support... regsvr32.exe -u %systemroot%\system32\zipfldr.dll echo. echo Removing XP spyware... regsvr32.exe -u %systemroot%\system32\regwizc.dll echo. echo Applying Registry Tweaks... regedit.exe /s %systemdrive%\Install\registry.reg echo. echo Installing Winrar 3.1b5 start /wait %systemdrive%\Install\wrar31b5.exe /silent copy "%systemdrive%\Install\RARREG.KEY" "%systemdrive%\program files\WinRAR\" echo. echo Installing DirectX 9.0b... start /wait %systemdrive%\Install\dxsetup.exe /windowsupdate echo. echo Applying Update Rollup 1... start /wait %systemdrive%\hotfixes\KB826939.exe /u /q /z /n echo Applying SP2 hotfixes... for %%i in (%systemdrive%\hotfixes\1\*.exe) do start /wait %%i /u /q /z /n for %%i in (%systemdrive%\hotfixes\2\*.exe) do start /wait %%i /q:a /r:n echo Applying others hotfixes... start /wait %systemdrive%\hotfixes\KBMDAC.exe /q /c:"dahotfix /q /n" start /wait %systemdrive%\hotfixes\Qchain.exe echo Installation complete. Please restart Windows to apply all hotfixes. PAUSE EXIT @echo off echo. echo Removing useless wallpapers, shortcuts and screensavers... del "%systemroot%\Blue Lace 16.bmp" del "%systemroot%\Coffee Bean.bmp" del "%systemroot%\FeatherTexture.bmp" del "%systemroot%\Gone Fishing.bmp" del "%systemroot%\Greenstone.bmp" del "%systemroot%\Prairie Wind.bmp" del "%systemroot%\Rhododendron.bmp" del "%systemroot%\River Sumida.bmp" del "%systemroot%\Santa Fe Stucco.bmp" del "%systemroot%\Soap Bubbles.bmp" del "%systemroot%\Zapotec.bmp" del "%systemroot%\Web\Wallpaper\Crystal.jpg" del "%systemroot%\Web\Wallpaper\Friend.jpg" del "%systemroot%\Web\Wallpaper\Home.jpg" del "%systemroot%\Web\Wallpaper\Moon flower.jpg" del "%systemroot%\Web\Wallpaper\Peace.jpg" del "%systemroot%\Web\Wallpaper\Power.jpg" del "%systemroot%\Web\Wallpaper\Purple flower.jpg" del "%systemroot%\Web\Wallpaper\Radiance.jpg" del "%systemroot%\Web\Wallpaper\Ripple.jpg" del "%systemroot%\Web\Wallpaper\Stonehenge.jpg" del "%systemroot%\Web\Wallpaper\Vortec space.jpg" del "%systemroot%\Web\Wallpaper\Ascent.jpg" del "%systemroot%\Web\Wallpaper\Autumn.jpg" del "%systemroot%\Web\Wallpaper\Azul.jpg" del "%systemroot%\Web\Wallpaper\Follow.jpg" del "%systemroot%\Web\Wallpaper\Red moon desert.jpg" del "%systemroot%\Web\Wallpaper\Tulips.jpg" del "%systemroot%\Web\Wallpaper\Wind.jpg" del "%systemdrive%\Documents and Settings\All Users\Start Menu\Windows Update.lnk" del "%systemdrive%\Documents and Settings\All Users\Start Menu\Windows Catalog.lnk" del "%systemroot%\system32\dllcache\ss3dfo.scr" del "%systemroot%\system32\dllcache\ssbezier.scr" del "%systemroot%\system32\dllcache\ssflwbox.scr" del "%systemroot%\system32\dllcache\ssmarque.scr" del "%systemroot%\system32\dllcache\ssmypics.scr" del "%systemroot%\system32\dllcache\ssmyst.scr" del "%systemroot%\system32\dllcache\sspipes.scr" del "%systemroot%\system32\dllcache\ssstars.scr" del "%systemroot%\system32\dllcache\sstext3d.scr" del "%systemroot%\system32\ss3dfo.scr" del "%systemroot%\system32\ssbezier.scr" del "%systemroot%\system32\ssflwbox.scr" del "%systemroot%\system32\ssmarque.scr" del "%systemroot%\system32\ssmypics.scr" del "%systemroot%\system32\ssmyst.scr" del "%systemroot%\system32\sspipes.scr" del "%systemroot%\system32\ssstars.scr" del "%systemroot%\system32\sstext3d.scr" echo. echo Removing useless folders... rd /s /q "%systemdrive%\Program Files\ComPlus Applications" rd /s /q "%systemdrive%\Program Files\Online Services" rd /s /q "%systemdrive%\Program Files\Uninstall Information" rd /s /q "%systemdrive%\Program Files\chat" rd /s /q "%systemdrive%\Program Files\xerox" rd /s /q "%systemdrive%\Program Files\msn gaming zone" rd /s /q "%systemdrive%\Program Files\microsoft frontpage" rd /s /q "%systemdrive%\hotfixes" rd /s /q "%systemdrive%\Drivers" rd /s /q "%systemdrive%\Install" rd /s /q "%systemdrive%\Tweaks" echo. PAUSE EXIT
  19. thanx willpantin ! Me too I thought of replacing the default wallpaper, but I didnt know where to find it ^_^
  20. I also have a custom theme (msstytle etc) and 4 DLL files + explorer.exe Which way is the best to include it on my CD ? - from the batch file of GuiRunOnce - putting all the files under $OEM/$1/$$/system32 + copying the theme folder (I dont know how yet)
  21. Excuse me, but is anyone can explain me how to remove movie maker, outlook, WMP and netmeeting ? do i use the batch above ? (MSN cant be removed in winnt.sif so it's ok)
  22. I know you have a reg tweak for enabling the service related to the xp firewall.
×
×
  • Create New...