Word 2002 CRASHES (reproducibly) with Acrobat 9.0

The Acrobat 9.0 interface makes Word 2002 crash CONSISTENTLY whenever one tries to open certain documents.
It appears that this is caused by some monkeying with the formatting of the .doc files (!!!) and/or changes to the NORMAL.DOT files. Apparently, the PDFMaker interface hack attempts to introduce a style or macro called Style1 into the .doc file.
Uninstalling Acrobat and reinstating the original Normal.dot solved the problem, but when Acrobat was reinstalled, the problem reappeared.
Finally, it was found that simply UNINSTALLING THE PDFMaker FUNCTIONALITY from Acrobat cured this problem. (.pdf files can still be generated using the Acrobat print driver.)
If PDFMaker needs to change the formatting of the underlying .doc, it should first back up the original file and then change to a new file name. The integrity of the original Microsoft file must be sacrosanct.
Perhaps Adobe could look into this URGENTLY and release a fix. It is UNACCEPTABLE for sophisticated commercial production software to CRIPPLE any version Microsoft Word.
Ben.

Hi Steve,
fwiw - at the Forums' entry http://forums.adobe.com/index.jspa
there is this announcement.
Announcement: File Attachments Temporarily Disabled
Hide Details
We have temporarily disabled the ability to upload files to the forums in order to protect our customers/users from a potential security issue. Thank you for your patience while we mitigate this issue.
by adobe-admin at Feb 22, 2010 12:20 PM
So a file attachment may not be an option (?).
Be well...

