Jump to content

jaclaz

Member
  • Posts

    21,291
  • Joined

  • Last visited

  • Days Won

    53
  • Donations

    0.00 USD 
  • Country

    Italy

Everything posted by jaclaz

  1. jaclaz

    Drive Order

    No, it's the other way round. The new install of Windows 7 ran ("virtually", what was actually ran was another program): bootsect.exe /NT60 C: the result is that the bootsector is currently of the "NT60 type" that consequently loads BOOTMGR (and from it \boot\BCD). To "revert" you need to run (from the booted windows 7 and AFTER having verified that the C: drive letter belongs to first partiton of first hard disk, aka the (hd0,0) you got from the grub4dos command): bootsect.exe /NT52 C: the result will be a bootsector of the "NT52 type" that consequently loads NTLDR (and from it BOOT.INI). Before running it, do read the related articles on technet, though the good guys at MS managed to have an "older" article with a "higher" number and mixed (as usual) the minds of 3/4 to 4/5 of readers by using the (completely wrong) adjective "master" talking of the partition boot record code, do read the comments to this article: http://technet.microsoft.com/en-us/library/cc749177(v=ws.10).aspx and further mixed mattters with the "7" version of the article (since the new switch /mbr was introduced): http://technet.microsoft.com/en-us/library/dd744577(v=ws.10).aspx jaclaz
  2. Wow a calculator! What's so special about a Metro Calculator? Are they going to remove calc.exe? Or would they brag about selling an OS with 2 different calculator apps? And... Sound Recorder. If that ends up being true... and it is similar (or the same, yeah right) as SoundRec from Win9x, I know a lot of people would be happy with its return. Maybe they think that people remembering Windows 3.1 and all the way up to XP are all dead or became senile and forgot , I guess their next move will be to (re-)introduce the Object Packager, listing it as "new feature", it would probably be renamed "Content Integrator" or maybe "Modern merger". I wonder how they will manage to create a flat icon for the "box", though . jaclaz
  3. jaclaz

    Drive Order

    Maybe you are not very familiar with the theory and operation of booting a NT based system. Brief "crash course" : All "MS" Operating System are quite "arrogant". When you install them they give you NO option but "automagically" take possession of your hard disk and do to it whatever they see fit. The standard booting sequence (for windows NT up to Server2003) is the following: BIOS->MBR->active primary partition bootsector-> NTLDR-> BOOT.INI choices -> loading of the NT OS The BIOS just reads the MBR (first sector of first disk in boot sequence). The MBR contains CODE (that normally only loads the first sector of the active primary partition in the partition table) and DATA (the partition table, the Disk Signature, the Magic bytes) The PBR (Partition Boot Record) or VBR (Volume Boot Record) or bootsector is the first sector of the partition loade dby the MBR. It contains as well some DATA (the so called BPB or Bios Parameter Block containng info on the volume, the filesystem, etc.) and some CODE (the code for a NT system load or chainloads NTLDR, we will call this code "NT52" you'll understand later why). With Vista (and following, like 7) the booting sequence remained the same BUT the actual files involved changed: BIOS->MBR->active primary partition bootsector-> BOOTMGR-> \boot\BCD[1],[2] choices -> loading of the NT OS The MBR uses slightly different code, but to the SAME effect (simply loads the first sector of the active primary partition in the partition table) The PBR has different code that loads BOOTMGR (we will call this code "NT60", you'll understand later why) [1] Normally when you install Vista or later over a disk that has already a BOOT.INI the choices in there are "imported" automatically in the \boot\BCD, but it depends on the exact way the install was performed (on what was actually "visible" during the install) [2] The BOOTMGR doesn't read only the \boot\BCD, but also (if existing on the same partition) the BOOT.INI, BUT it "discards" each and every entry involving an arcpath (like multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect) and ONLY reads those pointing to a file (like C:\grldr="grub4dos") There is an utility bootsect.exe that can be used with parameters: /NT52 <- this will re-write the PBR CODE (leaving the PBR DATA "as is") with one pointing to NTLDR /NT60 <- this will re-write the PBR CODE (leaving the PBR DATA "as is") with one pointing to BOOTMGR Most probably when you re-installed 7 you have hidden the partition where XP was or however the previous XP installation was not detected and was not added to the \boot\BCD. The PBR CODE was re-written anyway pointing to BOOTMGR. The "i only get a black and white menu with option of loading Win7 or grub4dos." is likely a "merge" of the contents of the \boot\BCD (ONLY the Windows 7) and of the BOOT.INI (only grub4dos, since arcpaths entries are ignored). It is easy to verify this, just add to the BOOT.INI a line like: C:\afakeentry="A Fake Entry" and see if it is added to the "black and white menu with option of loading Win7 or grub4dos". If you can re-cap your current situation of disks I might be able to provide specific instructions on how to solve the problem , in the meantime you can try selecting grub4dos in the choice you get, then press c to get to command prompt and at it: grub> type: root chainloader /ntldr boot pressing [ENTER] after each command. You should be able to boot to XP "as before" (i.e. see all the choices you have in BOOT.INI. When you run the "root" command, grub4dos should provide you with the disk/partition number, like (hd0,0), and when you run the "chainloader /ntldr" it should provide info like "Will boot NTLDR from.....". Please jolt down these info before issuing the "boot" command and post them. jaclaz
  4. jaclaz

    EMS in XP

    @Asp Try doing this: Or more simply. Go to Start/run and try starting command.com. In it run: SET Go to Start/run and try starting cmd.exe. In it run: SET You will see how the environment variables are different. As an example I have an old DOS program that I need to run from time to time that (Clipper based) and I have a variable CLIPPER=F253 ONLY when running command.com (and NOT when running cmd.exe), it is possible that EMS behaves differently, but it would be strange. jaclaz
  5. jaclaz

    EMS in XP

    Yes and no. Meaning that it depends if command.com is started or cmd.exe is. By default cmd.exe is started, I am not sure if when a dos app is started directly (like form Start/Run) this also happens. But if you open a command.com prompt and from it run the DOS app you should need not a .pif If you prefer, the cmd.exe command processor ignores config.nt and autoexec.nt, whilst the command.com command processor reads them. More: http://support.microsoft.com/kb/314106/en-us
  6. jaclaz

    EMS in XP

    Sure , but the program produced config.nt and autoexec.nt @Asp WHY was config.nt copied as config.sys? You have to somehow provide environment parameters to the NTVDM: http://en.wikipedia.org/wiki/Virtual_DOS_machine running 16 bit apps, don't you? JFYI: http://support.microsoft.com/kb/324767/en-us http://home.earthlink.net/~infernosadventures/configuringdosemulation.htm jaclaz
  7. Yes, that means "success" (in connecting only) . The adapter is OK, then. If you re-check the very first post of this thread, the "original" was to access the thingy with the PCB completely detached and then, at a given point, reconnect it, place screws back in their holes and tighten them while still "live" . Of course it is more risky (and you need to be more careful) than the later found trick of the cardboard (no risk of screwdriver slipping, screws falling and shorting anything on the PCB, etc.). An alternate way (which was never used/tested specifically on these drives but that has been used on other devices needing a "live" re-connection) is to make a cardboard mask of the "top" of the PCB, with just the screw holes "punched through", this way when you put back the PC and place and re-tighten the screw there is no risk of making shorts. But still the cardboard trick "between PCB and disk" has always worked, the matter is just that for *unknown reasons* for some people the head contacts were the one to insulate, for other they were the motor ones. It is very possible that your previous failure at connecting was a "glitch in the matrix" and if you try again you will connect alright. Double check the connections on the Tx/Rx pins, and if needed "tighten" them. No prob, you have all the time in the world (and even more) though I hope you are not attempting to do the unbricking on a bus or on a train . "unbricking on the road" and "juggling unbricking" are entirely new frontiers . You are welcome . Keep us posted of progresses/results. jaclaz
  8. Strange, if it was an error, you should have something *like*: LED:000000CC FAddr:0024CDC9 RST 0x20M (P) SATA Reset Which TTL adapter did you get/use? Are you sure it is a 3.3V one? Can you try it with another drive? Is it properly grounded? See: BTW it is very possible that the drive is gone, but if now it spins (and it spins correctly) the spindle seizure should have not caused any kind of issue to the "firmware". The procedure you used to free it may well have damaged (further) something, but still you should have a "more verbose" kind of error. There is no such thing as "the card under the PCB", there is: card under the PCB head contacts card under the PCB motor contacts (if you tried the first, try with the second and viceversa) jaclaz
  9. A nano-battery should be able to provide enough power to a nano-drone to fly it for a few nano-seconds. In the spoiler there is an image of an AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA sized prototype . jaclaz
  10. But what do you have in the "plain" System Properties? http://www.sqldbadiaries.com/2011/03/01/disable-unsigned-driver-installation-warning-in-windows/ jaclaz
  11. @Kel Reality check. You walk down the street and find a baby crying loud. What do you do? Try and find what makes him cry so loud and remove the cause (JFYI it is a thorn in his left foot) . Call 911/Assistance . Gag him before calling 911 or trying to find the cause. Behead him. Other (please specify) jaclaz
  12. Don't try to be smart , the one in the photo is obviously the prototype of the hard disk drive support designed by Galileo Galilei in 1633 . The project started in 1632 to transform the tower of Pisa into a data farm is little known : (the idea was to use the wind going through the arches to cool the servers ) But hard disks manufactured before around 1700 needed to stay horizontal, hence the need for the inclined support.... jaclaz
  13. In Italian there is a common saying (mocking a Law article), often used when there is a dispute, to mean that whoever has in his possession the money (or property or *whatever*) already won, will win anyway: Liberally translated into English (to try and keep the rhyme): I guess that it's time to replace "money" with "data", when referring both to the "cloud" and to the "prism" surveillance. jaclaz
  14. Re: Windows RT Not really news: http://bgr.com/2013/03/07/windows-rt-criticism-362860/ http://bgr.com/2013/05/10/microsoft-windows-rt-analysis/ Almost news: http://bgr.com/2013/06/03/microsoft-windows-rt-licensing-fees-cut/ So the amount of (less) money is seemingly not only connected to just the device poor sales but also to the OS itself being licensed to less OEM machines or for a lower price... jaclaz
  15. Do those mini PC's sport 4 little circular/cylindrical pieces of rubber on the top (one near each corner)? Seriously now, maybe they have been poorly or wrongly assembled by mistake, it is uncommon that a disk is not mounted in such a way that it is: horizontal with the label on the top side (and the PCB on the lower side) but see below, it is entirely possible. In "all in ones" the disk is generally mounted vertical, with the label facing outwards. It's several years that the disk drive manufacturer "allow" mounting disks "every which way you can", so no, it's not an evil plan to have those drives have a shorter life. http://www.howtogeek.com/128397/does-hard-drive-orientation-affect-its-lifespan/ On most laptops they are mounted "the right way", but there are more than a few that have them "upside down". I presume that the decision is made at design time depending on the expected airflow in the case. Can you provide make/model of those PC's and laptops? jaclaz
  16. Not really. It is like reducing the numbers of fans which suction or blowing effects may interact and produce in the end a worse airflow than you would have with less fans. It is more like closing the windows of your car to get more speed. Not necessarily applying to your case, but concepts like turbulence and laminar flow applies to fans and computer cases: http://en.wikipedia.org/wiki/Turbulence http://en.wikipedia.org/wiki/Laminar_flow jaclaz
  17. Interesting info , but call me tough as much as you want , the matter is not yet fully cleared IMHO. Let me try to recap. I found a post on another board saying that two values in the Registry are changed by the control panel: HKLM\SYSTEM\CurrentControlSet\Hardware Profiles\Current\Software\Fonts\LogPixels HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontDPI\LogPixels and that they are change TWICE, hypothizing that a given order is needed. dencorso posted that by manually setting those two (and those two only) he managed to change the settings in accordance to the post. tomasz86 on the 2k thread (just like you mentioned) additionally changes the HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics\AppliedDPI I am trying to understand if this latter change is: a self-standing alternative an additional (unneded) change a needed additional change nothing of the above When you go to Control Panel -> Display -> Appearance -> Font Size-> | Normal | Large | Extralarge | only the two LogPixels keys are seemingly changed When you go to Control Panel -> Display -> Settings -> Advanced -> and change the dpi settings, then BOTH the WindowsMetrics AND the Logpixels keys are changed. Right? An article with screenshot so we have the same "visual base": http://www.hwdot.com/2008/10/how-to-restore-default-windows-xp-fonts.html But then, why the reboot is needed? (Doesn't the "Apply new settings without restarting" work alright?) Or, is there a way to do the same things the Control Panel does without using it (and without the need to restart)? jaclaz
  18. Pardon me, but I still miss some info. The unresolved questions are: That particular key "AppliedDPI" is: *needed* OR *alternative* to the "LogPixels" one? Which one(s) is/are affected when you use "normally" the Control Panel? jaclaz
  19. One thing Dvorak has right. Those four slides are lame. jaclaz
  20. To be fair, there is a portal for indipendent games (at least for the XBOX 360). How it is managed: http://xbox.create.msdn.com/en-US/home/about/how_it_works_review is clear from the evident attention to details. What can i say? Lorem ipsum dixit! (and I do mean it! ) jaclaz
  21. I can even remember when PC's and Software came with manuals ("real" books), I still have a DOS manual that came with the pre-installed DOS (and Windows 3.x) Compaq computer, which is actually very good, and that no "hyperlinked" help file can beat (not because of being hyperlinked help files instead of print on paper but because having been poorly written, and missing 2/3 to 3/4 of commands, sintaxes and anything besides very basic usage). jaclaz
  22. But bits are also licensed, NOT sold. What about revamping this not-so-old idea (that thank goodness never took hold)? http://en.wikipedia.org/wiki/Flexplay They could make non copyable DVD's that only last - say - a week/2 weeks/1 month/3 months/6 months/1 year and a "gold edition" (for which you have to be a member of the "Premium XboX1 Club", you need to be introduced by at least two pre-existing members, make a solemn oath about never using an iPad and pay a nominal fee of 360 US$ /year) lasting 2 years. For the most affectionate and smartest one, there is also the "Excellence Restricted Circle" which offers exactly the same as the above, but costs 720 US$/year, minimum 10 years and you have remote assistance - at most two hours/year - and provides you with a T-shirt and a badge representing a very tiny "O" with an even tinier "x" in the middle, symbolizing at the same time how exclusive the circle is and the actual vote in roman numerals the MS guys give to the console in a scale from 0 to 10). jaclaz
  23. There is NO safe place. Roboducks can read lips allright: https://i.chzbgr.com/maxW500/7570065152/h9FEF2C96/ If "they" are after you, "they" will get you. Resistance is futile! jaclaz P.S.: BTW there have been progresses in cat training in the meantime : https://i.chzbgr.com/maxW500/7541235456/hF7412986/
  24. Close hyperterminal and start it again. CTRL+z, etc. should start a new session with the disk. jaclaz
  25. I found that too but didn't understand what it was all about. How does "no execute" relate to this? It doesn't. It was just a way to show the Registry area where to look for (which in the meantime you had already found, we were cross-posting) and to experiment with (if you add WIN2000 to the explorer.exe key the behaviour should be the same even "directly" i.e. without using FAR) It is clearly the "WIN2000" the issue at hand, as you found out. Evidently Everest doesn't really "trust" the Registry and attempts to detect the "environment" (which is artificially set "backwards" by the "WIN2000" in your case). I would call that a "bug". jaclaz
×
×
  • Create New...