Reports created with CR prior version 9

Dear all,
i am just a "user" of an application in which the reports had being created with CR prior version 9. These reports need to be modified. But if i do with CR XI i will get the information "does not support reports prior version XI. and the reports in my application are not shown anymore and error  2147206429 message "Invalid TLV Record" is shown. Kindly i would appriciate your support very much
Peter

Hi Brian,
could be the reason, sounds good. I can remember we had this problem (or similar) about 2 years ago, by changing or adding a small file it was solved. However i guess its worth to follow up, here are my questions
1. where do i get the print engine (or driver) for CR XI ?
2. is it possible to have two print engines installed at the same time and location? as most of the reports do not need to be changed and can still work with the old one.
3 how is a print engine named (file type or name) so i could locate the old one and will know where i do have to place the new one. Can anyone forward me the print engine as a attached file on email? Sorry guys as mentioned i am just a user who try to solve a problem and over here (Thailand, Pattaya) i havent found a specialist which is for sure be able to solve it in less then an hour. But i highly appriciate that all of you trying to help and support me. Many thanks to all at this point.

Similar Messages

  • An error occurred during local report processing.The definition of the report '' is invalid.The definition of this report is not valid or supported by this version of Reporting Services. he report definition may have been created with a later version of R

    Hi,
    I am trying to create rdlc file programmatically. Using Memory Table as dataset. Here is my code
    ' For each field in the resultset, add the name to an array listDim m_fields AsArrayList
      m_fields = NewArrayList()
      Dim i AsIntegerFor i = 0 To tbdataset.Tables(0).Columns.Count - 1
          m_fields.Add(tbdataset.Tables(0).Columns(i).ColumnName.ToString)
      Next i
      'Create Report 'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' Open a new RDL file stream for writingDim stream AsFileStream
      stream = File.OpenWrite("D:\MyTestReport2.rdlc")
      Dim writer AsNewXmlTextWriter(stream, Encoding.UTF8)
      ' Causes child elements to be indented
      writer.Formatting = Formatting.Indented
      ' Report element
      writer.WriteProcessingInstruction("xml", "version=""1.0"" encoding=""utf-8""")
      writer.WriteStartElement("Report")
      writer.WriteAttributeString("xmlns", Nothing, "http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition")
      writer.WriteAttributeString("xmlns:rd", "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner")
      writer.WriteStartElement("ReportSections")
      writer.WriteStartElement("ReportSection")
      writer.WriteElementString("Width", "11in")
      writer.WriteStartElement("Body")
      writer.WriteElementString("Height", "5in")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Tablix")
      writer.WriteAttributeString("Name", Nothing, "Tablix1")
      writer.WriteElementString("Top", ".5in")
      writer.WriteElementString("Left", ".5in")
      writer.WriteElementString("Height", ".5in")
      writer.WriteElementString("Width", (m_fields.Count * 1.5).ToString() + "in")
      writer.WriteStartElement("TablixBody")
      ' Tablix Columns
      writer.WriteStartElement("TablixColumns")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixColumn")
          writer.WriteElementString("Width", "1.5in")
          writer.WriteEndElement() ' TableColumnNext fieldName
      writer.WriteEndElement() ' TablixColumns' Header Row
      writer.WriteStartElement("TablixRows")
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, "Header" + fieldName)
          ' writer.WriteAttributeString("CanGrow",  True)' writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          writer.WriteElementString("Value", fieldName)
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow'writer.WriteEndElement() ' TablixRows          Do not close Rows tag here colse it after details'End of Headers'Details Rows'writer.WriteStartElement("TablixRows")         Since Rows tag in header is not closed not need to open fresh tag
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          '  writer.WriteAttributeString("CanGrow", True)'  writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          'writer.WriteElementString("Value", fieldName)
          writer.WriteElementString("Value", "=Fields!" + fieldName + ".Value")
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow
      writer.WriteEndElement() ' TablixRows'End of Details Rows
      writer.WriteEndElement() ' TablixBody
      writer.WriteStartElement("TablixRowHierarchy")
      writer.WriteStartElement("TablixMembers")
      writer.WriteStartElement("TablixMember")
      ' Group
      writer.WriteElementString("KeepWithGroup", "After")
      writer.WriteEndElement() ' TablixMember' Detail Group
      writer.WriteStartElement("TablixMember")
      writer.WriteStartElement("Group")
      writer.WriteAttributeString("Name", Nothing, "Details")
      writer.WriteEndElement() ' Group
      writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixRowHierarchy
      writer.WriteStartElement("TablixColumnHierarchy")
      writer.WriteStartElement("TablixMembers")
      'writer.WriteStartElement("TablixMember")ForEach fieldName In m_fields
          writer.WriteStartElement("TablixMember")
          writer.WriteEndElement() ' TablixMemberNext' writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixColumnHierarchy
      writer.WriteElementString("DataSetName", "tbdataset")
      writer.WriteEndElement() ' Tablix
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' Body
      writer.WriteStartElement("Page")
      ' Page Header Element
      writer.WriteStartElement("PageHeader")
      writer.WriteElementString("Height", "1.40cm")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Textbox")
      writer.WriteAttributeString("Name", Nothing, "Textbox1")
      writer.WriteStartElement("Paragraphs")
      writer.WriteStartElement("Paragraph")
      writer.WriteStartElement("TextRuns")
      writer.WriteStartElement("TextRun")
      writer.WriteElementString("Value", Nothing, "ABC CHS.")
      writer.WriteEndElement() ' TextRun
      writer.WriteEndElement() ' TextRuns
      writer.WriteEndElement() ' Paragraph
      writer.WriteEndElement() ' Paragraphs
      writer.WriteEndElement() ' TextBox
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' PageHeader
      writer.WriteEndElement() ' Page
      writer.WriteEndElement() ' ReportSection
      writer.WriteEndElement() ' ReportSections' DataSources
      writer.WriteStartElement("DataSources")
      writer.WriteStartElement("DataSource")
      writer.WriteAttributeString("Name", Nothing, "tbdata")
      writer.WriteStartElement("DataSourceReference")
      writer.WriteEndElement() ' DataSourceReference
      writer.WriteEndElement() ' DataSource
      writer.WriteEndElement() ' DataSources'DataSet
      writer.WriteStartElement("DataSets")
      writer.WriteStartElement("DataSet")
      writer.WriteAttributeString("Name", Nothing, "tbdataset")
      writer.WriteStartElement("Query")
      writer.WriteElementString("DataSourceName", Nothing, "tbdata")
      'writer.WriteElementString("CommandText", Nothing, "/* Local Query */")
      writer.WriteElementString("CommandText", Nothing, "TableDirect")
      writer.WriteEndElement() ' Query'Fields
      writer.WriteStartElement("Fields")
      ForEach fieldName In m_fields
          writer.WriteStartElement("Field")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          writer.WriteElementString("DataField", fieldName)
          writer.WriteElementString("rd:TypeName", fieldName.GetType.ToString)
          writer.WriteEndElement() ' FieldNext
      writer.WriteEndElement() ' Fields' rd datasetinfo
      writer.WriteEndElement() ' DataSet
      writer.WriteEndElement() ' DataSets
      writer.WriteEndElement() ' Report' Flush the writer and close the stream
      writer.Flush()
      stream.Close()
      'Convert to StreamDim myByteArray AsByte() = System.Text.Encoding.UTF8.GetBytes("D:\MyTestReport2.rdlc")
      Dim ms AsNewMemoryStream(myByteArray)
      'Supply Stream to ReportViewer
      ReportViewer1.LocalReport.LoadReportDefinition(ms)
      ReportViewer1.LocalReport.Refresh()When I open rdlc in designer I get following error"Data at the root level is invalid."When I run the aspx I get following error
    An error occurred during local report processing.
    The definition of the report '' is invalid.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services, or contain content that is not well-formed or not valid based on Reporting Services schemas.
    Details: Data at the root level is invalid. Line 1, position 1.
    Can anybody guide me?

    Hi Wendy Fu,
    Thanks for your feed back. I could see Microsoft.ReportViewer.ProcessingObjectModel.dll to add as reference to my project. Actually I can open generated rdlc in designer, at run time I get error. I could not make out where is the exact mistake out of three
    options flashed.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services
    or contain content that is not well-formed or not valid based on Reporting Services schemas
    Details: Data at the root level is invalid
    My web config has following references
    <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    May be I have to change these versions to 9 or 10.
    First I will try adding Microsoft.ReportViewer.ProcessingObjectModel.dll .
    Once thanks for your reply.
    Races

  • Transferred iTunes library from pc to new mac, iTunes ; however, when opening iTunes on mac it reports the library was created with a newer version of iTunes and won't open.

    Transferred Itunes library from pc to new mac; however, when opening itunes on the new mac it reported that the library was created with a newer version of itunes and could not be opened. It asked if I wanted to download updates and I did. However, the new mac is up to date. Itunes won't open. What to do now? Any help would be appreciated.
    Thanks
    Jim

    Hello, Stephen.
    Thank you for the question.  You will need to rebuild your iTunes library file in order to open an older version of iTunes.  Below, I have included the article that walks you through this process.  Start with the section labeled Re-creating the iTunes Library file.
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    Cheers,
    Jason H. 

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • Can report created with BIP be called from forms?

    Hello.
    We have many forms.
    And now we ned complex reports. With BIP we can create them.
    But is there a way to call them from forms, like reports created with Report builder?
    Can we transfer parameters from forms to BIP reports, so data can be queried on that form parameters?
    Thanks.

    Hi,
    yes, there are several ways you can do this.
    DejanH, we discussed at the BI Publisher Forum, here just for the others.
    The document you're looking for is here: http://www.oracle.com/technology/products/xml-publisher/docs/Forms_BIP_v21.pdf
    or here
    http://www.oracle.com/global/de/community/forms/documents/Forms_BIP_v21.pdf
    Jan,
    it's a new version of the mentioned paper at the OTN-Forms-Side and the old one was removed.
    The document describes the way, how to integrate BI Publisher via Web Services into Forms. There are other ways available like
    - using HTTP calls via show_document
    - using the JavaAPI of BI Publisher and import the needed classes to Forms
    Regards
    Rainer

  • "The file "iTunes Library.itl" cannot be read because it was created with a newer version of iTunes".

    My computer is reading "The file 'iTunes Library.itl' cannot be read because it was created with a newer version of iTunes." I need help ASAP! Did I lose all my music? 

    Unless you deliberately downgraded iTunes this may be a sign of a corrupt library. SeeEmpty/corrupt library after upgrade/crash.
    tt2

  • Issues with iphoto after hard drive failure - message "library was created with an unreleased version of iphoto"

    I have a late model 2008 13" MacBook that was running OS X 10.5.8 when the hard drive failed 2 weeks ago when I was traveling in Canada. I found a Mac repair centre and they replaced my 250GB with a 500GB hard drive and transferred my data.  (Yeah!!!) I'm now on OS X 10.6.8 (which is great as I guess I should be able to sync my iphone on IOS 7 with my laptop again.... but I digress...)
    I haven't been able to access my photos as I get the message "The photo library was created with an unreleased version of iphoto. Please quit and upgrade this photo library by opening it in iphoto 2 or iphoto 4" when I try to open it.  I can see my photos when I look on Photo Browser in Mail so that's good - they are here...  I looked through past messages with this problem and saw that the advise was to download iphoto Library Manager.  I want to be certain I don't mess anything up so the questions are:
    1. What version of iphoto Library Manager should I download - I had OS X 10.5.8 and my iphoto library was ... (sorry - can't find out what it was, guess it's now 7.1.5)
    2. What do I do after I've downloaded IPLM?
    Many thanks ahead of time for any assistance

    I backed up my iPhoto Library to an external drive even though it looked way to small to hold all my photos.  I have tried several times to open iPhoto whilst depressing the option and command keys but get the same message again:
    "The photo library was created with an unreleased version of iphoto. Please quit and upgrade this photo library by opening it in iphoto 2 or iphoto 4"  Behind this, the little wheel is turning and it says "Loading Photos" (but it doesn't).
    I've got to access these photos for a project deadline that's looming so any help would be really appreciated.

  • I can't open iTunes message says" can't read itunes library.itl because it was created with a newer version"

    I can't open iTunes message says" can't read itunes library.itl because it was created with a newer version"  thank you for any help!

    My ipod did that all day yesterday then went into lockdown ! now the dam thing wont do anything !!!! its stuck in download mode!!!!!!!!!

  • Upgrading Library - "library was created with an unreleased version"

    ERROR MESSAGE;
    The photo library was created with an unreleased version of iPhoto.
    Please quit and upgrade this photo library by opening it in iPhoto 2 or iPhoto 4.
    QUESTION;
    How in the world do you find a copy of iPhoto 4 to run on my new machine in order to upgrade my library?

    that is a sign of a corrupted library - back up and launch iPhoto while depressing the option (alt) and command (apple) keys and rebuild the library using the first three options
    LN

  • "the photo library was created with an unreleased version of iPhoto"

    Help!
    I think this all started with an onscreen message telling me I had a trojan. I downloaded a free copy of mac scan. This later asked me to subscribe. I could not get rid of the message except by switching off the computer, (I was tired and desperate), so I did.
    I later tried to transfer photos from my camera to the the computer - it would not allow me - said it did not recognise the files.
    Later tried to open iPhoto and it said "The photo library was created with an unreleased version of iPhoto. Please quit and upgrade this library by opening it in iPhoto 2 or iPhoto 4."
    What have I done? How can I undo/rectify this???
    Jane

    If Larry's fixes don't wortk then Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • "Photo Library was created with an unreleased version of iPhoto."

    Here is what happened:
    I had OS 10.3.9 with iLife '04
    Installed iLife '05
    It all worked great for several months.
    Installed Tiger and I get "Photo Library was created with an unreleased version of iPhoto." The error also says "Please quit and upgrade this library by opening it in iPhot 2 or iPhoto 4."
    Is this normal? Does anyone have any bright ideas before I rip everything out and reinstall iLife? Thank you for your help!

    Hi issam,
    So far I have not seen any solution for that error message in these discussions. If you have a recent backup of your iPhoto Library folder then take the old library out of the Pictures folder and put your backup library in there (I suggest you backup the backup before you do this) Launch iPhoto and hopefully everything will be back to normal. If you don't have a backup then...
    The only thing I can tell you to do right now is to create a new library and import/add to the library to reimport your images.
    these are the steps:
    Close iPhoto
    Drag the iPhoto Library folder to the desktop
    Launch iPhoto
    In the next window that opens choose to create a new library.
    When the new empty library opens go to File/add to library
    In the next window navigate to the library on your desktop and choose it.
    Your images will be imported in nice dated rolls. (make sure your view is set to sort by rolls to see it) There are a couple of caveats to this. You will get rolls named "Originals" These rolls will contain your video clips and your original images that you had edited. If you had RAW files they would be in those rolls too (I don't do RAW, so I don't know for sure) Delete what you don't want from those rolls. You will also get the jpeg pointer files to your video clips imported. They will just be jpegs and will not point to the video clips anymore as iPhoto made new ones when the clips were imported again. You can delete those. they should be in a roll right next to the newly imported video clips so they are not hard to find. The thumbnail files don't get imported as iPhoto makes new ones when the images are imported.
    You will have to redo your albums, keywords, etc.
    Good luck!

  • How to find report created with Report Painter?

    Hi!
    how to find report created with Report Painter?
    Here is the information that I have:
    Object filename, let's say <b>Y_P01_90000001</b>
    Report painter object <b>INV-102</b>
    The thing is that Library is unknown, thats why I can not find it via GR22...
    Any ideas?
    Will reward,
    Mindaugas

    Check in GRR3 under <b>INV</b> node...

  • Running reports created with Reports 9i in client-server configuration

    I need to have users run reports created with Oracle Reports 9i on workstations without any Oracle products installed on it, (in a client-server configuration as opposed to Web based) . I am looking for a step-by-step approach to accomplish this. I looked through the installation documents in OTN and I did not see one that addressed this.
    BTW, I saw an earlier post in this form which disscussed this,indirectly, for Reports 6i but I don't think these steps will work for 9i rpeorts
    ** Earlier post
    Question:
    I have an application in Oracle 8i, Forms 6i, Reports 6i. Now I want to make executable CD which will be installable in nature. I don't know how to make it or what tools to be used for this . Kindly help me out.
    Answer:
    You can write a .bat file for installation.....
    This file should do following things.
    1. Oracle8 Personal Setup
    Install only Database (no tools)
    2. Oracle Developer200 Setup
    Install only Forms Runtime
    Reports Runtime
    Graphics Runtime
    3. Use imp/exp to put the desired database...
    4. Copy exexutables in some directory and place shortcuts in programs and destkop
    5. Make new file-types in start->setting ->folder options-> file-types
    and specify that in which runtime-application you want to open your executables....
    Thanks in advance,
    Audrey Watson

    hi audrey,
    there is no client/server runtime available for reports9i. what
    you can do is to use the rwclient executable shipped with IDS
    to submit jobs to the reports server.
    there are plans to provide a stand alone thin client in the
    future but this is not available yet.
    regards,
    christian

  • Cannot open imovie libraries created "with a newer version" (false!)

    First of all, excuse me for my bad english!
    I've an iMac 21.5'', fall '09 series. I'm not an expert user (I use Windows at work) and I use the Mac just for fun, when I have time.
    A couple of months ago, I've updated to Maveriks. Then I try to update my iLife '11, too, but the Apple Store didn't show me the "update" option. Following some italian blogs tips, I change the language preferences and that let me able to update iLife. iMovie updated my video libraries and everythings works fine. 
    Yesterday, after a long period, I switched my iMac on, and check for software updates. Then I updated iPhoto and iMovie. Again, iMovie updated my libraries, and everythings works fine.
    Then I choose "update all", the system prompted me asking my AppleID and pwd, the default language switched to italian, and all updates takes places.
    On restart, "software updates" re-show me again iPhoto and iMovie, and other updates. I choose "update all", and the system reinstall iMovie among the others.
    When I open iMovie, it prompted me with a "choose a library" messages, but whatever library I choose, it alert me with a messages that claim something like "cannot open this library, because it was created with a newer version of iMovie".
    The problem is that "the newer version" is the "same" version (10.0.2) - exept for the different languages preference settings, and I dont' wanna wait until the next iMovie version to update my libraries
    Can anyone help me to resolve this issue?

    ...It was so bad my English?

  • Persistent "document was created with an earlier version of Pages" error

    Since I upgraded to Pages '08 (3.0.2), Pages always thinks that I have created my documents with an older version — even new documents created with Pages '08. As a result, I am frequently shown this message when trying to save a document:
    "This document was created with an earlier version of Pages. To maintain the ability to open the document with earlier versions, click Save As and choose an application version."
    The options are: Save As..., Cancel, Save.
    Any ideas on why this is happening, even when working with Pages '08 documents?
    This just occurred to me: Maybe my templates were not upgraded along with the app, so every time I create a "new" document with an old template (even the template "Blank"), my documents would be in the old document format. Thoughts?

    It's a well known tip.
    On my machines, an Applescript is launched every morning which install a clean set of preferences files for the most often used programs.
    Doing that, I am quite free of the kind of oddity which striked on your machine.
    --(SCRIPT keepcleanprefs.app]
    To keep clean preferences files.
    In your userAccount's Preferences folder,
    create a subfolder named "safe_Prefs"
    Store in this folder clean duplicates of the preferences files subject to corruption.
    Save this script as an Application Bundle where you want.
    Why not in your Applications folder?
    Open the System Preferences Pane "Account"
    Click on the "Login" tab.
    Drag and drop the script's icon onto the window to add it to the list of login items.
    On every boot process, the script will be run so it will install the clean prefs.
    Of course, if you change something to the prefs and know that the file is clean,
    duplicate the new version to the safe_prefs folder.
    Yvan KOENIG (26 mai 2008)
    set p2prefs to path to preferences from user domain
    set p2Safe to (p2prefs as Unicode text) & "safe_Prefs:"
    if p2Safe does not end with ":" then set p2Safe to p2Safe & ":"
    tell application "Finder"
    if exists folder p2Safe then
    set liste to items of folder p2Safe
    repeat with p in liste
    if class of p is folder then
    set liste2 to items of p
    if liste2 is not {} then
    set p2prefs2 to ((p2prefs as text) & name of p & ":") as alias
    repeat with p2 in liste2
    duplicate (p2 as alias) to p2prefs2 with replacing
    end repeat
    end if
    else
    duplicate (p as alias) to p2prefs with replacing
    end if
    end repeat
    end if -- exists folder…
    end tell
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE dimanche 13 juillet 2008 17:41:09)

Maybe you are looking for

  • Synchronising iTunes over 2 or more Macs

    Is there a foolproof way of synchronising iTunes with particular emphasis on iPhone sync? I normally sync my phone with my desktop but would like to be able to switch the sync to my laptop when travelling. This came to mind because I am abroad on Jun

  • Join two ODS into one cube!

    Hello Experts - I need to join fields of 2 ODS into one cube. I know the common field. We are in BI 7.0. Can someone guide me through the steps? I know there are two transformation rules. And I have created them. How do I link them so that I have one

  • Animation in custom components

    I'm trying to add animation to a component that I have several instances of, and it reaches across applications, so I'd rather not re-write the effects each time. But, the component in question is a s:Group, and when I toss in animations, it tells me

  • Reinstalling photoshop CS3 after losing previous installation

    Hi all, After losing all data in my E: disk (made a new partition and didn't think) I lost all programm files of adobe PS CS3. Now I found the original installation disk and tried to reinstall, doesn't work! uninstalling neither. Deactivating neither

  • Is my computer dying?? Say it ain't so...

    For the past month or so, I've been having some issues with my iMac.  To make it easier, I've listed them below. When starting up, the computer will either:      --stop at black screen (fans are on)      --stop at gray "Apple" screen with spinning ga