IPB

Welcome Guest ( Log In | Register )



Tags
This content has not been tagged yet
 
Reply to this topicStart new topic

How To Install Windows Xp On Your Cd/dvd/pen Drive

Easy and fun


vijethk
no avatar
Newbie
*
Group: Members
Posts: 6
Joined: 30-November 07
Member No.: 53,973



Post #1 post Nov 30 2007, 07:23 PM
How to Install Windows XP on your CD/DVD/Pen drive
QUOTE
This article will show you how to install Windows XP on your CD/DVD/USB Pen drive/ Flash Drive/ thumb Drive

Requirements:-
1) Windows XP CD or Windows XP Setup Information
2) Blank CD or DVD
or
2) USB Pen Drive Minimum of 1 GB (disk space necessary 256 MB or less)
3) BART PE builder software.

Procedure:-
1) Make sure that your system has about 500MB of free disk space!

2) Download the latest PE Builder version (self-installing package) and install it.

3) Start PE Builder (pebuilder.exe). When you start PE Builder for the first time it will ask if you agree with the license agreement.

4) Now PE Builder will ask to search for windows installation files. If you don't have your windows XP setup/installation files on your system you must insert the original Microsoft Windows XP installation/setup CD at this point.
The files you have at c:\windows are not installation files. They are your already installed files!
Click "yes" to start searching. PE Builder will now search all fixed- and CD-Rom drives for Windows installation files. This will take some time. When more than one valid location is found, a dialog will appear where you can select which location you want to use.

5)
For making Bootable CD/DVD
At the main PE Builder dialog, select the "Burn to CD/DVD" option. When you are using an erasable medium, make sure that the "AutoErase RW" option is enabled. The "burn using" option should be set to "StarBurn". Select your CD writer device from the Device list.

Hit the "build" button. PE Builder will now ask you to create a BartPE directory, answer with "yes".

The license for your Microsoft Windows XP product is shown. Read it and agree to it to continue.

PE Builder will now start building BartPE. This will take a few minutes.
You will see a lot of files getting copied and/or decompressed, the ISO image build and the data recorded to your CD/DVD writer.
If the data verify was correct and there where no errors reported you can boot the CD/DVD!

6)
For making bootable Pen Drive
Follow the above instructions and copy the files to the pen drive.

Enjoy your new preinstalled XP environment and use it for system Rescue Purposes...


[note=rvalkass]
Anything you copy must be put in QUOTE tags.
Source: http://www.webhosting.uk.com/forums/archiv...php/t-3051.html
[/note]
Go to the top of the page
+Quote Post
Sebby123
no avatar
Newbie [Level 1]
*
Group: Members
Posts: 12
Joined: 21-December 07
Member No.: 55,117



Post #2 post Dec 21 2007, 10:20 PM
What options are diabled.
Is this acualy xp
Could i go to a non xp system plug it in and run xp?
Go to the top of the page
+Quote Post
safe.as.haz
no avatar
Member [Level 1]
****
Group: Members
Posts: 62
Joined: 19-January 08
From: Nessie-land - Inverness
Member No.: 56,467
myCENT:ZERO



Post #3 post Jan 19 2008, 10:56 PM
QUOTE(safe.as.haz @ Jan 19 2008, 10:20 PM) [snapback]369267[/snapback]
Post #7
Neurotical Squirrel
*********

Group: [HOSTED]
Posts: 511
Joined: 4-November 04
From: Novi Sad, Vojvodina
Member No.: 2,127

First off, these 4 are not related to VBS, or VBScript, in any way... Code this user posted in the following 4 "pranks" is actually a command intrepreter code, that is written in old fashioned batch files, or .BAT files... These were used in DOS days, to speed up certain tasks that repeated often, a sort of equivalent of the maros...

QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM) *
*NOTE* these codes do not stay on forever, they just stay on until the person shuts off the computer.

This one is a lie, except in case of BAT-1 code, that I will elaborate on later in this post...

I believe this user has posted truely malicious code here, and that these dangerous ones should be removed, and the true prank ones left here...

BAT-1
QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM) *
CODE
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00

This one will actually mess Windows up! It will delete ALL the files from your system hard drive, or system partition!

Command DEL is used (naturally) to delete files, %systemdrive% tells this command to wipe out everything from the partition you have your windows installed to (for example, C:), \*.* tells it to wipe every file it finds, and the switches /F /S /Q tell the command to force the deletion of read-only files, to wipe out every sub-directory, and to be quiet about it, respectively... This part is not at all a prank, and I don't recommend anyone trying this one... Ever...

