The Problem: I work with some people that are using PC’s and windows XP. One of the users is about 100 miles away from me and was having some issues with some PDF files, so I needed to get him a copy of our Adobe Acrobat Pro and fix his issue. I am a MAC user and I wanted to create an .ISO image and get that to him so I could install and repair remotely.
The Solution: Use the MAC Disk Utility and create a .CDR file then use Terminal and convert the file to a .ISO file, here are the instructions:
- Insert the disk you want to copy into your CD Drive.
- Launch the Disk Utility: Applications > Utilities > Disk Utility
- Choose “New Disk Image from Folder” located under File > New or (shift,command,N). Make sure that it is uncompressed and use the CD/DVD master option.
- Select your disk that you want to copy in the resulting dialog box.
- This will create a .CDR file so save it where you can find it, the desktop is fine.
- Open Terminal
- Assuming your new image is called ~/Desktop/myfile.cdr (the file is on your desktop and called myfiler.cdr) type the following commands in your Terminal Window:
- cd ~/Desktop
- hdiutil makehybrid -iso -joliet -o myfile.iso myfile.cdr
- This will create an ISO/Joliet .iso file.
That’s it. It worked really well. You will also need an way to mount the image on the PC and I found a great free utility to do that @ http://tinyurl.com/58lqkd to use it on a windows box just right click the file and choose mount via file disk and choose a drive letter then open My Computer and viola there is the drive mounted just like a disk, double click and install away!
