Content Type
Profiles
Forums
Events
Everything posted by jaclaz
-
Sure. BUt you can create the setting while "rightfully" booted and export it to the PE in your example, don't you? jaclaz
-
Exactly. Let's put it this way: If you create a partition on an Operating System that sees a max of 128 Gb of hard disk (LBA 28) and you create it to the maximum size, it will be 128 Gb in size (there will be NO - or very little - unused space after it) When you activate the LBA48 capability, the same OS (like ANY other LBA48 enabled OS) will see the same 128 Gb partition and a lot of free, unused space behind. In other words the first partition will remain a 128 Gb partition. Everything within the 128 Gb will remain EXACTLY as-is the little (or NO) unused space will become LOTS of unused space. The problem is if you create a bigger than 128 Gb partition on a LBA 48 enabled OS and then try to access it from a NON LBA48 OS. jaclaz
-
What do you mean? Check this screenshot: http://www.msfn.org/board/index.php?showtopic=141687 In disk 0 you can see: a primary partition (Dark Blue) drive letter D:, 29,88 Gb an extended partition (surrounded by a green border) containing: a logical volume (Light blue) drive letter C:, 89,53 Gb a logical volume (Light blue) drive letter E:, 28,29 Gb a logical volume (Light blue) drive letter F:, 150,38 Gb [*]some unused space at the end (Black) What you should see on your system (as you probably have a single Primary partition) is: a primary partition (Dark Blue) drive letter C:, roughly 128 Gb some (lots) unused space at the end (Black) jaclaz
-
IF you have a standard format for computer names, like: 2F16-01 2F16-02 .... 2F16-32 Something like this may be more appropriate: @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION SET Prefix=2F16- FOR /L %%A IN (1,1,32) DO ( IF %%A leq 9 (SET Num=0%%A) ELSE (SET Num=%%A) ECHO !Num! IF /I "%computername%"=="%Prefix%!Num!" ECHO regedit /s myreg!Num!.reg ) Just an example, it will just print on the screen numbers and if the computer name matches the regedit command line. jaclaz
-
Maximus-Decim Native USB Drivers
jaclaz replied to maximus-decim's topic in Windows 9x Member Projects
That's typical of the old DIN connector: http://pinouts.ru/Inputs/KeyboardPC5_pinout.shtml Since the plug is "huge" it is likely that by accident some extra force is applied to it. This will usually crack the soldering to the motherboard. Get a soldering iron and re-heat/re-solder the connector solderings to the motherboard, it will last for another ten years.... jaclaz -
Issues on some machines with Small ISO method
jaclaz replied to Compstuff2's topic in Install Windows from USB
Naah, you CANNOT get away with this so easily! Actually most of the jokes around are about DELL's customers : http://www.ahajokes.com/dum09.html and not about the smart guys that actually manage to create completely UNstandard BIOS and hardware, but we can adapt a few old ones: down vote But I have a scoop the original handwritten source of the BIOS part that creates drive assignments in DELL's BIOS: Strangely enough, the 1.0 Beta 6 is the 1.0 Beta 6, thus NOT the last (hopefully) one, nor the Final. But yes , it is the more recent one. jaclaz -
Check the data in partition table. You can do it "approximately" by looking at the disk in disk management or "exactly" by veryfying the partition(s) table with any partition table viewer/editor, example: http://www.dtidata.com/ntfs_partition_repair.htm Most probably, you have a 128 gb partition and the rest of the disk unpartitioned. Please note that a few hard disks do have a jumper to limit the capacity shown to 128 Gb, you should also check this. jaclaz
-
Issues on some machines with Small ISO method
jaclaz replied to Compstuff2's topic in Install Windows from USB
I don't run a full DBAN since a few minutes are more than enough to wipe out a MBR Sure, but compare with the fractions of second to write a bunch of 00's... Wait until ilko_t has made his tests, the creator of WinsetupFromUSB having a laptop on which the proogram won't work is a nice twist to the otherwise lately fundamentally boring plot. ANd before anyone says anything different: YES, Lenovo's are queer YES, DELL's are MORE queer jaclaz -
Issues on some machines with Small ISO method
jaclaz replied to Compstuff2's topic in Install Windows from USB
DBAN is definitely overkill. At the most you have to write 00's to the MBR. But wait a minute, are you running an (integrated/added/modified) source of some kind? Can you try with a "vanilla" XP with SP 2 or SP3 integrated and NOTHING else but (if needed) mass storage drivers? I'll keep this question for later. You can have a look at migrate.inf approach, in the meantime (google for keywords "migrate.inf cdob jaclaz" - without quotes) jaclaz -
Happy to have given you something new to chew on. The idea is that most part of the needs is already coded and it is Open Source, so it's not needed to start from scratch (if anyone is willing to do something about this) Would you be willing to try the newish MS way to manage Offline Registries ? : http://www.boot-land.net/forums/index.php?showtopic=11212 http://www.boot-land.net/forums/index.php?showtopic=11312 maybe it could work on 9x (kernelEx or whatever) OT but not much : http://www.databack4u.com/snc/rtkf_eng.html http://www.ctuser.net/ http://www.ctuser.net/content/docs/reg2exe_en.htm jaclaz
-
Actually there is for PE 1.x. I don't think that on PE 2.x or 3.x it should be much different: http://www.911cd.net/forums//index.php?showtopic=19663 I guess it is possible to import the DosDevices key in the offline Registry inside the .wim. jaclaz
-
Well, the "drive isn't read" means that "no filesystems can be read" (which corresponds to a RAW disk). But the thing that is RAW, can be read allright (the actual \\.\Physicaldriven) The BIG problem is when the actual disk is not seen at all by the OS. There is a lot of confusion by the often lightly exchanged terms disk and drive, and volume. A disk drive (the whole thing) contains a number of minimal size accessible units, the sectors. Normally a sector is 512 bytes in size. A number of these sectors (normally 63, more under unpatched Vista and 7) are "hidden" and never normally accessible. Then a group of later sectors are grouped in a partition or volume (the thing that you actually format with a filesystem). These structures, in a simplified way are "indexes" or "pointers" to actual sectors. In other words a disk (whole disk) is made of sectors like: When you Partition a disk (as an example with a single partition some data is written to the sectors: When you format this partition or volume (what you have a drive letter assigned to ) some data is written to the sectors, the first sector of the partition is now sector at relative offset 0: When you save a file on this volume: So, basically: a partition or volume can only be found if the MBR data pointing to it is correct. -> Effect: RAW disk a filesystem on the partition or volume can only be found if the PBR bootsector pointing to it is correct. -> Effect: RAW filesystem a file on the filesystem can only be found if the Filesystem data pointing to it is correct. -> Effect: Lost file Now the idea is to make an exact copy of the whole disk AS IS, at sector level. Then, attempt to rebuild these "indexes" on the copy. This way it is possible to attempt different methods without the risk of compromising the original, that in case of problems can be re-imaged to start again from scratch. A couple examples of a recovery procedure from RAW: http://www.msfn.org/board/index.php?showtopic=141687 http://www.msfn.org/board/index.php?showtopic=145574 A suitable app to create the image is this one: http://www.boot-land.net/forums/index.php?showtopic=7783 jaclaz
-
WOW, you are one freaking JACK-a**. YOU SURE HAVE LOTS TO SAY, AND NOTHING TO CONTRIBUTE. In Italy we have a saying: [italian] Cencio dice male di straccio [/italian] which translates roughly to : Rag speaks ill of cloth. jaclaz
-
The Solution for Seagate 7200.11 HDDs
jaclaz replied to Gradius2's topic in Hard Drive and Removable Media
Check how it is seen in BIOS, first. If it is shown with 0 capacity, then yes,it's a LBA0 symptom. jaclaz -
Issues on some machines with Small ISO method
jaclaz replied to Compstuff2's topic in Install Windows from USB
You are mixing possibilities with certainties. The behaviour you described may be caused by the problematic MBR. Which does not mean it is the one and only possible cause of this behaviour. Running the setup from USB is similar but obviously not EXACTLY the same as running it from CD/DVD, so while it is possible that the problem is elsewhere, the fact that installing from CD/DVD works allright is a sign, but not enough to exclude this problem with setup and MBR's as a cause. It is well possible that the problem is your motherboard BIOS or even somewhere else, notwithstanding the fact that these USB methods have worked for several thousands if not tens of thousands of people, from time to time something is found that creates the need for a bug fix or a bettering. jaclaz -
OS up to XP/2003 you could only format. Format with the /q switch just formatted the partition. (quick) Format without the /q switch formatted the partition AND checked sectors. (long) Starting from Vista and consequently Server 2008 and presumably 7: Format with the /q switch just formats the partition. (quick) Format without the /q switch formats the partition AND wipes each sector AND checks sectors. (long) Reference: XP etc: http://support.microsoft.com/kb/302686/en-us Vista etc.: http://support.microsoft.com/kb/941961/en-us Since you are still keeping the drive there is no sense in wiping out the data, so: Open a commmand prompt window, and type in it: Format <driveletter> /q [ENTER] change <driveletter> with the actual drive letter your old drive has, check carefully. More options: http://ss64.com/nt/format.html jaclaz
-
Issues on some machines with Small ISO method
jaclaz replied to Compstuff2's topic in Install Windows from USB
Early setup may hang at strange MBR partition table. No prob. MbrFix /drive <num> clean But the question whether OP has aan actual NT OS in which to run the above remains valid. jaclaz -
Seagate (FreeAgent Go) Momentus 5400.6 - Solution?
jaclaz replied to fackeid's topic in Hard Drive and Removable Media
What does Victoria show? http://www.benchmarkhq.ru/english.html?/be_hdd.html From the looks of what you posted it seems like you've managed to kill the disk allright. Most probably it is still recoverable, but you will need software and hardware that is outside the reach of a hobbyist. I am talking of products like PC-3000 or HD Doctor, thingies going in the range of a few thousands US$. jaclaz -
Issues on some machines with Small ISO method
jaclaz replied to Compstuff2's topic in Install Windows from USB
No, it should be enough to restore the "normal" 2K/XP MBR CODE: http://www.sysint.no/nedlasting/mbrfix.htm MbrFix /drive <num> fixmbr But can you run it? Otherwise you can wipe completely (still just the MBR) from within grub4dos, using the dd command and overwriting the MBR sector with any of the hidden ones (that should be 00's). jaclaz -
Cloning 1 machine's drive to a identical separate machine
jaclaz replied to shawntkeating's topic in Windows XP
Just for the record, Mark Russinovich's new approach to SID: http://blogs.technet.com/b/markrussinovich/archive/2009/11/03/3291024.aspx jaclaz -
If you read the post just above yours, it means that: it CAN be done links to HOW to do it are given Please name the "Bart geeks" that said it can't be done, I doubt that ANY person rightfully defined as "Bart geek" can have missed the original thread on 911CD: http://www.911cd.net/forums//index.php?showtopic=14181&hl= jaclaz
-
hence? Well, there has been a misunderstanding. To make space you delete files and folders. To make space quickly you (re-)format the partition (with the /q option)- To make space in such a way that NO previous info can be retrieved, you wipe a drive, using one of the suggested program or, if only the partition needs to be wiped by formatting the partition under Vista/7 (it won't work under XP and previous) without specifying the /q option. jaclaz
-
File\i386\biosinfo.inf could not be loaded.
jaclaz replied to ackain's topic in Install Windows from USB
You mean that "rundll32 wbemupgd, UpgradeRepository" changed nothing? http://www.boot-land.net/forums/index.php?showtopic=6730&st=8 There must be something on that specific machine that simply is UNcommon, I wonder WHAT it can be. jaclaz -
There is nothing "good" or "bad" in wiping a hard disk drive. Points to ponder are: do you have a backup strategy for your DATA? are you going to re-sell the old drive on e-bay or similar? IF #1 is OK, then you CAN wipe the disk allright. (otherwise you should start with a sound backup strategy and the old drive may be of use) IF #2 is what you want to do then you SHOULD wipe the disk. To wipe the disk you can use (strongly advised) any simple program doing a single pass of 00's. (anything else is b***sh**) http://www.msfn.org/board/index.php?showtopic=125900 Recommended: http://cmrr.ucsd.edu/people/Hughes/SecureErase.shtml it is also part of the UBCD: http://www.ultimatebootcd.com/ (just download and burn, seveal more utilities included) jaclaz
-
Have you checked this? Russian: http://paullee.ru/regstry.html Google Translate: http://translate.google.it/translate?u=http%3A%2F%2Fpaullee.ru%2Fregstry.html&sl=ru&tl=en&hl=&ie=UTF-8 jaclaz