BAT-2
QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM) *
-Stupidity Shutdown
*This pops up a funny message then will shutdown the computer

CODE
@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c "Error! You are too stupid!" -s -t 10
Ok, this one really does send the message, but it sends this message to everyone on the network... MSG command is used to send short text messages between two or more computers on the network, mainly local network... MSG * will send the message to all the computers in the network... Not really funny, but hey... It's at least not malicious...

BAT-3
QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM) *
-Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK]
*This will delete key registry files, then loops a message* (CANNOT BE RECOVERED FROM)

CODE
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked. Have a nice day.
GOTO MESSAGE

This one is just as bad, as the first one... It wipes out entire HKEY_CLASSES_ROOT registry section, and effectively kills your Windows... And again, it's a command-prompt style batch file... But, none the less, it's very malicious, and should NOT be tried...

BAT-4
QUOTE(GaMeRrEmAg @ Dec 9 2007, 12:46 AM) *
-Endless Notepads
*This will pop up endless notepads until the computer freezes and crashes*
CODE
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
This one is not malicous, as it will only start notepads, until you run out of memory... Then windows will crash... Can be tried on someone I guess...

It appears to me, that this user has copied this code from some site, and has no real coding experience, and is, what would be called a wannabe-hacker... Probably some kid, with too much time on his hands... I would STRONGLY recommend that you avoid using BAT-1 and BAT-3 codes, as they WILL kill your computer, and you won't be able to revive your system without reinstallation... BAT-1 will destroy ANY file found on your system hard drive, and probably all files in your My Documents folder, as this folder is also stored on your system hard drive or partition...
Yeh I agree with this i know alot of batch code and kix that will destroy networks, don't underestimate these languages there not as historic as you think, especially when integrated into new technologies. But a unix command can be used to tear down anything in the world.

Go to the top of the page
+Quote Post
techclave
no avatar
Super Member
*********
Group: Members
Posts: 330
Joined: 28-August 06
Member No.: 29,048



Post #4 post Feb 2 2008, 06:41 AM
thank you very much for this contribution.
Go to the top of the page
+Quote Post
pauloreg
no avatar
Newbie [Level 1]
*
Group: Members
Posts: 16
Joined: 15-May 08
Member No.: 62,189



Post #5 post May 15 2008, 05:20 PM
I don`t believe in PEBUILDER i experimented that, but doesn work. I thing buy new hard drive Extern. sorry about my bad english, i speak portuguese only.
Go to the top of the page
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No new   22 tinoymalayil 2,025 14th December 2009 - 12:16 AM
Last post by: armynavy123
No New Posts   5 bluedragon 2,506 17th October 2009 - 02:34 PM
Last post by: iG-drew
No New Posts   4 akira550 506 22nd January 2010 - 02:14 AM
Last post by: mra550
No New Posts   7 jailbox 11,142 6th September 2004 - 11:53 AM
Last post by: synderoxide
No New Posts 8 livepcportal 476 24th November 2009 - 10:40 AM
Last post by: k_nitin_r
No new   43 The Simpleton 1,593 7th January 2010 - 09:14 PM
Last post by: Mencarta
No New Posts   2 dontmaimyourself 12,124 2nd August 2004 - 08:55 AM
Last post by: Spectre
No new   17 pr3dr49 24,910 18th March 2009 - 07:08 AM
Last post by: aloKNsh
No new 25 stingray001 6,876 11th May 2009 - 01:20 AM
Last post by: artsemail2000
No New Posts   10 zhangzy 19,751 24th September 2004 - 01:58 PM
Last post by: goranche
No New Posts   11 Raptrex 7,105 13th October 2004 - 07:26 PM
Last post by: odomike
No New Posts   5 stevey 10,568 20th August 2004 - 06:14 PM
Last post by: Spectre
No new   15 Thunder 23,505 15th December 2009 - 04:57 AM
Last post by: index.html
No new   20 dundun2007 28,293 26th January 2010 - 08:22 PM
Last post by: ahmed_mmahmoud
No New Posts   13 tonyused 3,153 7th February 2009 - 12:08 PM
Last post by: Ash-Bash


 



RSS Open Discussion Time is now: 9th February 2010 - 04:36 PM

Web Hosting Powered by ComputingHost.com. Xisto.com : Honesty ROCKS! Truth Rules.
Creative Commons License

1