M()zart Posted October 15, 2009 Posted October 15, 2009 As I know earlier versions of UnSP could be uninstalled with Add/Remove programs. Is this feature still available? If yes - than no backup needed, you may just uninstall UnSP.
dencorso Posted October 15, 2009 Posted October 15, 2009 As I know earlier versions of UnSP could be uninstalled with Add/Remove programs. Is this feature still available? If yes - then no backup needed, you may just uninstall UnSP.It never was that simple... Uninstallation needs Windows 98 SE CD-ROM. It also doesn't remove all installed files. It only reverts back half of the installed files with original 98 SE files. So, I don't recommend uninstallation of the pack, unless you are having a serious problem.This quotation is from Gape's own uSP 2.1a page.
Fredledingue Posted October 19, 2009 Posted October 19, 2009 (edited) These updates/packages are not included in uSP3-0-beta4BHDD31.ZIPCNTROL98.EXECOPY2GB.EXECRYPT9X.EXEDX90C.EXEDX9CPL.EXEDXM9X.EXEflash_player_active_x.exeGRPHFLTS.EXEHELPHLP.EXEIE938464.EXEIE958215.EXEIOSYS98.EXEjre-6u7-windows-i586-p.exeMDDACU.EXEMDIE6CU.EXEMSXML4.MSINUSB.EXEOE951066.EXEPNGFIX.EXEQ216204.EXEQ271277.EXEQ272991.EXEQ304708.EXEQ311561.exeQ955839.EXERICHED9X.EXErootsupd.exerpclrtyp.zipSCANFRAG.EXEScr579x.exeshell32.zipShockwave_Installer_Full.exeTTFPAK.EXEUSBFDD98.EXEVS6SP6U.EXEWIA10.EXEWIA11.EXEWINFIL98.EXEThese ones are included(not a complete list, only some of the most recent updates)237493usa8.exeGDI_PLUS.EXEFDSKFRMT.EXEHHUPD.EXEKB917344-x86.ExeOLEUP.EXEQ265854.exeQ329048.exeQ918547.EXEQ923618.EXEQ926247.exeQ929120.EXEQ931836.EXERUNHELP.EXESHELL98.EXESHELL98b.EXETRIEDIT.EXEVBVM60.EXE Edited October 19, 2009 by Fredledingue
CharlesF Posted October 21, 2009 Posted October 21, 2009 Beta 4 is released.Thx Gape! This version is solving my problem of loosing the display of WMV videos when they are embedded in IE6!(explained here and here).Can't say why.
CharlesF Posted November 12, 2009 Posted November 12, 2009 (edited) Beta 4 is released.Something is boring me.Is it be possible that the installation script may not be fully functional?I have checked the version number of my ASPI's after the install of SP3 Beta4 and it is unchanged:showing version 1.0 for WNASPI32.DLL & WINASPI.DLL, version 4.0 for APIX.VXD (& no ASPIENUM.VXD at all)!Could it be possible for someone (who had ticked the upgrade of Aspi) to check this glitch?It means also this part of the install was not working for me, with SP2 and previous SP3 . Edited November 12, 2009 by CharlesF
luluthefirst Posted November 29, 2009 Posted November 29, 2009 Can you upload it on megaupload or mediafire?Because rapidshare...
cscherme Posted November 29, 2009 Posted November 29, 2009 Can you upload it on megaupload or mediafire?Because rapidshare... You could always download from the mdgx website if you have problems. Thats what I do.
MDGx Posted December 1, 2009 Posted December 1, 2009 Can you upload it on megaupload or mediafire?Because rapidshare...Who cares about MU, MF or RS? All 98 SE SP2 editions are here:http://www.mdgx.com/web.htm#SPXEnjoy.
tonion Posted January 30, 2010 Posted January 30, 2010 Hi. dont speaking english, but i like comment over kernelex, i installed it and before cud to install in or for order: dotnetfx2, java6, firefox 3.6, shock wave11. directx10 and so, but flash player10 besides i cud installed dont funtion, plis i sayd dont talking english, but need someone, say how to make flash player 10 showme images, Gracias y a todos los creadores de kernelex son lo maximo, los necesitamos, vivan para siempre. Saludos
ShadeTreeLee Posted April 1, 2010 Posted April 1, 2010 I'd like to add an enhancement wish to this project and others anybody might want to use this info in. Also a bug report on the enhancement, it concerns a widget MS used to push for IE5 quite a while back, and they state it's not for IE6, but it works just fine with both.It concerns the MS update known as "Microsoft Internet Explorer 5 Toolbar Wallpaper" as shown in your Add/Remove Programs list. Otherwise knows as tbwlpapr.exeOne of the little known cute things about it is that the wallpaper you choose for IE can also be applied to Windows Explorer and it really classes the place up a bit but that last part is broke. I'm thinking it ought to be applied and if you don't want it, you can right click on the tabletop and remove or change the wallpaper as you see fit. The original update did NOT include the methodology to apply the wallpaper to Windows Explorer with just this slight alteration in the registry:from this (IE only)HKCU,"SOFTWARE\Microsoft\Internet Explorer\Toolbar","BackBitmapIE5",,"%10%\Clouds.bmp" to these two (both explorers)HKCU,"SOFTWARE\Microsoft\Internet Explorer\Toolbar","BackBitmapIE5",,"%10%\Clouds.bmp" HKCU,"SOFTWARE\Microsoft\Internet Explorer\Toolbar","BackBitmapShell",,"%10%\Clouds.bmp"If you have the clouds.bmp file in your Windows directory where it would be if you had it at all, you will now have that file as wallpaper for both Explorers. You'll have to close all instances and then open new ones to see the change, but no reboot is necessary for this little trick to happen.We inflict this change by altering toolimg.inf and adding both those lines to both the [user.AddReg][Machine.AddReg]sections of the toolimg.inf file. We then need to add code to the toolbar.hta file so that it functions to rewrite both those registry locations with updated data according to the added toolbar widget that this update provides to the right click toolbar menu.We go from this text snippet in the toolbar.hta file:************** function writeRegistry() { //set the HKEY_CLASSES_ROOT values var strKeyBase = "HKCU\\Software\\Microsoft\\Internet Explorer\\Toolbar\\BackBitmapIE5"; wsho.RegWrite(strKeyBase, txtSkinName.value, "REG_SZ"); strKeyBase = "HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{c23dd370-cb79-11d2-898a-00c04f80a47f}\\UseWinFolder"; wsho.RegWrite(strKeyBase, UseWinPath, "REG_SZ"); alert("Your toolbar has been customized. Close all IE windows, and then restart IE to see your new toolbar."); window.close();*************to this: function writeRegistry() { //set the HKEY_CLASSES_ROOT values var strKeyBase = "HKCU\\Software\\Microsoft\\Internet Explorer\\Toolbar\\BackBitmapIE5"; wsho.RegWrite(strKeyBase, txtSkinName.value, "REG_SZ"); strKeyBase = "HKCU\\Software\\Microsoft\\Internet Explorer\\Toolbar\\BackBitmapShell"; wsho.RegWrite(strKeyBase, txtSkinName.value, "REG_SZ"); strKeyBase = "HKLM\\Software\\Microsoft\\Internet Explorer\\Extensions\\{c23dd370-cb79-11d2-898a-00c04f80a47f}\\UseWinFolder"; wsho.RegWrite(strKeyBase, UseWinPath, "REG_SZ"); alert("Your toolbar has been customized. Close all IE windows, and then restart IE to see your new toolbar."); window.close();**************and now the right click toolbar widget changes the wallpaper on both explorers to what ever you want or back to nothing at all as you see fit. I store my wallpaper widget on the left side of the right click choice device so I don't even see it unless I'm after it. I certainly don't want it on my toolbar cluttering up things when I only use it a couple of times in as many years.One other "bug" that MS didn't see fit to correct on this update was the improper text used in the zoomin.htm and zoomout.htm files that wind up in the C:\WINDOWS\WEB folder. When you right click an object in IE after you apply this update you will have two added choices. To zoom in or to zoom out. They never worked before, but with this text subtituted for those files they will work correctly from now on.zoomin.htm***************<HTML><script LANGUAGE="JavaScript" defer> var parentwin = external.menuArguments;var doc = parentwin.document;var w;var h;if ( parentwin.event.srcElement.tagName == "IMG" ){ h = parentwin.event.srcElement.height * 2; w = parentwin.event.srcElement.width * 2; parentwin.event.srcElement.height = h; parentwin.event.srcElement.width = w;}else alert ("You must right-click on an image to Zoom.");</SCRIPT></HTML>***************and zoomout.htm**************<HTML><script LANGUAGE="JavaScript" defer> var parentwin = external.menuArguments;var doc = parentwin.document;var w;var h;if ( parentwin.event.srcElement.tagName == "IMG" ){ h = parentwin.event.srcElement.height / 2; w = parentwin.event.srcElement.width / 2; parentwin.event.srcElement.height = h; parentwin.event.srcElement.width = w;}else alert ("You must right-click on an image to Zoom.");</SCRIPT></HTML>***************The difference in case you don't spot it right off is times 2 or divide by 2. You can't just copy these files to the named location and expect them to work. They only work with the update applied and the original files replaced with these ones. I suspect it's a fleshing out of shell32.dll file's functions that were placed in there with the "new" IE5 but never used before without this update applied.So it's a sweet little toy that I think ought to used more especially in it's fixed form. When I work on a machine that DOESN'T have the wallpaper - I really notice it...
ShadeTreeLee Posted April 1, 2010 Posted April 1, 2010 Oh, yeah. About the ASPI.inf file, on the last line where you delete the WarnVerDLLs warning...You don't have to do it that way. What you can do instead is just install the different aspi files and then set the SetupProgramRan key to a value greater than zero and at the next bootup Windows will run a NEW checksum entry on the files you just installed and then start using that information to "protect" those listed dll files from ever changing again. This is all it takes:HKLM,"System\CurrentControlSet\Control\Shutdown","SetupProgramRan",0x00010001,01,00,00,00and a reboot.The SetupProgramRan key causes this behavior but I haven't figured out yet how to do the same thing over in the CheckVerDLLs list. I'd love to know how to add one in there and have it calculate it's own binary string entry in a similar manner to the WarnVerDLLs list. Somewhere, somehow it sure enough happens though.
Ricrdsson Posted June 6, 2010 Posted June 6, 2010 Preparing for Service Pack 3.0 beta4 localization for the Czech Republic. I need help as wrap all the translated files into. CAB and final installer. I can not so much English perhaps you will understand
sleffing Posted June 6, 2010 Posted June 6, 2010 Preparing for Service Pack 3.0 beta4 localization for the Czech Republic. I need help as wrap all the translated files into. CAB and final installer. I can not so much English perhaps you will understandHave you tried winpack.org ?Also search this forum for "sp2 localization". You will find many posts by Petr like Localization of SP 2.0
Ricrdsson Posted June 7, 2010 Posted June 7, 2010 (edited) Czech translation of the final Service Pack 3.0 BETA 4. Download here: ricrdsson.ic.cz/nsp.html Edited June 13, 2010 by Ricrdsson
feven Posted June 10, 2010 Posted June 10, 2010 escelent, brutal excelente pack. your edit to spanish versiojn here.Sorry, Final Version?
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now