Similar Messages

  • How to make images searchable (OCR) when printing from Word 2007 to PDF with Acrobat 10

    Good Day, I have checked several forums and the help file, but I can't seem to get a straight answer on this issue. 
    Our office creates many documents in Microsoft Word 2007 that contain both typed text AND images.  For example, I have a document with a summary section and then a .jpg of an event from Facebook.  We usually Print the document using Adobe PDF and the resulting PDF is searchable with the Find tool.  The problem is that the images contain text and we want that to be searchable as well.  I found posts saying to take the PDF and Print it again as an image and then run the Recognize Text tool.  I have tried this and it does indeed work, although the resulting PDF is grainy looking (even at 600 dpi).
    What I would like to know is if there is a way to get the images to be searchable during the conversion from Word to PDF. I could educate my co-workers on how to do this and save the trouble of having to touch each document more than once. Also, I do not like the graininess of the image nor the extra steps involved to convert each document.  It will require a lot more hands on maintenance than I have time for.
    Any assistance or clues you can provide on this topic would be appreciated.  Thank you in advance, Paula C.

    Thanks so much for your reply.
    Paula F. Cutrone
    Lead Crime Analyst
    Onondaga Crime Analysis Center
    511 S. State Street, Room 205
    Syracuse, NY 13202
    tel (315) 442-5645 x5062
    fax (315) 442-5646
    ***CONFIDENTIALITY NOTICE***
    Information contained in this e-mail is confidential and may be privileged and exempt from disclosure.  If the reader of this message is not the intended recipient, the reader is hereby notified that any dissemination, distribution, or copying is strictly prohibited. All information contained within should be considered law enforcement sensitive unless otherwise noted. If the reader has received this in error, please immediately destroy all copies and attachments and notify this office by replying to this e-mail or by calling (315) 442-5645.

  • When converting word doc to pdf with Acrobat words getting cut off?

    Hi all,
    As you can see from this example:
    When converting from word document the words on the pages in the final PDF are getting cut off on the edge of the page?
    I've adjusted the margins in page layout in MS Word to Normal, Moderate & Wide etc, etc
    Never ever had this problem before...does anybody have any idea why or what I could do?
    Thanks in advance.

    As a quick check, set the printer to the Adobe PDF printer in WORD and then check for the proper operation. Also be sure the paper dimensions and orientation of your document and the printer properties match up (I have had some problems with the orientation when I have auto-rotate on). You may have to play some to get something to work. I have done that before and settled on a process that works for me, but I can't claim it all makes perfect sense. To many things are going on in some sense.

  • Problem displaying Word 2002 RTF files in JEditorPane

    Hi all,
    I am having a problem displaying RTF files created in Word 2002/Office XP in a JEditorPane.
    Our code, which does the usual stuff:
    JEditorPane uiViewNarrativeEda = new JEditorPane();
    uiViewNarrativeEda.setContentType(new RTFEditorKit().getContentType());
    FileInputStream inDocument = new FileInputStream("c:/temp/testing.rtf"); uiViewNarrativeEda.read(inDocument, "");
    inDocument.close();
    works just FINE with RTF files created in Word 97, WordPad etc, but it seems that Word 2002 adds some tags to the RTF file that the RTFReader cannot handle.
    For example, I believe the following exception is due to the new \stylesheet section that Word 2002 adds to the RTF file:
    java.lang.NullPointerException:
         at javax.swing.text.rtf.RTFReader$StylesheetDestination$StyleDefiningDestination.close(RTFReader.java:924)
         at javax.swing.text.rtf.RTFReader.setRTFDestination(RTFReader.java:254)
         at javax.swing.text.rtf.RTFReader.handleKeyword(RTFReader.java:484)
         at javax.swing.text.rtf.RTFParser.write(RTFParser.java, Compiled Code)
         at javax.swing.text.rtf.AbstractFilter.readFromReader(AbstractFilter.java:111)
         at javax.swing.text.rtf.RTFEditorKit.read(RTFEditorKit.java:129)
         at javax.swing.text.JTextComponent.read(JTextComponent.java:1326)
         at javax.swing.JEditorPane.read(JEditorPane.java:387)
    Does anyone have similar problems or knows how I could get around this?
    I thought about writing a parser that replaces the \stylesheet section with one that works but that seems a lot of work and it does not always work (I tried that by copying and pasting...).
    Maybe I could replace the RTF converter that Word 2002 is using with another one - but how?

    Hello again,
    I found out that the 2002 version of MS Word writes a lot more of data into the file than e.g. Wordpad does.
    There is one section that causes the problem, its called "\stylesheet".
    My workaround (working in my case) is to wrap the input stream of the RTF document and remove this section (only in memory).
    See example implementation:
    <<<<<<<<<<<<<<<<<<<<<<< SOURCE CODE<<<<<<<<<<<<<
    * Copyright 2004 DaimlerChrysler TSS.
    * All Rights Reserved.
    * Last Change $Author: wiedenmann $
    * At $Date: 2004/03/31 11:08:54CEST $.
    package com.dcx.tss.swing;
    import java.io.*;
    * This class provides a workaround for parse errors in the
    * {@link javax.swing.text.rtf.RTFEditorKit}. These errors are caused
    * by new format specification for RichTextFormat (RTF V1.7).<br>
    * <br>
    * The workaround is to filter out a section of the RFT document
    * which causes an exception during parsing it. This section has no
    * impact on the display of the document, it just contains some
    * meta information used by MS Word 2002.<br>
    * The whole document will be loaded into memory and then the section
    * will be deleted in memory, there is no affect to the document
    * directly (on file system).<br>
    * <br>
    * <i>This workaround is provided without any warranty of completely solving
    * the problem.</i>
    * @version $Revision: 1.1 $
    * @author Wiedenmann
    public class RtfInputStream extends FilterReader {
    /** Search string for start of the section. */
    private static final String SEC_START = "{\\stylesheet";
    /** Search string for end of the section. */
    private static final String SEC_END = "}}";
    /** Locale store for the document data. */
    private final StringBuffer strBuf = new StringBuffer();
    * Wrapper for the input stream used by the RTF parser.<br>
    * Here the complete document will be loaded into a string buffer
    * and the section causes the problems will be deleted.<br>
    * <br>
    * @param in Stream reader for the document (e.g. {@link FileReader}).
    * @throws IOException in case of I/O errors during document loading.
    public RtfInputStream( final Reader in ) throws IOException {
    super( in );
    int numchars;
    final char[] tmpbuf = new char[2048];
    // read the whole document into StringBuffer
    do {
    numchars = in.read( tmpbuf, 0, tmpbuf.length );
    if ( numchars != -1 ) {
    strBuf.append( tmpbuf, 0, numchars );
    } while ( numchars != -1 );
    // finally delete the problem making section
    deleteStylesheet();
    * Deletion of the prblematic section.
    private void deleteStylesheet() {
    // find start of the section
    final int start = strBuf.indexOf( SEC_START );
    if ( start == -1 ) {
    // section not contained, so just return ...
    return;
    // find end of section
    final int end = strBuf.indexOf( SEC_END, start );
    // delete section
    strBuf.delete( start, end + 2 );
    * Read characters into a portion of an array.<br>
    * The data given back will be provided from local StringBuffer
    * which contains the whole document.
    * @param buf Destination buffer.
    * @param off Offset at which to start storing characters -
    * <srong>NOT RECOGNIZED HERE.</strong>.
    * @param len Maximum number of characters to read.
    * @return The number of characters read, or -1 if the end of the
    * stream has been reached
    * @exception IOException If an I/O error occurs
    public int read( final char[] buf, final int off, final int len ) throws IOException {
    if ( strBuf.length() == 0 ) {
    // if buffer is empty end of document is reached
    return -1;
    // fill destination array
    int byteCount = 0;
    for (; byteCount < len; byteCount++) {
    if ( byteCount == strBuf.length() ) {
    // end reached, stop filling
    break;
    // copy data to destination array
    buf[byteCount] = strBuf.charAt( byteCount );
    // delete to copied data from local store
    strBuf.delete( 0, byteCount + 1 );
    return byteCount;
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    Integration of the warpper looks like:
    RtfInputStream inDocument = new RtfInputStream( new FileReader("test.rtf"));
    Document doc = rtf.createDefaultDocument();
    rtf.read(inDocument, doc, 0 );
    Hope this helps - for me it did :-)
    Timo Wiedenmann
    DaimlerChrysler TSS, Germany

  • Continuing Leopard Issues with Acrobat Pro

    So after patiently waiting for Leopard update and installing it, I'm still having the same Distiller crash when trying to print to PDF. Is anyone else still having problems after this update? There's little weird about the machine - MBP Intel with 10.5.1 - and I'm up to round 4 with Adobe support on this.

    I was having the crash issue with Acrobat Professional 8 right after I upgraded to CS3 in 2007 and prior to loading Leopard recently. Calling Adobe did not help in fixing the problem (they just had me reinstall the software). The support staff didn't find/look for the Technote I finally found: http://kb.adobe.com/selfservice/viewContent.do?externalId=333592
    When I upgraded to Leopard yesterday, I started making sure I had the latest updates for my CS3 suite and had to turn the updater.acroplugin plugin back on to install the updates. I was hoping the updates would have fixed the problem, but it didn't. Soon as I "unchecked" the acroplugin, Acrobat worked fine again in Leopard.

  • Link problem when converting MS Word to PDF with Acrobat Professional

    Hello all,
    I have the following problem:
    When I have a MS Word document with links to other files inside and I convert it to PDF the links are converted from relative paths to absolute paths.
    The problem is created by Acrobat as the links in the MS Word file are relative (I have checked this by moving the different docs to another directory and confirmed that the links still work after the move).
    How can I make the paths in the PDF relative again? I know there is a plugin from Evermap (and I can confirm this works) but I do not want to use this plugin (=read: spend another $190 dollars) as the license for the Acrobat Professional is expensive enough . Is there a way I can convert the paths within Adobe Acrobat easily? Or better: can I adjust the settings in Acrobat to a new standard when all converted documents contain relative paths?
    Backgroundinfo:
    - Adobe Acrobat 8 Professional
    - Windows XP (SP2)
    - MS Word 2002
    Thanks in advance!
    Bart

    Dear Steve,
    I have tried what u suggested: I put all the documents (word + linked documents) into the same folder on the local-drive (C). Then I recreated the links  in the word document to be sure they were matching. After that I converted the word document to an PDF and confirmed the links were still working in the PDF document.
    Then the biggest challenge: copying the pdf and linked documents to another drive&directory. As you can guess: Unfortunately the links did not work anymore.
    Any other suggestions?
    If I use the Evermap-tool (30 day-trial) I can look at the links and this is how it is 'coded' in the pdf.
    first link: ../../../../test/link_a.pdf
    second link: ../../../../test/link_b.pdf
    and yes this will work if you put the documents in the directory test in the root of the local-drive but not in a different subdirectory.
    Anyone ideas?
    Grtz,
    Bart

  • Word 2000 hyperlinks don't work in .pdf created with Acrobat 9 Pro

    I'm new to Adobe Forums, so please overlook the effrontery of my posting a query previously discussed. Perhaps someone can simply reply with a link to the prior discussion. I have installed Acrobat 9.2 Pro in 2 computers, one running XP64 Pro, the other XP32 Pro. Word 2000 is installed in both. All Word hyperlinks work fine, but after .pdf conversion using Acrobat 9.2 Pro, none of these work. In 'Preferences', I have navigated Convert to PDF > Microsoft Office Office Word > Edit Settings > Add Links to Adobe PDF File and confirmed that the Add Links feature is enabled. Having ascertained that this glitch is not specific to either XP64 or XP32 operating systems, I uninstalled Acrobat 9.2 Pro from the XP32 computer and reinstalled Acrobat 6.1 Pro. Then using the same Word 2000 document, I converted to .pdf using Acrobat 6.1 Pro, with no problems whatsoever. This looks like a serious bug in Acrobat 9 Pro, which the telephone support folks have acknowledged. Alas, they won't give me the tiniest clue how to resolve it, nor any workaround, but merely refer me to AdobeForums.com for help. I suspect a corrective patch or 'upgrade' will be forthcoming, but meanwhile, if anyone knows of a workaround, please enlighten me. Thanks. /rmbrown

    Thank you, CtDave, for your speedy reply and for the 'Acrobat Technical Evangelist' knowledge base article. Word 2000 is one of Microsoft's masterpieces - by disabling 'autosave', the application is totally stable, does not require 'activation' by Microsoft. Acrobat 9 enables 'saving' of interactive .pdf forms, a most valuable feature and one much appreciated by anyone completiing such forms. There must be more to this issue than 'incompatibility', because I can create a test Word 2000 document, hyperlink a valid URL, convert to .pdf with Acrobat 9, and the hyperlink works fine in Acrobat 9. When I attempt to do this using a much more complex Word 2000 document, embedded with scores of hyperlinks, these links fail to work following conversion to .pdf with Acrobat 9, but work fine following conversion to .pdf with  Acrobat 6. I can then use Acrobat 9 to open the .pdf created with Acrobat 6, and successfully edit any of these fully functional hyperlinks using the 'Link tool'. I don't know who prepared the 'Acrobat Technical Evangelist' article (AF1908DCd01) - no credits were cited, and I'm far from certain that this authentically belongs to Adobe's knowledge base. So I appreciate your sharing this information with me, but I cannot say that my question has been definitively answered. If you have any further information or tips, please reply in this thread. /rmbrown

  • Some links look clickable but don't work - Word 2010 with Acrobat PDF creation

    Windows 7
    Latest Acrobat subscription
    Word - Office home and student 2010
    I can create PDFs via Acrobat and Word on Windows 7,  but after editing the PDF with Acrobat on Mavericks OS X, only in-document links remain clickable. External web hyperlinks, both exposed URLs and blue text with URLs hidden under link text do not work in the PDFs that are edited on MacOS. They look like they work, because in the PDFs the hand cursor appears and you can click the links, but nothing happens in the browser.
    I can't find any troubleshooting information about this.
    My process:
    Word: Options: Advanced - remove check in "use ctrl-click to follow hyperlinks"
    Convert file using the Acrobat tab in the Word ribbon.
    Set compatibility to Acrobat 8
    Create PDF (icon)
    Click Options
    Check "create bookmarks"
    Convert Word Headings to Bookmarks
    Accept defaults, which are:
    Convert document information
    Enable Accessiblity
    Reflow the tagged Adobe PDF.
    The PDF is converted. Links all seem to work as expected.
    Take the PDF to MacOS Mavericks, add pages, optimize, using Acrobat on MacOS.
    Afterward, only some kinds of links in the PDF work.
    This is a new problem that seemed to start when I recently began to use Acrobat's subscription version on Windows instead of FoxIt to convert the Word docs on Windows.
    Q: Is this a known limitation that MacOS Acrobat creates unusable links despite the initial PDF conversion being done on Windows Acrobat?
    Q: Should I do something additional so that external links remain clickable after processing on MacOs?
    Thanks for any clues.

    Thanks for your reply.
    After some experimentation, it seems that the place where *some* links stop working is when I take a PDF file from Windows and optimize it on MacOS with Mac Acrobat Pro. All the links work *except* the kind where the URL is hidden behind blue underlined text. These look like they work but when you click them nothing happens.
    So to fix it, I think I need to optimize the PDFs on Windows Acrobat Pro.
    The MacOs Acrobat Pro, which I paid many hundreds of dollars for is therefore completely useless for documents with this kind of normal hypertext link.
    Also, Windows Acrobat Pro is required in order to ensure that table-of-contents links made in Word (MacOS) continue to work in the PDF. The trick there is to regenerate the TOC on Windows Word before using CreatePDF to convert it.
    I hope someone else benefits from this insight, because I wasted weeks of my life trying to troubleshoot this undocumented problem.

  • Can't create hyperlinks after converting a Word document with Acrobat XI Pro

    Hello,
    Here's my problem.
    I'm making a catalog document for my company.
    The document that I'm converting to PDF is made on Office Word 2013 and it's a .docx format file.
    I'm on Windows 8 and the latest version of Adobe Acrobat XI Pro installed.
    Inside my word document I have some pictures that have a hyperlink. Those hyperlinks directionate to a bookmark inside the word document. Inside the word document, if I do Ctrl+Click over the image, it will go to the page that has that bookmark. And it works. Period.
    Beside that I also have some Cross-references on the word document. Those cross-references basically are the page number from the bookmark reference. By accident on most of those cross-refrences I left enabled the "Insert as hyperlink" on the cross-reference box options. When I Ctrl+Click over those cross-references I also go into the page of that cross-reference.
    After I convert the word document into pdf, I can't get any hyperlink on the pictures, if I simply click on them, like if I click on a hyperlink on a webpage or something similar, the pdf won't go the the bookmark on the page that I've set on the word document.
    The funny thing is that if I click on the other cross-references I can go to the page were that cross-reference is...
    I tried all the methods to convert the file in order to obtain hyperlinks on the images...
    I tried to use the Acrobat tab and the File -> Save as Adobe PDF, as both uses Acrobat PDFMaker, but nothing works.
    Even tried all options on Acrobat PDFMaker but can't get it. "Create bookmarks", "Add links", "Convert Word Bookmarks", "...Word Styles to Bookmarks", "...Word Headings to Bookmarks", none works....
    If I try to simply print from inside Word by choosing the Adobe PDF printer (like if I choose a regular printer), in the printers options it doesn't show up any hyperlink/link/bookmark option related, so that way is definitely a no go...
    To reference, on 2006/2007 I also worked on a similar project and used this method on the word document (on Word 2003). At that time I had another Adobe Acrobat version, can't remember what version was...
    This hyperlink situation was without any problem. After conversion, on the pdf file, if I click on a image it went to the right place inside that pdf file...
    So I'm simply lost wether it's a problem of me, a problem of Word, a problem from Acrobat... simply lost...
    I'm desperated....please, someone help me!!!

    Ok, sorry for never talk since the last time, but I finally discovered why I had this problem.
    I found out that M$ decided somehow to change the process of embedded hyperlinks on a image, but in a docx it doesn't get affected. Only after transforming it into a pdf by Acrobat that the problem emerges...
    I found this site http://www.pb-solv.net/2013/08/embed-pictures-in-microsoft-word.html
    Basically all I have to do is "Use Insert, Quick Parts, Field, IncludePicture. This inserts the picture in the old way as a field. You can use Alt-F9 to reveal the field codes and change the images to be embedded rather than linked."
    Then, after converting it with acrobat, the pdf finally have hyperlinks on the images!!!
    They change this on Word 2007. As I had the 2003, at the time, I didn't had this problem.
    As I said, M$ changed something, but only is affected after converting with acrobat. So, acrobat also missed something in the process. I call it a 50/50 guilt.
    To bad no one ever notice this problem...

  • EMF graphics demaged in PDF created in Word 2010 with Acrobat X Pro,

    We export EMF from a modelling tool and insert the EMF graphics in Word (see Word window). Creating a PDF with Acrobat X Professional leads to a damaged graphic (see Acrobat window). It was no problem in the Word 2003 & Acrobat 7 Pro "suite"...
    What can I do to get embedded EMF graphics as before?

    Hi pwhite2315,
    Could you please let me know what version of Acrobat are you using.
    Try using 'Create PDF' option under Acrobat ribbon in your word file and check for the same.
    Also, please open 'Preferences' for Acrobat PDFMaker and check what 'Conversion Settings' have you selected.
    Let me know.
    Regards,
    Anubha

  • I work with Acrobat 9.4.3. on Mac OS 10.5.8 with Enfocus Pitstop Pro 10, Update 1st, crashes...

    I work with Acrobat 9.4.3. on Mac OS 10.5.8 with Enfocus Pitstop Pro 10, Update 1st
    Acrobat crashes almost every time I open a document and try to make corrections by using Pitstop Pro. Some of my colleagues have the same problem. Is anyone else having this problem? Are these programs more stable on the PC?

    if I update the Airport to the latest version, and "control" it with my MacBook Pro, will the older G4 still be able to use the signal from the new Airport?
    Yes. Your G4 shouldn't have any difficulty connecting to a Wi-Fi network provided by the latest 802.11ac AirPorts as they support the earlier radio modes that the G4 uses.

  • Please a solution against crashes when opening a file with Acrobat XI pro?

    Hello,
    Am a member of Adobe Creative Cloud.
    Am also constantly having crashes when opening a file with Acrobat XI pro.
    Am running on Windows 7 Home Premium, Service Pack 1, 64 bit - RAM 20 GB -
    The crash happens systematically after the installation of the update. Within one day I uninstalled and reinstalled the program 4x! It takes of a lot of my time.... Thank you for providing a definitive solution!
    Best regards

    I've been having the same issue!  I try to open it and it crashes - says re-open, it crashes...  I re-installed it yesterday and it opened and worked fine.  Closed it out at the end of the day thinking everything was finally fine but this morning the same crashes it had yesterday...  HELP!!!

  • How to convert large Word 2007 doc (1200 KB) to PDF with Acrobat 9 Standard

    I'm trying to convert a large Word 2007 document to PDF with Acrobat 9 Standard.  It gets as far as 58% and then says it is unable to complete the conversion.  How can I fix this?

    The file you are working on is really not that large. There probably is a problem on a certain page of the document. Break the document in half. Try to create a pdf file from each half. Hopefully, one half prints properly and one-half does not. Take the half that does not break it in half.  Try to convert each half into a pdf, etc...
    Eventually, you will find which page has a problem. Most likely there is a graphic or a font used on that page that has problem. Most likely a graphic. That graphic will need to be recreated.

  • Landscape pages in Word revert to portrait in PDF when converted with Acrobat 9.

    My work group is using the PDF-T-Maker plugin to convert Word docs to PDF through Acrobat 9 Pro Extended. Lately, all the landscape pages have reverted to portrait in the conversion, but only for me. Everyone else in my group is  getting correct layout when they run the same process on the same docs. Today, I completely uninstalled and reinstalled Acrobat, then installed the updates (I'm on v.  9.3.1), but I've still got the same issue. I've checked the settings in Acrobat, Distiller, the PDF printer, and T-Maker, and I  think they're correct. Shots of the Distiller and T-Maker settings are below. Any ideas about what's going on?

    Looks like you have A4 pages. I would copy the PDF and then rotate the landscape pages (or portrait) individually (use the tools, not the view rotation) and then do the save to DOC or DOCX. That might do what you want. I would have expected it to notice the orientation, but I guess not. You did not mention the version of Acrobat. If you have not done the updates, you may want to do those first. Your issue may have been address with the updates.

  • When I left my former employer, Pollinate Agency, I bought a MacBook Pro with Acrobat Pro (version 9 or possibly 9.5) installed from the company. I recently had a serious computer crash, and needed to get all contents erased. The support provider didn't h

    When I left my former employer, Pollinate Agency, I bought a MacBook Pro with Acrobat Pro (version 9 or possibly 9.5) installed from the company. I recently had a serious computer crash, and needed to get all contents erased. The support provider didn't have my product key, so could not reinstall Acrobat Pro for me. Since then, I have gotten the product key sent to me from my former employer, [ REMOVED ] So I need help in re-downloading, installing and activating the Acrobat Pro software on this computer.

    Please remove the S/N immediately (I can't or would). Never post them online. As for download you can go to http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html on the right panel to get 9 pro. I am not sure there is a MAC version there, but that is the first place to go. If it is the proper version, then please back it up to CD and/or portable HD, not the system HD.

Maybe you are looking for