Jump to content

rexhsu

Member
  • Posts

    29
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    China

Everything posted by rexhsu

  1. 1) modify the luna.msstyles 2) rename luna.msstyles to luna.mst 3) use makecab(even cabpack at lzx=21) to compress it, generate luna.ms_ 4) replace the orginal luna.ms_ in i386 with the new cab 5) testing, but hang in the dos setup It seems the luna.ms_ has been signed, I cant use my mod one directly. How to overcome it? I have read the thread posted by miso1391 (http://www.MSFN.org/board/index.php?showtopic=8756&st=0) about how to cheat the xp's checksum system, but I have made many modification in the dll, the miso1391's method seems too difficult for me. Any suggestions on it? I dont like the way(hey, put luna.msstyle in the $OEM$\$$\Resources\Luna),even it is working properly.
  2. I have tried this, but not working - "Drag windows with content" is still sticked. [HKEY_CURRENT_USER\Control Panel\Desktop] "DragFullWindows"="0"
  3. I have problem with 3.41.But go well with 3.33 with the same switch.So now changed back to 3.33 again.
  4. I have the same problem.I think it maybe the WU's problem? Using qfecheck,it shows 826939 is already installed.But still listed on the WU critical updates.
  5. Anyway,thank you for your reply and educated guess,Numinous! I solved this problem by the hint of gosh's new nin1 guide.Thanks to gosh for his really cool guides.I learnt a lot thing from his guides. I copied all the WIN51*.* and moved $OEM$ to the <cdrom letter>:\ORG\,problem solved. Once I always considered the $OEM$ must be put in the root of CD,yet it isnt true.You can put the $OEM$ in anywhere as long as it is parallel to the I386 directory.
  6. It's just part structure of my winxp pro nin1 cd.So I listed only files and directories related to my problem. ROOT |---<ORG>---<I386> |---<VOL1> ->six boot disks extracted from ms |---VOL1.DAT ->bootsector |---WIN51 |---WIN51IP |---WIN51IP.SP1 1) replaced i386 with VOL1 in VOL1.DAT (1 place) 2) go to "vol1" 3) replaced i386 with VOL1 in setupldr.bin (4 places) 4) expand txtsetup.si_ txtsetup.sif 5) modify txtsetup.sif,SetupSourcePath = "\ORG\" 6) makecab txtsetup.sif 7) delete txtsetup.sif 8) go to "org\i386" and delete the file txtsetup.sif 9) test 10) textmode goes okay.after restart,it goes to the gui mode of setup,it gives me a prompt - "Please insert the Windows XP Service Pack 1 CD....",if I click the ok,I find the searching path is <my cdrom letter>:\I386 not <my cdrom letter>:\ORG\I386 so that's my problem: I have modified the SetupSourcePath,why the setup still find files in the <my cdrom letter>:\I386,not my defined.
  7. god,it really didnt work in daemon 3.41 with daemon.msi /qn anybody got idea?
  8. Btw,if I would like to use seperate $OEM$ dir for each wxp install in one cd,how to do that?Where to put $OEM$ dirs? My CD structure like this [ROOT] +----[$OEM2$] -> point to VOL2 +----[$OEM3$] -> point to VOL3 +----[VOL1] ->Regular Install +----[VOL2] ->Full Unattended +----[VOL3] ->Unattended,but only hotfixes installed ..... Counld "OemFilesPath=" achieve that?Should the path relative to the %systemdrive% or cdrom? Following is my winnt.sif in VOL2 OemFilesPath="$OEM2$" and VOL3 OemFilesPath="$OEM3$" But at the end of dos setup,setup didnt copy all of the $OEM2$ or $OEM3$ to my harddisk.What's wrong?
  9. some sth same problem with me. manual run is okay,but run in the reg doesnt work properly
  10. My Lastest vbs dim WshShell, obj, sysd Set WshShell = WScript.CreateObject("WScript.Shell") Set obj = WScript.CreateObject("BlockATL.Block") sysd = WshShell.ExpandEnvironmentStrings("%systemdrive%") Call Main() Sub Main() WshShell.Run sysd & "\CDTEMP\apps\MPC\mpcsetup.exe", 1, true WScript.Sleep 10000 WshShell.AppActivate "ÕýÔÚ°²×° Media Player Classic ÖÐÎľ«Æ·°æ" 'setup startup WshShell.SendKeys " " 'choose install location WScript.Sleep 2000 WshShell.SendKeys " " 'choose codec WScript.Sleep 2000 WshShell.SendKeys " " 'installation finished WScript.Sleep 30000 WshShell.SendKeys "F" 'config WScript.Sleep 5000 WshShell.AppActivate "Media Player Classic ÖÐÎľ«Æ·°æÉèÖÃ" WScript.Sleep 2000 WshShell.SendKeys " " Wscript.Quit End Sub but previous problem still exists,vbscript seems not to do sendkeys to auto the job,just run the app setup and then stop at the first page of setup.Run manually is okay,but fails in the windows update method.
  11. As some websites always prompt me to install some certificate that I dont like,so I want these certs silently installed into the untrusted zone by commandline in my batch file.How?
  12. I want a application to be installed by vbscript method,as it hasnt silent switch.So I have to write a vbs named mpc.vbs: dim WshShell, iLoopTimeWait Set WshShell = WScript.CreateObject("WScript.Shell") Set fso = WScript.CreateObject("Scripting.FileSystemObject") set obj = WScript.CreateObject("BlockATL.Block") iLoopTimeWait = 3000 Call Main() Set WshShell = Nothing Sub Main() obj.BlockInput() WshShell.Run ("%systemdrive%\CDTEMP\apps\MPC\mpcsetup.exe") Connect2Window iLoopTimeWait, "ÕýÔÚ°²×° Media Player Classic ÖÐÎľ«Æ·°æ" 'setup startup WshShell.SendKeys " " 'choose install location WScript.Sleep 2000 WshShell.SendKeys " " 'choose codec WScript.Sleep 2000 WshShell.SendKeys " " 'installation finished WScript.Sleep 30000 WshShell.SendKeys "F" 'config Connect2Window iLoopTimeWait, "Media Player Classic ÖÐÎľ«Æ·°æÉèÖÃ" WScript.Sleep 2000 WshShell.SendKeys " " obj.UnblockInput() Wscript.Quit End Sub Function Connect2Window(iTime, sWindowName) Do Until WshShell.AppActivate (sWindowName) WScript.Sleep iTime Loop End Function and I add following lines to runonce.reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx][HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\zz110] "1"="%systemdrive%\\CDTEMP\\apps\\MPC\\mpc.vbs" @="MPC ÖÐÎľ«Æ·°æ(0926)" I import the runonce.reg and then restart pc to test it,but the vbscript seems not to work---just stop at the first screen of setup. However if I execute the mpc.vbs manually,it can work as my expect. Anybody can give me a hand? Sorry for my poor english speaking,If you want me to tell u more,plz say!Thank you very much.
  13. Will the extension(*.nfo) assocations in registry also be exported from HKCU?I think it is more important.
×
×
  • Create New...