Everything posted by gummy2
-
NERO v7.2.3.2b With Orca
DJB DO you mind sharing I allso would like to know this, what do you rename these Greek named folders to? got it I think MOVE /Y "%NeroProfile%\Data\Nero Burning ROM.lnk" "%NeroProfile%" MOVE /Y "%NeroProfile%\Data\Nero Express.lnk" "%NeroProfile%" MOVE /Y "%NeroProfile%\Labels\Nero CoverDesigner.lnk" "%NeroProfile%"
-
Nero-7.7.5.1_eng
hi is there a guide for doing your own Lite or just keeping only The Basic's for Nero-7.7.5.1 , i followed this guide , http://www.msfn.org/board/index.php?s=&...st&p=524528 but it dont seem to work in 7.7.5.1 , i would like to try and do my own Switchless Installer of nero
-
Multi-Boot winnt32.exe install started from inside Windows
ANSWER_FILE.TXT is just like the winnt.sif so your install can be unattended This line is the argument/Switch: /unattend30:d:\setup\XP\Professional\I386\ANSWER_FILE.TXT /unattend, no user input is required 30:is the number of seconds between the time that Setup finishes copying the files and when it restarts your computer where ANSWER_FILE.TXT is d:\setup\XP\Professional\I386\ANSWER_FILE.TXT
-
CDImage From CD
In Label properties, script , on click result = File.Run("TOOLS\\CDIMAGE.EXE", "-lUXPD -btools\\xp.dat -h -n -o -m ROOT\\UXPD C:\\UXPD.iso", "", SW_SHOWNORMAL, false); allso this page tells you http://flyakite.msfnhosting.com/testingburning.htm You can download my autorun made with Autoplay Media Studio 6 if you think it can help http://www.msfn.org/board/index.php?s=&sho...ndpost&p=492211
-
Multi-Boot winnt32.exe install started from inside Windows
On my autorun I have options to make a ISO of each os on my Multi dvd so for this to work i need to keep the TXTSETUP.SIF to SetupSourcePath = "\" in setup\XP\Professional\I386 so when it makes the iso of the os its pointing to the right place but in my boot sector pro1 my TXTSETUP.SIF SetupSourcePath = "\SETUP\XP\Professional\" Now when i install from with in windows useing winnt32.exe it makes a new $WIN_NT$.~BT thats why i made the bat file to copy over my TXTSETUP.SIF from my boot sector pro1 so it points to the right paths
-
Multi-Boot winnt32.exe install started from inside Windows
Now i have put this in AutoPlay Media Studio this seem to work. result = File.Run("AutoPlay\\Docs\\pro1.CMD", "", "", SW_SHOWNORMAL, false); and in the pro1.CMD CMDOW @ /HID @echo off REM +===========================================================+ REM | Finding CDROM driveletter. | REM |-----------------------------------------------------------| SET TAGFILE=\OEM FOR %%i in (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 IF EXIST "%%i:%TAGFILE%" set CDDRIVE=%%i: %CDDRIVE%\setup\XP\Professional\I386\WINNT32.EXE /unattend30:d:\setup\XP\Professional\I386\ANSWER_FILE.TXT REM +===========================================================+ REM | Copying over txtsetup.sif to set the paths right. | REM |-----------------------------------------------------------| XCOPY /E /I /Q /Y /R %CDDRIVE%\PRO1\TXTSETUP.SIF %SYSTEMDRIVE%\$WIN_NT$.~BT XCOPY /E /I /Q /Y /R %CDDRIVE%\PRO1\TXTSETUP.SIF %SYSTEMDRIVE%\ RD /S /Q "%SYSTEMDRIVE%\SYSTEM32" EXIT I was thinking something like this but i am unsure if it would work %CDDRIVE%\setup\XP\Professional\I386\WINNT32.EXE /m:d:\PRO1 /unattend:d:\setup\XP\Professional\I386\ANSWER_FILE.TXT
-
Resources For Multi-boot Fans
setup.exe autorun, XP Style Download PS. You'll have to edit this with AutoPlay Media Studio 6.0
-
Multi-Boot winnt32.exe install started from inside Windows
they all work when i boot from cd shell , its when i try and install from my custom Autorun menu made with AutoPlay Media Studio In AutoPlay Media Studio File.Run("setup\\XP\\Professional\\I386\\WINNT32.EXE", "", "", SW_SHOWNORMAL, false);
-
Multi-Boot winnt32.exe install started from inside Windows
I have made a Multi-Boot dvd and allso put a autorun on with AutoPlay Media Studio , but when i try to install one of the os from the autorun it makes a new $WIN_NT$.~BT boot folder so its pointing to the wrong place. As my boot folders are PRO1 , PRO2 and PRO3 and SETUP\XP\Professional\ In AutoPlay Media Studio File.Run("setup\\XP\\Professional\\I386\\WINNT32.EXE", "", "", SW_SHOWNORMAL, false); I get this error just after it asks where to install to. Setup was unable to verify drive c:. Your computer may not have enough memory to examine the drives, or your windows XP CD may contain some corrupted files.
-
Coding of RC8 is now in progress. :)
Tri-Pack? Unattended without DriverPacks could stops the use of F6 and if no driver packs are in what if some one has to use F6 you could make it so u can put two winnt.sifs in one for Unattended with Driverpacks that would have OemPreinstall = "yes" and one for Unattended without DriverPacks with OemPreinstall = "no" http://www.msfn.org/board/index.php?s=&sho...ndpost&p=482777 Reason being someone might use Unattended with Driverpacks for fixing a old computer that someone brings to them with no motherbord disk and no drivers. But if someone was to build a new computer for someone the one without DriverPacks would be much quicker as they would have the new motherbord disk and drivers with it. But they might need F6
-
F6 fails to copy SCSI driver
OemPreinstall=Yes This option is default to No but if you are using the $OEM$ Distribution Folders then it needs to be set to Yes, so that Setup regards this installation as a distribution and copies these files over to the system drive. This occurs at the end of Text-mode Setup. Having OemPreinstall set to Yes will also prevent you from loading RAID/SATA drivers from a floppy disc during textmode setup. http://unattended.msfn.org/unattended.xp/v...681d3de1347d35/ http://www.msfn.org/board/index.php?showtopic=39565&hl= http://www.msfn.org/board/index.php?showtopic=39449&hl= http://www.msfn.org/board/index.php?showtopic=17915 IN winnt.sif [unattended] OemPreinstall = "No" [GuiUnattended] DetachedProgram="cmd.exe" Arguments = "/C START C:\WINDOWS\system32\OemPreinstall.CMD" In txtsetup.sif [sourceDisksFiles] OemPreinstall.cmd = 1,,,,,,,2,0,0 CMDOW.EXE = 1,,,,,,,2,0,0 In OemPreinstall.cmd put OemPreinstall.cmd and CMDOW.EXE in \I386 folder
-
Custom Setup.exe for MultiBoot DVD
if i use AutoPlay Media Studio 6.0 and ResHacker and i click on ResHacker.exe , then file , open setup.exe form xp pro, right click on bitmap and save all , then make the size in AutoPlay Media Studio 800 , 600 . Bitmap_19.bmp and 20 are good but Bitmap_21.bmp is the wrong size if i resize it it all looks wrong, can any 1 tell me where i am going wrong , or why its the wrong size but when u click on the exe the size is 800 , 600 ? Bitmap_19.bmp is 800 x 80 Bitmap_20.bmp is 800 x 100 Bitmap_21.bmp is 397 x 180 hmm i looked at this then looked again [url="http://www.msfn.org/board/index.php?showtopic=48883&hl=setup.exe"]http://www.msfn.org/board/index.php?showto...83&hl=setup.exe[/url] so it was a background color , not a bitmap
-
[solution] Installing Office 2k3 On T-12
trying to install office 2003 FrontPage at t-12 Nanaki while using your scrip in xplode using XPlode-SelectInstall.xml , installing at the t-12 stage , I get error 1406 - value DW 0200 registry key Software\Microsoft\PCHealth\ErrorReporting\DW\Installed I have also looked in Google and done a search to try and get a answer but all I found was this and similar things with no answer as yet , or I missed it http://www.msfn.org/board/index.php?act=ST&f=70&t=27170 http://www.ryanvm.net/forum/viewtopic.php?t=830 can you help please
-
Office 2003 Did not silent Install
read this topic below, Office 2003 can be installed at T-12 http://www.msfn.org/board/index.php?showtopic=41967
-
Hobbyist with attitude
pathetic well I had to look up that word and yes it is miserably inadequate if people just read it says click here and when you are on it, its underlined and ya mouse pointer turns to a hand, and I was waiting quietly for the next release of XPlode , well I will wait some more XPlode is worth the wait
-
how to get ip to point to domain
thank you for your help i create a Alias (WWW) so now i have another folder in here domain.co.uk _msdcs _sites _tcp _udp another folder domaindnszones forestdnszones i set my freind comp in Network Connections , properties , internet protocol ( TCP / IP ) , properties , use the following dns server address , and put my wan ip in there , now he can get my website by http://websitesname.org.uk but not by www.websitesname.org.uk have i done something wrong why cant he use www
-
how to get ip to point to domain
hi thank you for your reply I am new to this m8 so bear with me I have the DNS parked at my home server, how do i or were do i create A record that associates the IP address of the web server iis with the websites name(www.name.org.uk) i have in the dsn cached lookups forward lookup zones domain_name.com _msdcs _sites _tcp _udp domaindnszones forestdnszones revers lookup zones event viewer
-
how to get ip to point to domain
hi I have windows 2003 with iis installed , dns and active directory ok I have made a web site , and I can see it if i put the ip number in ,but i would like to see it by www.name.org.uk on the internet not local my freind can see it on the net with useing its ip so i was woundering how do i get the ip to point to name in windows 2003 dns can any one help please
-
Windows 2000
How to get IRC http://www.msfn.org/board/index.php?showto...ndpost&p=277833
-
Irc?
IRC You can get it here http://www.mirc.com/get.html Once downloaded and installed click on the shortcut to open on your desktop then click on tools go down to options click on options and in connect fill out name ect then click on servers click add in description type : out u whant e.g ( xplode ) in irc server type : irc.voidfx.com in ports type : 6667 then click add button now click the connect to server button once connected close the mirc fravorites goto bottom of page and type /join #xplode now you should be in the channel you will find out the rest there
-
unpack Driver's that r in InstallShield.exe
help please i have tryed in the run cmd then setup.exe -c then /xp then the 1 where some1 told us how to unpack the inf file i think it was -a i have 3 or 4 driver's that are all InstallShield.exe how do i get the inf or driver files out that i need as i dont what to install them at the end with apps useing the -r so i get the setup.iss
-
Device Driver Backup.
here is 1 , just install it and click try it gives you 30 days trial and u can do all u need in that time Q: What's the difference between "Search Third-Party Drivers" and "Search All Drivers" submenu of Backup button in the toolbar? A: Windows contained a lot of device drivers. The difference between "Search Third-Party Drivers" and "Search All Drivers" is that the former one searches all device drivers including those contained within Windows while the latter one only searches drivers not contained in Windows. Device drivers which are contained in Windows operating system are automatically installed when your install system, so it is not necessary to back them up. http://www.driver-soft.com/ http://www.msfn.org/board/index.php?showtopic=35306&hl=
-
a program 2 get your drivers 4 u
Driver Genius is a powerful tool for backup, restore and update your device drivers. Backup drivers: Can detect all the devices in computer and backup the drivers, and can make the drivers into the zip-compressed format, self-extractor format files or an EXE auto-setup program. Restore drivers: Can completely avoid the trouble for the rookies who don't know how to install the drivers, just only one click is needed when to install all drivers in your computer. Find/Update drivers: Can recognize more than ten thousands of plug-and-play devices, and identify almost all mainboard devices (including integration mainboard) with PCI and AGP bus wires. Based on the examination method independent of operate system, it can identify the unknown devices with yellow question mark in devices' management and directly give address to download the driver programs without location. http://www.driver-soft.com/