Jump to content

Stalkie

Member
  • Posts

    57
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Denmark

Everything posted by Stalkie

  1. Hi everone I know this thread is getting old, but I would just mention what I did. I don't like having extra files laying around if they aren't needed. So I just added this to my tweaks.reg [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Currentversion\Run] "AlphaMenuOrder"="CMD /C REG DELETE HKCU\Software\Microsoft\Windows\Currentversion\Explorer\MenuOrder /f"
  2. Hmmmm.... It's weird that the main post gets updated with only french, when I (before Vier even) reported it working with danish. Oh well, just wanna help
  3. Hi Worked just fine for my danish reader. Any way to incorporate the newly released spell checkers for other languages?
  4. Stalkie

    Text on logon?

    Hi Thanks for this great visual upgrade to XP :-) On your new logon-screen (and also welcome), I don't see the text that's normally there? Like "Welcome" and stuff like that. I'm running a danish XP, and I've already tried changing the language ID for the String tables in XPize_logon.exe (not absolutely sure about the filename, but it's the right one) So I wondered if the "missing" text was on purpose?
  5. I was just browsing through my i386-folder, and noticed some files that wasn't compressed. Mostly DLL's, but I know that some of them can be compressed (Like WINNTBBU.DLL). Is there somewhere og somehow I can find out which files have to be uncompressed, and which I can compress to save some space? Some of the DLL's I figured have to be uncompressed, like NTFS-files and the keyboard-files.
  6. You'll have to escape you inline quotation, and have enough of them like this: REG ADD %KEY%\05 /VE /D "Java 1.5.0.02" /f REG ADD %KEY%\05 /V 1 /D "%systemdrive%\Install\Java\Java_1_5_0_02.exe /s /v\"/qn ADDLOCAL=jrecore\"" /f
  7. Hi About the 4096 character limit, the result could be to rename the main DP-folder to something like just D. That would certainly save som chars along the way.
  8. I don't know anything about their stability or even performance. I try to stay away from beta drivers/software on my machines. It's of course your call, since it's your packs, but personally I'd prefer the official releases only. Maybe people could voice their opinion on this subject?
  9. Hi I just looked at the changelog for Graphics A, and saw that you have change the ForceWare to 76.44. I'm not sure you know it, but despite that they are WHQL certified, they're still to be used as beta drivers, since they are not officially released by nVidia.
  10. Hi A couple of things: 1. Every Java-programmer hates is when javascript is called Java. You must likely don't know the difference, so no hard feelings 2. All data inside the desciprtion var is HTML. So you'll need to know the basics of that. 3. Look here HTMLHelp reference for help on tags like B, Strong, I, U, BR, HR and so on.
  11. Hi Try with %%1 instead of %1 Alternatively, you can change the call til wpi.hta to something like this: mshta.exe wpi.hta That should work, since C:\Windows\system32 should be in your PATH.
  12. Hi I would say that this new version both is complex and breaks the unattended way of usage. An idea could be, to make this a whole new seperate file, and have the autorun run this file, and still have the WPI to work in unattended installs with the original.
  13. Hi I would say that at the moment it's to difficult to change the number of commands (at least for inexperienced coders). What you could to as a last resort, is making a something.cmd and make that run your lines.
  14. You could do that, but with many DOS-calls you quickly clutter your CD. I belive the inline way is more clean, but to each his own :-)
  15. About that popup with the yes/no. If you can settle for an OK/Cancel box, you can try the javascript function confirm(text) returns true on OK, false on Cancel
  16. Hi 1. Some people use the msiexec /i (/i for install), but it shouldn't be needed, since msiexec is already registered to the .msi files. 2. in your config use these: regb[pn] = Regfile BEFORE commands rega[pn] = Regfile AFTER commands 3. I have my cleanup.cmd in my winnt.sif just after WPI
  17. Most DOS functions isn't programs in 2k/XP, but only functions of CMD. At the end of generate.js in your WPI/wpiscripts folder is a function called substituteCommand where those commands can be replaces. About the makedir, I've changed the function a bit to this: function substituteCommand(cmd) { var prog = path(cmd); var firstToken = prog.substr(0,prog.indexOf(" ")); switch (firstToken.toUpperCase()) { case 'FILECOPY': prog = ("CMD /C " + prog.replace(/FILECOPY/gi,'copy')); break; case 'DIRCOPY': prog = ("CMD /C " + prog.replace(/DIRCOPY/gi,'xcopy') + "/I /E /Y"); break; case 'RENAME': prog = ("CMD /C " + prog.replace(/RENAME/gi,'ren')); break; // Additions by carsten@indysign.dk case 'DELETE': prog = ("CMD /C "+ prog.replace(/DELETE/gi, 'del') +" /q"); break; case 'MAKEDIR': prog = ("CMD /C "+ prog.replace(/MAKEDIR/gi, 'mkdir')); break; } return prog; }
  18. It shouldn't cause any problems. I've added the %temp% variable in there. And also, i've added a few commands in "substituteCommand". Namely DELETE and MAKEDIR.
  19. Hi You can try something like this. Now remember this is only a quick sketch to get you on the right track. <html-code-design> <? // Connect to the database mysql_connect('server', 'username', 'password'); mysql_select_db('database'); // Only when the form is submitted and id is number only if ($_SERVER['REQUEST_METHOD'] == 'POST' && preg_match('^[0-9]+$', $_POST['infoID']) { $result = mysql_query('SELECT infoTitle, infoText FROM infos WHERE infoID=$_POST['infoID'] LIMIT 1'); if (mysql_num_rows($result) > 0) { $row = mysql_fetch_assoc($result); echo '<b>'.$row['infoTitle'].'</b><br />'; echo $row['infoText']; } else { echo 'Unknown ID'; } } ?> <form name="infoForm" action="" method="post"> <select name="infoID" size="1"> <? $result = mysql_query('SELECT infoID, infoTitle FROM infos ORDER BY infoTitle'); while ($row = mysql_fetch_assoc($result)) { echo '<option value="'.$row['infoID'].'">'.$row['infoTitle'].'</option>'; } ?> </select> </form> <? // Closes the database mysql_close(); ?> I hope i've understood it correctly
  20. Sorry to disappoint you YoussefGamil, but that code looks like some Java that has run through a filter of some sort. The =3D would seem to equal a = sign. Also the <![CDATA[ would suggest XML. So in conclusion, I would say: It's an XML-document with a java code-snippet. The <javascript>-tag is a home-made tag, and not valid in (X)HTML.
  21. Stalkie

    Mar

    Hi Have you tried escaping the extra quotes? You also missed an end quote.
  22. /qb-! is what makes the dialog have no cancel button. What does the custom switch actually do? <{POST_SNAPBACK}> According to http://java.sun.com/j2se/1.5.0/docs/guide/...ide/silent.html the CUSTOM=1 is a license thingie. And as a sidenote, it also says that WEBSTARTICON=0 isn't valid anymore.
  23. I too have had problems with this. Please note, I've only tested it on VMWare. I don't know if this matters? The reg add entries didn't work in that batch file, so I moved them to a seperate batch clean_drivers.cmd from GUIRunOnce in winnt.sif (Please correct me if the section name is wrong) that runs the sound controls batch, reenables driver signing and deletes the driver dir.
×
×
  • Create New...