Content Type
Profiles
Forums
Events
Everything posted by jaclaz
-
Batch script list drives.
jaclaz replied to Valerie's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Well, if order of columns is not a problem, a one-liner is possible at WMIC too: wmic.exe path Win32_Logicaldisk Get description^, name To change the order of the column is trickier that it might seem: @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION FOR /f "tokens=2,3 delims=," %%A IN ('wmic.exe path Win32_Logicaldisk Get name^, description /FORMAT:csv.xsl') DO ( SET Tempvar=%%A,%%B FOR /F "tokens=1,2 delims=," %%C IN ('ECHO !TempVar!') DO ECHO %%D %%C ) jaclaz -
I don't think this is the case, unless you previously made that partition into a Dynamic Disk. There is a specific product: http://www.dynamic-disk.com/download.html Read their "FAQ's": http://www.dynamic-disk.com/dynamic-disk-resource.html I guess that before (hopefully) find the solution to the problem, you need to make sure about the cause of it, but 99.99% of the time, unless the dynamic disk has been intentionally made and is a spanned volume, all you have to do is to change the partition ID from 42 to 07 in the MBR. Some more details here: http://www.bestshareware.net/howto/convert-dynamic-disk-to-basic-disk.htm#1 jaclaz
-
Batch script list drives.
jaclaz replied to Valerie's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Try reversing the logic of it. Fsutil does NOT throw an error if a drive is not accessible, BUT it will report an error message. In my Italian XP this error is "Directory principale non esistente" Thus this works: @ECHO OFF for %%1 in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do ( fsutil fsinfo drivetype %%1: |FIND /V "Directory") jaclaz -
Cannot say what the geeks will say, personally I have to say that there is no point in asking people NOT to ask "why" if you later post the "because" ... jaclaz
-
Windows 9x + Linux shared swap file/partition?
jaclaz replied to HardDriv'n's topic in Windows 9x/ME
Sure. I was just only hinting what Mijzelf explicited, that the Linux "Swap partition" has actually NOT a filesystem, (the 0x82 ID simply means "don't mess with it" ): http://www.win.tue.nl/~aeb/partitions/partition_types-1.html As you pointed out, traditionally Linux uses this partition space as RAW, whilst you want to set up the Linux install to use a swap file, instead: http://www.linux.com/news/software/applications/8208-all-about-linux-swap-space http://linux.die.net/man/8/mkswap jaclaz -
More generally, and just for the record, in this Forum: http://www.boot-land.net/forums/index.php?showforum=77 there are 4 (four) stickies with slightly different tutorials about how to make Windows 7 bootable from USB devices. jaclaz
-
MAC ADDRESS
jaclaz replied to titishor's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Actually he was ALREADY pointed EXACTLY to the needed things. Time to go more explicit. Open a command prompt. Run in it: IPCONFIG /ALL Look at the output. Depending on the language used the way of parsing it may differ, but basically since all it's required is the MAC address, and it should be the ONLY field which holds - (minus signs) this should work (on command line): FOR /F "tokens=2 delims=:" %A IN ('IPCONFIG /ALL ^| FIND "-"') DO ECHO MAC=%A This is a bit more "sophisticated": FOR /F "tokens=2 delims=:" %A IN ('IPCONFIG /ALL ^| FINDSTR "[0-F][0-F]\-[0-F][0-F]\-[0-F][0-F]\-[0-F][0-F]\-[0-F][0-F]\-[0-F][0-F]"') DO ECHO MAC=%A or, as already pointed out, use GETMAC.EXE or, as ONLY hinted, use WMIC: WMIC.EXE NIC Get MACAddress /Format:LIST You don't actually need .vbs, a batch is enough. Obviousyly, if you actually want to write a batch you need to learn batch syntax, the given site is full of examples and howto's, including these ones: http://www.robvanderwoude.com/ntfor.php http://www.robvanderwoude.com/ntfortokens.php jaclaz -
Is it? You may have different sources than myself: http://www-2.cs.cmu.edu/~garth/RAIDpaper/Patterson88.pdf AFAIK it was designed to meet the growing speed of processors and for cost effectiveness against SLED's, and the fact that they are mainly used in Servers is only because PC's have become so cheap and (most) final users don't care that much about data integrity. RAID has been also commonly used on gaming rigs or graphical workstations to improve performance, typically in RAID0 stripes of two disks. jaclaz
-
MAC ADDRESS
jaclaz replied to titishor's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Good , when you're back read these: http://ss64.com/nt/schtasks.html http://www.robvanderwoude.com/batexamples_r.php http://www.robvanderwoude.com/files/random_nt.txt http://www.robvanderwoude.com/files/random_nt2.txt And here (look for "random"): http://www.robvanderwoude.com/ntset.php and you should have all you need to create a base batch. jaclaz -
MAC ADDRESS
jaclaz replied to titishor's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
As always, a word of caution, what you plan to do is potentially very dangerous, besides, there is an easy way to avoid it getting to someone else: DO NOT GIVE IT TO ANYONE! If you don't trust your friend to do the same, I guess he is not that much as a friend. However, you want us to write a batch for you? Or you want to learn how to write such a batch? If #2), Start reading here: http://www.911cd.net/forums//index.php?showtopic=19766 Then read here: http://www.robvanderwoude.com/batexamples_w.php http://www.robvanderwoude.com/files/whoru_nt.txt http://www.robvanderwoude.com/loginscripts.php http://www.robvanderwoude.com/vbstech_network_mac.php You should get the idea. jaclaz -
Unfortunately at the moment you can only have standard reply #32: http://www.msfn.org/board/index.php?showtopic=133086 http://www.msfn.org/board/index.php?showtopic=133086&st=8 unless you post LOTS more details on both your hardware AND software you used, and HOW you used it. Here is a quick sum up: http://homepage.ntlworld.com./jonathan.deboynepollard/FGA/problem-report-standard-litany.html about the proper way to ask for help. jaclaz
-
I guess you have it wrong. I don't think nuhi did (and hopefully does and will do ) this for money. He never got a penny for all the work he put on it, since anyway nlite is free (as in free beer) to anyone non-Commercial to use. Personally, though I do like nlite and the very good work nuhi put in it, I don't like the way he carries it on (all by himself and largely in a "secretive" way), but the actual point is that there is very little to release a "Open Source", nlite is mostly a collection of tweaks and hacks, "glued" together by a very simple .NET "wizard like" app. Anyone with some time can collect the things nlite does and create a similar engine, don't think that this would take that much more time than the time needed to get familiar with nlite source. You just put together FDV's files and BoldFortune's batches/tweaks, you add some of the info available here on MSFN and it will be mostly done. Usually the problem is finding someone willing to actually spend his/her time in maintaining a program, not finding the money to "buy" the Source Code. If I were you, instead of trying to raise the money, I would try to form/find a team of "credible" maintainers.... jaclaz
-
The Solution for Seagate 7200.11 HDDs
jaclaz replied to Gradius2's topic in Hard Drive and Removable Media
GROUND, when we are talking of low voltage DC doesn't come from "thin air", you have to have ALL the devices you are using have the low side (0V) ALL connected together. I.e. the BLACK (make sure it is the 0V) of the adapter NEEDS to be connected to the GROUND of the disk AND to the 0V (again BLACK) of the power supply. This way you make sure they all share the same "base potential" and you avoid the possible loops of data. In TTL the data is represented by voltage levels that are the differential voltages from a "common base", i.e. the 0 (zero) Volt level. If any of the devices "leak" a small amount of voltage this "base level" may be higher (or lower) on one device as compared to another device, and this can lead to mis-interpreting the DATA. jaclaz -
Which one? The one in NY?: http://brightonlawgroup.com/Home.html I knew a chap that used to work in there, cannot remember his name right now, Klagefeld, or something like that, do you know him? jaclaz
-
Check this one: http://mt-naka.com/hotswap/index_enu.htm jaclaz
-
Windows 9x + Linux shared swap file/partition?
jaclaz replied to HardDriv'n's topic in Windows 9x/ME
Do you also know which filesystems the two OS actually use? jaclaz -
Actually, and just for the record, the Reanimatolog version is NOT a "CYGWIN" version, but rather a "MINGW" one. There is an updated MINGW version: http://fy.chalmers.se/~appro/linux/DVD+RW/tools/win32/ but as cdob pointed out there is not one reason in the world to change the version that comes with nlite. jaclaz
-
Windows 98SE (with 98SE2ME) and a recent USB composite device
jaclaz replied to RetroOS's topic in Windows 9x/ME
Maybe also working 5.1.2600.1331: http://support.microsoft.com/kb/838989/en-us jaclaz -
I have one word for you: grub4dos http://diddy.boot-land.net/grub4dos/Grub4dos.htm http://diddy.boot-land.net/grub4dos/files/install_windows.htm#windows3 Use BCDEDIT of Windows 7. jaclaz
-
Can't copy image of NG12 from my HD to external drive
jaclaz replied to morland's topic in Windows XP
@morland No if it's one of those Network enabled drives you should NOT convert it to NTFS. I seem to remember that GHOST can directly made SPLIT images (how would you make a backup copy of an image on CD/dvd's otherwise?) jaclaz -
HELP! How do I get Direct Cable Connection to work on WindowNT4?
jaclaz replied to NewtWin's topic in Windows 2000/2003/NT4
Well, I don't see that much of a problem with a serial connection . References: http://support.microsoft.com/kb/305621/en-us http://support.microsoft.com/kb/142065/en-us http://www.cisco.com/en/US/tech/tk801/tk36/technologies_configuration_example09186a008017acac.shtml Particularly: http://www.windowsnetworking.com/articles_tutorials/dccmain.html Maybe there is something in your install that is corrupted and it prevents it from working. .( jaclaz -
Just for the record, it is common practice ( and a sign of normal courtesy/politeness) to send to the Author a number of copies (at least one) of the publication that includes his/her work, as soon as it is actually published. It is strange that you weren't offered this. jaclaz
-
Sure, life is tough , and most people are just ungrateful bastards (and whiners ). Comeon , you found a nice trick , this thread has (right now) 130 views and not one "thank you". You may want to compare with this one: http://www.msfn.org/board/index.php?showtopic=111401 7285 views and 5 thank you's? Then compare the above 7285 views with the views the "base" threads have had? (1,088,166+675,581+552,133=2,315,880) http://www.msfn.org/board/index.php?showtopic=61384 http://www.msfn.org/board/index.php?showtopic=111406 http://www.msfn.org/board/index.php?showtopic=120444 I should tell you something ..... jaclaz
-
Here we have a cognitive problem. An answer can be either valid or not, but NOT necessarily the one you know. The teacher in second grade asks to one pupil: The pupil: The teacher: Then the pupil asks the (female) teacher ..... jaclaz
-
Can't copy image of NG12 from my HD to external drive
jaclaz replied to morland's topic in Windows XP
...or use CONVERT.EXE : http://technet.microsoft.com/en-us/library/bb456984.aspx http://support.microsoft.com/kb/214579/en-us jaclaz