Jump to content

<<< 12Oz Computer Tech Support SuperThread >>>


Mainter

Recommended Posts

This forum is supported by the 12ozProphet Shop, so go buy a shirt and help support!
This forum is brought to you by the 12ozProphet Shop.
This forum is brought to you by the 12oz Shop.
Guest R@ndomH3ro

Re: «<< 12Oz Computer Tech Support >>>

 

so' date=' no one has an answer to the wireless thing?[/quote']

 

Get a wireless router, connect it to a paid for internet cable. Presto, instant wireless internet

Link to comment
Share on other sites

Re: «<< 12Oz Computer Tech Support >>>

 

PC Support

Get all your Windows, Hardware, Networking, and software support questions answered here

 

PC Tips and Tricks, Modding

 

Linux/Unix Support

Get all your Linux/Unix questions answered here

 

Linux/Unix Tips and Tricks

 

Mac Support

Get all your mac questions answered here

 

Mac Tips and Tricks

 

Electronics

Get all your questions on MP3 players, Digital Cameras, Digital Video Cameras, TV's, etc. answered here

 

hey for the viewers what the hell do you want to see posted here add yer comments

 

What Do You Want To See Here

 

Computer Graphics

Computer Hardware

Computer Security

Computers

Cyberculture

Databases

Embedded Systems

Encryption

Firefox

Hacking

IT

Instant Messaging

Internet

Internet Tools

Java

Linux/Unix

MacOS

Mobile Computing

Multimedia

Network Security

Online Games

Open Source

Operating systems

P2P

PHP

Peripheral Devices

Perl

Programming

Shareware

Software

Supercomputing

Video Games

Web Development

Webhosting

Weblogs

Windows

 

im bored i guess its time to ramble

Link to comment
Share on other sites

Re: «<< 12Oz Computer Tech Support >>>

 

yep i got one its a reader too

 

helps alot

 

 

 

 

How-To: Image Windows XP with Ghost and Sysprep

 

 

I tend to install and reinstall operating systems quite frequently on my home system. With my hectic schedule, I don’t have time to sit down to reinstall and configure every last program. Although it is arguably easier to use a backup of my system for day-to-day mishaps, I tend to change out peripherals a lot and restoring a system that does not have certain drivers “cleaned out” tends to wreak havoc on a new configuration. To make this process go a bit faster, two years ago I created a “Ghost Image” of my hard drive after doing a basic install. Now, instead of it taking a few hours of toiling away to reinstall a system, I can do this all in about 15 minutes with only half a dozen quick mouse clicks. The trick is to use Norton Ghost and Microsoft Sysprep.

 

Here are most of the basic steps:

 

1. Install Windows XP on a clean hard drive.

2. Do not install any drivers or other utilities that are hardware specific beyond what Windows itself installs.

* This is necessary to make sure the image is as portable as possible across different types of systems. However, different storage controllers and different HALs (Hardware Abstraction Layers) make this harder to predict.

* Most modern computers these days work fine with a standard ACPI HAL, but if this image is to be truly portable across multiple machines then it must be determined which specific HAL will be needed. Refer to Microsoft KB309283 if you are completely lost.

* It is also important to determine if the target system uses a storage controller that normally requires a driver disc during a regular XP install. If this is the case, then the necessary paths to the drivers must be included in the Sysprep.inf file. These must be added to the [sysprepMassStorage] section in the form PCI\VEN_###&DEV_#### = PATH_TO_DRIVER_ON_IMAGED_DRIVE where VEN_#### should be replaced by the Vendor ID number (i.e. VEN_1234) and the DEV_#### should be replaced by the Device ID number (DEV_1234). This information can usually be found in the specifc driver INF files. Here is an example for adding the VMWare SCSI controller driver to sysprep.inf

 

[sysprepMassStorage]

….snipped out windows mass storage driver list….

 

PCI\VEN_104B&DEV_1040=C:\Drivers\Mass\VMWare\vmscsi.inf

 

3. Create a testuser account with administrative privileges. Use this account to install and configure all the software and policies on the system.

4. Remember to run Windows Update, Office Update and make sure all the rest of the software is up to date. You’ll probably end up rebooting a few times in between but keep going until everything is updated.

5. Copy all the start menu items from the testuser account to the All Users start menu. Then reverse this process by copying all the All Users start menu items to the testuser start menu.

6. Log out and log back in as the computer Administrator and then copy the testuser profile folder to the default user profile folder. This is done via Control Panel -> System -> Advanced -> User Profile “Settings” then select testuser and click Copy to. Copy all of this to c:\Documents and Settings\Default User. If you don’t understand then refer to Microsoft KB291586.

7. Delete the testuser account. Make sure that c:\Documents and Settings\testuser has been deleted too.

8. Download Sysprep for XP SP2.

9. Extract the files to c:\sysprep.

10. Create the basic sysprep.inf file by running setupmgr.exe. This a tool Microsoft provides for creating an answer file so the restore doesn’t involving asking the normal setup questions. The basic steps are below:

* Run setupmgr.exe

* Click Create New

* Click Sysprep Setup

* Then choose whichever product you are using. In our example it would be XP Professional.

* The next question asks: Do you want to fully automate the install? All this question determines is who is going to accept the EULA, you or the person restoring the image. Also, picking yes means that you must enter your Product Key. I pick no because this is for my own use and I don’t want someone to swipe my Product Key accidentally, but a large company or OEM may choose differently.

* The next few sets of options are for you to enter in any information like your Name, Organization, Time Zone, Product Key (I leave this blank), Network Settings, etc.

* I leave the Computer Name option set to Automatically generate computer name.

* Once completed, a dialog box will ask where you want to save the file. c:\sysprep\sysprep.inf is the path we’re using in this example.

* On the completion screen, click Cancel to close setupmgr.exe.

 

The process of creating a basic sysprep.inf file is now completed.

11. Before proceeding to the next step, create a custom hardware drivers directory for any drivers needed for the target system. Usually I use c:\drivers.

12. Open c:\sysprep\sysprep.inf in Notepad and add the following lines to the relavent sections (if the heading doesn’t exist, create it):

 

[unattended]

DriverSigningPolicy=Ignore

UpdateInstalledDrivers=Yes

OemPNPDriversPath=drivers\hardware_cat\driver_dir\driver_inf;(repeat);

 

[sysPrep]

BuildMassStorageSection=Yes

 

[sysprepMassStorage]

 

13. Do not close the sysprep.inf yet! OemPNPDriversPath points to the c:\drivers directory created earlier. For organizational purposes, I split up my custom driver files based on category (i.e. hardware_cat in the example above). For example, all video drivers go under c:\drivers\video and network drivers under c:\drivers\network. In each of those directories, the specific driver bundles are placed with their driver inf files (i.e. driver_dir). For example, the latest nVidia drivers would go into c:\drivers\video\nVidia\. The last part is refering to driver_inf is just that, the name of the inf file. For example, for the latest nVidia driver, the path would be c:\drivers\video\nVidia\nv4_disp.inf. In sysprep.inf, the path would be written as OemPNPDriversPath=drivers\video\nVidia\nv4_disp.inf;. Do not forget the semi-colon as a separator. For the next driver, repeat the procedure by placing the path after the semi-colon without leaving a space. Once all the drivers are added, save the file.

14. Run c:\sysprep\sysprep -bmsd. This will build the Windows XP standard mass storage drivers section.

15. While editing sysprep.inf there is an option labeled InstallFilesPath which usually points to c:\sysprep\i386. I usually copy the contents of my XP CD’s i386 directory into c:\sysprep\i386. This isn’t necessary.

16. Add any custom Storage dirvers to the [sysprepMassStorage] section as detailed above.

17. Now run C:\sysprep\sysprep.exe.

18. Pick options Mini Setup and Detect non-plug and play hardware. If you don’t have a volume license and plan on just using this image for restoring the computer the image was made on, then pick the option Don’t regenerate security identifiers. If you have a volume license key and will be using this image for multiple machines then leave that option unchecked. Ensure that Shutdown is selected from the Shutdown mode drop-down menu and click Reseal.

19. If you left the SID option to regenerate, then a pop-up will ask you to confirm. hit OK to continue.

20. This will take a while and your system will shut down once the process is complete.

 

Norton Ghost basic instructions:

 

I’m using an older version of Ghost because the newer versions are trumped by Acronis True Image in terms of having less bugs and more features. However, DOS based Ghost has worked fine for me for most systems. If Ghost fails on your system for some reason, try imaging with Acronis True Image trial version. The basic idea is boot off a floopy or CD on the source system, start the backup program, backup the entire drive as an image file onto some other device (portable hard drive or another drive in the system) and then restoring (as necessary) from that image file onto a target system.

 

The basic Ghost process is as follows:

 

Note: You must do this on another machine that has Ghost installed. If you boot the Sysprep machine accidentally then you must go through the entire Sysprep checklist again. Trust me, I learned the hard way more than once.

 

1. A Ghost bootdisk must be created for the target system. In Ghost 2003, start Ghost from the Start Menu -> Programs -> Norton Ghost.

2. Click Ghost Utilities then click Norton Ghost Boot Wizard.

3. A wizard comes up. Since I plan on saving my image to a portable USB or Firewire hard drive I pick Standard Ghost Boot Disk. You may have to choose another option if you plan on saving the image to a network Ghost image server.

4. On the next screen, under External Storage Options click the check boxes for USB 2.0 Support or Firewire Support depending on your target backup device. If you are using an internal secondary hard drive, then you don’t need to pick anything.

5. On the next screen, click Use PC-DOS.

6. The next screen asks for the path of ghost.exe. The default path is usually fine.

7. Finally we are presented with a screen asking for the floppy disk drive letter and formating options. Pick the proper drive letter and leave the format options alone. Click next.

8. This is the Review screen. Make sure all the options are correct and insert an empty floppy into your drive. A format dialog will pop up with a warning that everything on the floppy will be erased. Hit Okay. Close it once it is completed. Ghost will copy the files over.

9. If you are using an external hard drive then make sure it is connected to the source machine prior to booting the Ghost floppy on the system. If you are using an internal hard drive (not the same one as the Sysprep’d drive) in the source system then make sure there is enough free space on it. Again, you cannot save the image onto the drive/partition you are imaging for obvious reasons.

10. Put your shiny new floppy into the Sysprep prepared machine and boot off of it.

11. Create the image following the on-screen directions.

1. Click Local.

2. Click Disk. I’ve assumed that we are imaging a single large NTFS partition encompassing the entire drive throughout this tutorial hence the need for either an external drive or different internal hard drive. This can all be done on a single drive with two paritions but I’ll leave for the end user to explore.

3. Click To Image. The next screen states Select local source drive by clicking on the drive number. Make sure you select the drive that contains the Sysprep prepared XP deployment! Check and double check this. Click Ok.

4. The next screen reads File name to copy image to. From the drop-down box pick either the external hard drive or internal drive (different from source drive) and then type a short name in the file name box.

5. The next screen will ask compression options. I usually pick High.

6. Ghost will image the drive on its own and alert you when it is done.

12. If you are sure the image was created successfully, you can now move the image onto a burnable DVD, network share, leave it on the portable or secondary hard drive and restore it as necessary. If there was a problem during the imaging process, then do not boot the source system. Just reimage it after addressing whatever caused the image process to fail.

 

The steps above are a very quick summary so I recommend that anyone truly interested in doing this to head over to Vernalex’s site for an in-depth Sysprep Guide. Along with a lot more detail of the entire process, he has various tools to make everything a little easier. The best utility on his site has to be the Sysprep Driver Sanner tool. It makes the process of adding hardware drivers much easier than the manual process above. Instructions on using it are on his site.

 

Update (2.24.2006): I’ve gotten some great tips from both the comments at Digg and below. Let me address a few of those.

 

* Once Sysprep shuts down the computer, if you are able hook up the drive to another system as a secondary device then delete pagefile.sys and hibernat.sys to save a few hundred megs of space in the final image. Thanks master_of_fm.

* I forgot to go in-depth on the Ghost process. I’ve included basic steps for Ghost 2003 but once the intial Sysprep deployment is made, any disk imaging program can be used. The basic priciples are the same but let me know if you have problems. Thanks hakujin & definiteform.

* billyboobs34 asked if it is possible to make an image that is totally hardware independant. The quick answer (to be best of my knowledge) is no. The problem hinges on the HAL (Hardware Abstraction Layer) in Windows XP being different on, for example, a uniprocessor and multiprocessor system. The Microsoft Knowledge Base article is linked above. If the HAL is not the problem then it sounds like there may be more of an issue of finding appropriate chipset and mass storage controller drivers for different motherboards. In the custom drivers section, adding in paths to the necessary drivers for other motherboards may mitigate this problem.

 

In my opinion, the best solution is to have one basic machine for each HAL to make all of your images from. Follow all the steps above but do not reseal the system. Drop down to Ghost (or whatever backup utility you are using) and create an image of the system. In the future, creating compatible images for newer machines would be as simple is restoring the almost-complete Sysprep image and adding in new drivers for the chipset, mass storage controller and anything else you need. Then resealing the system and imaging it for a viable deployment image. Again, I am not an expert so hopefully the Sysprep gurus can step in to address this one if I went wrong somewhere.

* If you are presented a blue screen of death after restoring the Sysprep image to a target machine, then chances are that either the HAL is incompatible for the target machine, you forgot to build the mass storage driver section or you forgot to add a third-party mass storage driver. Refer to Microsoft KB309283 to confirm the source machine HAL is compatible with the target machine. Refer to Microsoft KB303786 if a Stop 0×7b blue screen is shown. This means that the mass storage driver section or third-party mass storage driver is missing.

 

Update (3.8.2006): If after rebooting, the install hangs at mup.sys or agp440.sys then it’s more than likely a HAL problem. Refer to the previous update to change your HAL. For most modern day single-processor machines make sure your HAL is changed from Uniprocessor ACPI to Advanced Configuration and Power Interface (ACPI) PC. You can find this setting in Control Panel -> System -> Hardware tab -> Device Manager -> click (+) next Computer -> right click the HAL shown and pick Update Driver -> Install from a list or specific location (Advanced) -> Don’t search. I will choose the driver to install. -> then pick the proper HAL -> hit next/okay until you finish. Now reboot and run through the Sysprep instructions again.

 

It took me a few tries to finally make an image that restored properly when I first started but, like riding a bike, it’s second nature now. Be ready to experience frustration but in the end it is worth having this knowledge. Again, read the comments below and at Digg to see how others have achieved this process. I don’t claim to be an expert (I’m just a med student by day) but I certainly hope this helps someone.

Link to comment
Share on other sites

Re: «<< 12Oz Computer Tech Support >>>

 

ok. so in order to burn the information of Shadow of the Collosus onto a dvd do you use the compressed file labelled .iso onto the dvd-r or do i extract all the files first and then burn them onto the dvd-r.

 

also, using alcohol, do i just click the "image burning wizard" button and select the files or is there more to it then that?

 

i know, i suck at new computer stuffs.

Link to comment
Share on other sites

Re: «<< 12Oz Computer Tech Support >>>

 

here is a way another turtorial in my documents

 

For playing my burned games, I use...

 

1. Swapmagic 3.6 comes with 2 boot discs. One is a DVD loader and the other is a CDR loader.

You don't always have to burn a game to a Blank dvd if it will fit on a blank CDR.

2. Depending on which CD type your burned the game to, determines which boot loader

disk you insert into the PS2.

3. Once the load states "load program", I simply remove it and insert my burned game.

 

NOTE: You can simply use DVD Decryptor to create an image of a retail game, then burn the image back to a blank DVD or CDR (depending upon the size of the image). Then you have a playable game.

If your game stutters during playback (sound skips, frequent freezing of images), then you need to use ISObuster on your image. The reason is because the "system file" is too close to the outter edge of the burned game disc.

1. Open ISObuster.

2. Move it to the side, and drag your image file that DVD Decryptor created, to the right box of ISObuster.

3. You now see the file names and folders for the game. Write these down in the order you see them.

4. Now, create a new folder on your desktop called "iso-rebuild-temp".

5. Drag, file by file, each part you see listed in ISObuster to the new folder.

NOTE: This process rids the original iso file from excess, dud space, which will inturn

reduce the image file size dramatically without loss of game play quality.

NOTE: if the drag and drop doesn't work for you, you can right click each part, select "extract"

and click on your new folder.

6. Once you have dragged (extracted) each part over, close ISO buster.

7. Now, you need to open the program cd/dvd-rom generator.

8. When opening it, tell it "new project", then "create dvd."

9. Drag, in order you wrote them down, the files from the extracted folder to the generator.

10. When done, click the Volume button.

10A. For the disc name, put in the numbers shown next to the system file for the game.

10B. For the Producer, put in Playstation.

10C. Click the Record button at the top right.

11. You will get two errors with this program, this is correct.

12. Next, File/Export IML and select a newly created folder (you might name it IML-files).

13. Once this is done, open up GDVD IML2ISO. This program will rebuild your iml files, by you

telling it to open the first IML file that was created.

14. The final result will be a much smaller image file of the game, thus, this will bring the

system file for the game closer to the inner ring of the disc.

15. Use DVD Decryptor or your favorite iso burner software to burn the iso to a blank disk.

16. Enjoy your game.

 

Here are the locations to the tools you need.

 

There are 3 tools I recommend that you use. All of them are needed to be able to follow through my how-to session.

Dvd Decrypter:http://www.afterdawn.com/software/v...d_decrypter.cfm

Isobuster: http://www.isobusterdownload.org/isobuster_all_lang.zip

Cdvdgen: http://www.btinternet.com/~ps2rippininfo/tools/cddvdgen.exe

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...