Invalid character import format

I accidentally created an import with a format & who's bad character for FDM. It allow me to create the import format, but now I get an error page whenever I try to access the Import Format screen. This prevent me to remove the problematic import format. I tried to export import formats, remove the bad in the file xml and re - import but it did not work.

No idea how to do to remove this import format?

The only way to solve this problem is directly in the database.

There is no workaround available via the web or at the bench.

Tags: Business Intelligence

Similar Questions

  • Book level - import formats and master pages

    Hi all

    I am very new to writing scripts for framemaker (and a perfect beginning to script) and I find a little difficult to find information in an environment that I do not know in. Maybe you can help me.

    What I would do:

    I would like to be able to change master pages, page layouts, paragraph formats and character formats in the first document of a book and then run the script, which will be

    1. import pages masters and the first document formats into other documents (just like if go you via file > import > Format),.
    2. the book was updated.

    In the folder in the installation folder example scripts, I found an example script which runs through all the documents in a book:

    Book = app. ActiveBook;

    comp = book. FirstComponentInBook;

    while(COMP. ObjectValid())

    {

    Open (comp. name);

    nextComp is comp. NextBookComponentInDFSOrder;

    prevComp is comp. PrevBookComponentInDFSOrder;

    compType is comp. BookComponentFileType;

    Log ("BookComponent.log", "CompName"- + comp. name);

    Log ("BookComponent.log", "comp" file Type - + compType);

    Log ("BookComponent.log", "Component Type (FDLR, Grp, line)-" + comp.ComponentType);

    Log ("BookComponent.log" + "PreviousCompName" prevComp.Name-);

    Log ("BookComponent.log" + "nextCompName" nextComp.Name-);

    Log ("BookComponent.log", "-");

    component Process here.

    model = nextComp;

    }

    open function (filename)

    {

    openProp = GetOpenDefaultParams()

    i = GetPropIndex (openProp, constant. FS_FileIsOldVersion)

    .propVal.ival = constant .FV_DoOK openProp [i]

    i = GetPropIndex (openProp, constant. FS_FontNotFoundInCatalog)

    .propVal.ival = constant .FV_DoOK openProp [i]

    i = GetPropIndex (openProp, constant. FS_FontNotFoundInDoc)

    .propVal.ival = constant .FV_DoOK openProp [i]

    i = GetPropIndex (openProp, constant. FS_FileIsInUse)

    .propVal.ival = constant .FV_DoCancel openProp [i]

    i = GetPropIndex (openProp, constant. FS_AlertUserAboutFailure)

    .propVal.ival = constant .FV_DoCancel openProp [i]

    retParm = new PropVals()

    docOpen = Open (filename, openProp, retParm);

    Return docOpen;

    }

    function Log (logFile, textLine)

    {

    file = new File ("C:\\ESLog\\"+logFile);

    leader. Open ("a +", "TEXT","?");

    leader. Write (TextLine + "\r");

    leader. Close();

    }

    Makes me started a little. I saw the line here //process component / /, and I am a little familiar with programming and scripting. I sort of see how it works in principle. But then I'm at a loss.

    I know there is a lot of documentation on scripting FrameMaker (I have the script guide). But I can't find the corresponding information without spending hours of learning.

    Could someone help me?

    Huge gratitude in advance!

    Matthias

    Hi Matthias,

    While Jang was cooking a script, I have too, so here's my version... that the duel begins!

    An essential point about your original message... that the example script is almost here, everything you need to add was:

    -A line to remember the first document in the book. You will see that in the script of Jang where he defines 'sourceDoc' and my script where I define "firstDoc.

    -A call to SimpleImportFormats() on each document to import this first document formats. You will see that in both scripts.

    In addition, the example script included a lot of logging that was not really relevant to the task you want to complete, so I simplified the logging to be easier to apply. You don't want logging at all... in which case you might lose the Log() lines. It was just something useful sample showed how to do.

    Jang script includes a function to search for a document currently open before you attempt to open it from the file system. I think it is good practice and something I would work myself in a script like this.

    My script includes checking for a file of open book, in which case the book window is currently active. You can or don't want that. I put that much because it's often a pain to have to remember that the book window must be active.

    In any case, with this, enjoy!

    Russ

    var doc, firstDoc = null;

    var counter = 0;

    This set to a text file on your computer

    where you want to record to write.

    The folder must exist but the file

    will be automatically created.

    var logFile = "C:\\temp\\delete\\import_formats.log";

    Book = app. ActiveBook;

    if(!book.) ObjectValid())

    {

    If no book window is currently active,

    Find an open book, and then invites

    If we really want to use this one.

    Book = app. FirstOpenBook;

    If (book. ObjectValid())

    {

    If the user does not wish to use the first open book,

    reset the variable of the book to the invalid object for that

    future treatment was not held.

    If (! confirm ("no book is currently active." +))

    'You want to treat' + book. Name + "?"))

    Book = app. ActiveBook;

    }

    }

    Log (log file, "");

    Log(logFile, "---------------------------------------------");

    Date = new Date();

    Log (log file, date.getMonth () + "/" +)

    date.getDate () + ' / ' +.

    date.getFullYear () + ' - ' +.

    date.getHours () + ': ' +.

    date.getMinutes () + ': ' +.

    date.getSeconds ());

    Log (log file, "script to start importing format...");

    do the treatment. If there is no valid book to this

    point, there will never be a model valid and so this will

    all be ignored.

    comp = book. FirstComponentInBook;

    while(COMP. ObjectValid())

    {

    Download the document associated with the component, opening

    It is so necessary. If we are the first, store the object

    because it's the one where we import the

    formats

    doc = open (comp. name);

    if(FirstDoc == null) firstDoc = doc;

    check the type of component. No need to bother with folders and groups.

    compType is comp. BookComponentFileType;

    If (compType! = Constants.FV_BK_FOLDER & compType! = Constants.FV_BK_GROUP)

    {

    component Process here.

    Journal (logFile, "import to:" + comp. name);

    The first document import formats

    doc. SimpleImportFormats (firstDoc,

    Constants.FF_UFF_PAGE | Constants.FF_UFF_PGF | Constants.FF_UFF_FONT);

    counter ++;

    }

    iterate to the next component, when it exists.

    model is comp. NextBookComponentInDFSOrder;

    }

    Log (log file, "Total files:"+ counter ");

    Log(logFile, "---------------------------------------------");

    open function (filename)

    {

    openProp = GetOpenDefaultParams();

    i = GetPropIndex (openProp, constant. FS_FileIsOldVersion);

    .propVal.ival = constant .FV_DoOK openProp [i];

    i = GetPropIndex (openProp, constant. FS_FontNotFoundInCatalog);

    .propVal.ival = constant .FV_DoOK openProp [i];

    i = GetPropIndex (openProp, constant. FS_FontNotFoundInDoc);

    .propVal.ival = constant .FV_DoOK openProp [i];

    i = GetPropIndex (openProp, constant. FS_FileIsInUse);

    .propVal.ival = constant .FV_DoCancel openProp [i];

    i = GetPropIndex (openProp, constant. FS_AlertUserAboutFailure);

    .propVal.ival = constant .FV_DoCancel openProp [i];

    retParm = new PropVals();

    docOpen = Open (filename, openProp, retParm);

    Return docOpen;

    }

    function Log (logFile, textLine)

    {

    file = new File (log file);

    leader. Open ("a +", "TEXT","?");

    leader. Write (TextLine + "\r");

    leader. Close();

    }

  • ATML Reporting: "an invalid character was found in text content."

    When you use ATML and including non-ASCII characters (code decimal 128 and more), the generated report is not viewable in Internet Explorer (or Firefox, in fact), producing the error "an invalid character was found in text content." I think it's because TestStand isn't actually encoding the content of the report to the UTF-8 format. The same sequence produces a clickthrough report XML declaration. It seems that this issue has been found (and fixed) for the XML declaration but many years back.

    If you open the attached XML file in UTF-8 compatible text editor (I used the Notepad) and re-save specifically in UTF-8 format, IE will happily consider subsequently report. The part that really confuses me is that TestStand generates successfully the temporary HTML version of the report for the integrated report viewer (also attached), the parser used internally by TestStand must be a bit more lenient than IE.

    I've included an example with a VI sequence, which returns only a string of ReportText of these problematic characters.

    ASBO-

    Thank you for bringing This problem to our attention. This will be fixed in a future version of TestStand. In the meantime, you can fix this problem with your current version of TestStand by editing the reportgen_atml.seq file. I've attached an example of how you could modify the reportgen_atml.seq file to fix it in this position. Please, note that this is simply an example of correct behaviour and may not be the final implementation included in future versions of TestStand. I recommend that you do not replace or delete your reportgen_atml.seq file and save the version annexed to your \Components\Models directory.

    I hope this helps. Thanks again for this bring to our attention.

  • "Invalid character" exception procedure ODI

    Hello

    There is an oracle sql code:

    insert into
    KATEGORIE_ZASOBU
    (ID_KTZ,
    UZYT_TWORZACY,
    UZYT_OST_MODYFIKACJI,
    DET,
    DZIEDZICZENIE,
    DATA_OST_MODYFIKACJI,
    DATA_UTWORZENIA,
    DYSPONOWALNA,
    SYSTEMOWA,
    WYBIERALNA,
    OPI,
    NAME,
    USUNIETA,
    ID_KATEGORII1,
    ID_POZ_SL,
    IMPORT)

    values)
    KTZ_SEQ. NEXTVAL,
    "import."
    NULL,
    '0',
    '0',
    NULL,
    SYSDATE,
    '0',
    '0',
    '1',
    NULL,
    "Jednostki WSSE."
    '0',
    NULL,
    (select p.id_poz_sl in the p pozycje_slownikow join slowniki s on p.id_slownika = s.id_sl where s.nazwa like 'TYPY_ZASOBOW' and p.kod = 'OB').
    '1'
    );

    And there are procedure odi, defined as:
    -source technology: Undefined (impossible to define)
    -target technologies: Oracle
    Command0:
    -Technology: Oracle
    -Transaction: autocommit
    -Transaction Isolation: by default
    -Command: the same as above (sql query).

    And, as a result of the SQL Developer:
    1 lines inserted

    Result of ODI (procedure called in the package):
    ODI-1228: ProcDodajKategorie (procedure) of the task fails on ORACLE ISPIK_DB target connection.
    Caused by: java.sql.SQLSyntaxErrorException: ORA-00911: invalid character

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
    at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1115)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3954)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1539)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.execute(SQLCommand.java:163)
    at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:102)
    at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:1)
    at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ 2.doAction(StartSessRequestProcessor.java:366)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$ 0 (StartSessRequestProcessor.java:292)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ StartSessTask.doExecute (StartSessRequestProcessor.java:855)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:82)
    at java.lang.Thread.run(Thread.java:662)


    Thus, the same sql code is not run. What's wrong? Any tips? Thank you.

    remove the semicolon (;) - it is not necessary in ODI

  • LPX-00230: INVALID CHARACTER 0 (U + 0000) TO A NAME A NMTOKEN

    When you run the command
    rsp_xml: = xmltype (respval);

    where respval is the response of a http_request, I get the error:

    LPX-00230: INVALID CHARACTER 0 (U + 0000) TO A NAME A NMTOKEN

    We use the oracle version:
    Forms [32-bit] Version 10.1.2.0.2 (production)
    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    With the partitioning, Real Application Clusters, OLAP, data mining
    and Real Application Testing options
    Oracle Toolkit Version 10.1.2.0.2 (production)
    PL/SQL Version 10.1.0.4.2 (production)
    Oracle V10.1.2.0.2 - Production procedure generator
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Query Oracle 10.1.2.0.2 - Production Designer
    Oracle Virtual Graphics System Version 10.1.2.0.2 (production)
    Oracle GUI tools utilities Version 10.1.2.0.2 (production)
    Oracle multimedia Version 10.1.2.0.2 (production)
    Integration of Oracle Version 10.1.2.0.2 Herramientas (production)
    Common tools Oracle area Version 10.1.2.0.2
    Oracle 10.1.0.4.0 Production CORE


    And I test procedure PL with SQL NAVIGATOR 6.5.0.2090

    I create the http request with the following input XML. I do not see the answer because that error.


    < soapenv:Envelope xmlns:soapenv = "http://schemas.xmlsoap.org/soap/envelope/".
    xmlns:wsev = "http://wsevaluarreglacondicioncomercial/".
    xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" >
    < soapenv:Header / >
    < soapenv:Body >
    < wsev:listarOpcionesAtributoEventoElement >
    < wsev:codigoVersion > 426 < / wsev:codigoVersion >
    < wsev:codigoRegla > 1806 < / wsev:codigoRegla >
    < wsev:parametros >
    < wsev:tipoFactura xsi: Nil = "true" / >
    < wsev:canalDistribucion > AP < / wsev:canalDistribucion >
    < wsev:origenEquipo xsi: Nil = "true" / >
    < wsev:propiedadEquipo xsi: Nil = "true" / >
    < wsev:tipoActivacion xsi: Nil = "true" / >
    < wsev:nombreRegla xsi: Nil = "true" / >
    < wsev:claseComercializacionDestino xsi: Nil = "true" / >
    < wsev:abonoPlanSmsDestino xsi: Nil = "true" / >
    < wsev:planLlamadasDestino xsi: Nil = "true" / >
    < wsev:planDatosDestino xsi: Nil = "true" / >
    < wsev:vendedor > m000a01 < / wsev:vendedor >
    < wsev:monedaPlanDatosDestino xsi: Nil = "true" / >
    < wsev:monedaPlanSmsDestino xsi: Nil = "true" / >
    < wsev:planTarifarioLineaDestino xsi: Nil = "true" / >
    < wsev:oficinaComercial > 1 < / wsev:oficinaComercial >
    < wsev:estadoLinea xsi: Nil = "true" / >
    < wsev:claseComercializacion xsi: Nil = "true" / >
    < wsev:monedaPlanDatos xsi: Nil = "true" / >
    < wsev:codigoVersionCondicionComercial xsi: Nil = "true" / >
    < wsev:planTarifarioLinea xsi: Nil = "true" / >
    < wsev:monedaPlanLlamadasDestino xsi: Nil = "true" / >
    < wsev:estadoLineaDestino xsi: Nil = "true" / >
    < wsev:operacion > ACTIV < / wsev:operacion >
    < wsev:serieEquipoDestino xsi: Nil = "true" / >
    < wsev:claseCreditoLlamadas xsi: Nil = "true" / >
    < wsev:planSms xsi: Nil = "true" / >
    < wsev:planSmsDestino xsi: Nil = "true" / >
    < wsev:grupoCorporativo xsi: Nil = "true" / >
    < wsev:origenEquipoDestino xsi: Nil = "true" / >
    < wsev:serieEquipo xsi: Nil = "true" / >
    < wsev:claseCreditoDatos xsi: Nil = "true" / >
    < wsev:tecnologia > MOBILE < / wsev:tecnologia >
    < wsev:equipo xsi: Nil = "true" / >
    < wsev:abonoPlanLlamadasDestino xsi: Nil = "true" / >
    < wsev:categoriaCliente xsi: Nil = "true" / >
    < wsev:grupoFacturacion xsi: Nil = "true" / >
    < wsev:condicionPago xsi: Nil = "true" / >
    < wsev:planDatos xsi: Nil = "true" / >
    < wsev:claseCreditoSms xsi: Nil = "true" / >
    < wsev:usoEquipoDestino xsi: Nil = "true" / >
    < wsev:monedaPlanLlamadas xsi: Nil = "true" / >
    < wsev:abonoPlanSms xsi: Nil = "true" / >
    < wsev:organizacionVenta > COMCE < / wsev:organizacionVenta >
    < wsev:planLlamadas xsi: Nil = "true" / >
    < wsev:usoEquipo xsi: Nil = "true" / >
    < wsev:propiedadEquipoDestino xsi: Nil = "true" / >
    < wsev:abonoPlanDatosDestino xsi: Nil = "true" / >
    < wsev:abonoPlanDatos xsi: Nil = "true" / >
    < wsev:abonoPlanLlamadas xsi: Nil = "true" / >
    < wsev:linea xsi: Nil = "true" / >
    < wsev:monedaPlanSms xsi: Nil = "true" / >
    < / wsev:parametros >
    < wsev:pkInstanciaProceso > 12775 < / wsev:pkInstanciaProceso >
    < / wsev:listarOpcionesAtributoEventoElement >
    < / soapenv:Body >
    < / soapenv:Envelope >


    I'd appreciate any help.

    Could you post the contents of respval?

    (use

     tags to preserve formatting as explained in the FAQ here : https://forums.oracle.com/forums/help.jspa)                                                                                                                                                                                                                                                                                                                        
    
  • Error trivial Drives Me Crazy - ORA-00911: invalid character - Oracle 10 g

    I have no idea where I was wrong. I get this ORA-00911: invalid character
    I looked at the excerpt from tons of times, but could not find a glitch. Code appear nested into a TOAD
    CREATE TABLE RoomAssociates
    (
         roomAssociatesID           NUMBER(7)                                     , CONSTRAINT roomasso_roomassoid_pk                            PRIMARY KEY(roomAssociatesID)                                                         ,                                                     
         roomID                       NUMBER(7)                                        CONSTRAINT roomasso_roomid_nn                                NOT NULL                                                                                     ,
                                                                                           CONSTRAINT roomasso_roomid_fk                            FOREIGN KEY(roomID) REFERENCES Room(roomID) ON DELETE CASCADE               ,
         roomFacilityID              NUMBER(7)                                      CONSTRAINT roomasso_roomfid_nn                                NOT NULL                                                                                         ,
                                                                                           CONSTRAINT roomasso_roomfid _fk                             FOREIGN KEY(roomFacilityID) REFERENCES RoomFacility(roomFacilityID)          ,
         enSuitID                   NUMBER(7)                                         CONSTRAINT roomasso_ensuitid_nn                             NOT NULL                                                                                          ,
                                                                                           CONSTRAINT roomasso_ensuitid_fk                       FOREIGN KEY(enSuitID) REFERENCES EnSuit(enSuitID)
    );

    Now, this will work:

    CREATE TABLE RoomAssociates
    (
         roomAssociatesID           NUMBER(7)                                     , CONSTRAINT roomasso_roomassoid_pk                            PRIMARY KEY(roomAssociatesID)                                                         ,
         roomID                       NUMBER(7)                                        CONSTRAINT roomasso_roomid_nn                                NOT NULL                                                                                     ,
                                                                                           CONSTRAINT roomasso_roomid_fk                            FOREIGN KEY(roomID) REFERENCES Room(roomID) ON DELETE CASCADE               ,
         roomFacilityID              NUMBER(7)                                      CONSTRAINT roomasso_roomfid_nn                                NOT NULL                                                                                         ,
                                                                                           CONSTRAINT roomasso_roomfid_fk                             FOREIGN KEY(roomFacilityID) REFERENCES RoomFacility(roomFacilityID)          ,
         enSuitID                   NUMBER(7)                                         CONSTRAINT roomasso_ensuitid_nn                             NOT NULL                                                                                          ,
                                                                                           CONSTRAINT roomasso_ensuitid_fk                       FOREIGN KEY(enSuitID) REFERENCES EnSuit(enSuitID)
    );
    

    The error is here:

    CONSTRAINT roomasso_roomfid _fk
    

    Better formatting:

    CREATE TABLE RoomAssociates
    ( roomAssociatesID NUMBER(7), CONSTRAINT roomasso_roomassoid_pk PRIMARY KEY(roomAssociatesID),
      roomID           NUMBER(7)  CONSTRAINT roomasso_roomid_nn     NOT NULL,
                                  CONSTRAINT roomasso_roomid_fk FOREIGN KEY(roomID) REFERENCES Room(roomID) ON DELETE CASCADE,
      roomFacilityID   NUMBER(7)  CONSTRAINT roomasso_roomfid_nn NOT NULL,
                                  CONSTRAINT roomasso_roomfid_fk FOREIGN KEY(roomFacilityID) REFERENCES RoomFacility(roomFacilityID),
      enSuitID         NUMBER(7)  CONSTRAINT roomasso_ensuitid_nn     NOT NULL,
                                  CONSTRAINT roomasso_ensuitid_fk FOREIGN KEY(enSuitID) REFERENCES EnSuit(enSuitID)
    );
    

    Max
    [My Italian blog Oracle | http://oracleitalia.wordpress.com/2009/12/18/table-elimination-oppure-join-elimination-lottimizzatore-si-libera-della-zavorra/]

    Published by: Massimo Ruocchio, December 19, 2009 12:05 AM

  • One of your filters uses a custom header that contains an invalid character.

    When I send an email, you receive the following error message:

    «One of your filters uses a custom header that contains an invalid character, such as ':', a nonprintable character, a non-ascii character or an 8-bit ascii character.» Please change the msgFilterRules.dat file, which contains your filters to remove characters not valid in your custom headers".

    It is followed by a message saying that the email was sent and saved despite the error.

    The problem occurred after the transfer to 10 Windows (from Win 7)

    I deleted all files msgFilterRules.dat and all filters, but the message persists.

    Any suggestions on what else to try?

    Thank you
    Ben

    Problem solved.

    After you delete all files/imap mail entries, the problem disappeared.

  • in Windows XP when I try to remove or add a program, Error 1324 the path my pictures contains an invalid character

    in Windows XP when I try to remove or add a program, I get "Error 1324 the path my pictures contains an invalid character"

    Hello

    1 is applicable to all programs that you are trying to install this question?

    See the methods listed in the section below and check if this helps you resolve the issue.
    You may receive one of three error messages when you try to install Streets and Trips or MapPoint
    http://support.Microsoft.com/kb/894510

    I hope this helps.

  • Can someone tell me please how to fix this - error 1324. the my documents path contains an invalid character

    Fellows,

    I use a laptop running Vista Ultimate 64 bit and I have problems installing some software.  I get the following error: "Error 1324. The My Documents path contains an invalid character.'  I went through all the registry fixes and redirection of My Documents but I still get this error.  Anyone can shed light on this problem, as I see a lot of blogs out there, but no resolution.

    Hello NetSysAdmin

    You can search the Windows registry for the invalid character that is displayed in the 1324 error message and replace all occurrences of the invalid character with the correct character. For example, if the 1324 error message refers to "system32 /", you should look for "system32 /". If you find all instances in the registry, change them, so that the registry values correctly reference the System32 folder.

    1. Click Startand then click run. In the Open box, type regedit, and then click OK.
    2. On the Edit menu, click find.
    3. In the Search box, type the string reported in the 1324 error message, and then click Next.
    4. If you find the problematic channel, make the necessary changes, and then press F3 to find the next occurrence.
    5. Repeat step 4 until you find and replace all incorrect references.
    6. On the registry menu, click exit.

    Hope this helps you. Let us know anyway. Make it a great day!

    "In the end the love you take is equal to The Love You Make" (The Beatles last song from their latest album, Abbey Road.)

  • Installation of Java 1324 error - invalid character

    It's SO frustrating. Every time I try to install Java, I always get the error message: "Error 1324. The AVG Plugins path contains an invalid character. »
    I remember a folder named 'AVG Plugins' but it is eliminated for some time now and it was located on an external hard drive. I have no idea why he decided to blame for its failure to install on a particular file. Well, I'm sure that the folder has had a registered symbol (®) in its folder I can see where its getting the part "invalid character" of... Before it was deleted, the Plugins of AVG file contained Java installation files, but I deleted them eventually if I could reinstall it on my hard drive. I remember at one point, Java was working fine once again, but after some problems with MP3 Rocket (which depends on Java), I deleted Java and once again tried to reinstall... Which doesn't of course.

    At first I thought that I would just change the destination folder but I tried to save now on many places, but I always get the same exact error message, with the same exact file mentioned (AVG plugins). I tried to install Java the way normal and in one end offline installation, I get finally to the same error message. Can someone help me please?

    Here is part of an old MSINFO report (at the time when Java was installed in AVG Plugins). You can see that Java appears several times in the folder "Plugins AVG", which may have something to do with this current error message... Also, some Java files see the place in my control panel, but I'm unable to uninstall the. Let me know if this is something that I need to study in detail in order to solve this problem...

    [Environment variables]
     
    CLASSPATH. ; J:\AVG Plugins\Java\lib\ext\QTJava.zip   
    QTJAVA J:\AVG Plugins\Java\lib\ext\QTJava.zip

    [Windows error reporting]

    11/03/2011 06:00 application error Faulting application javaw.exe, version 6.0.10.6, time stamp 0x45f7b2e0, failed module Flash10a.ocx, version 10.0.12.36, time stamp 0x48e83175, exception code 0xc0000005, offset 0x000c97a0, process id 0 x 1330 error, start time of application 0x01cbdfa43562f760.
    08/07/2011 16:58 application error Faulting application javaw.exe, version 6.0.240.7, time stamp 0x4d4a0b98, failed module Flash10a.ocx, version 10.0.12.36, time stamp 0x48e83175, exception 0xc0000005, offset error 0x000c97a0, process 0xddc id code, start time of application 0x01cc3d8fe8690aa2.
    SID 2349 = & iBucketTable = 1 & iBucket = 1073051697
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.10.6
    P3: 45f7b2e0
    P4: Flash10a.ocx
    P5: 10.0.12.36
    P6: 48e83175
    P7: c0000005
    P8: 000c97a0
    P9:
    P10:

    Attached files:
    C:\Users\Allen\AppData\Local\Temp\WER36D8.tmp.version.txt

    These files are available here:
    C:\Users\Allen\AppData\Local\Microsoft\Windows\WER\ReportArchive\Report12d952a1
    04/04/2011 bucket 1729795195, type 5 05:01 Windows Error Reporting failure
    Event name: AppHangB1
    Answer: no
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.240.7
    P3: 4d4a0b98
    P4: 6efb
    P5: 6144
    P6:
    P7:
    P8:
    P9:
    P10:

    Attached files:
    C:\Users\Allen\AppData\Local\Temp\WER26DB.tmp.AppCompat.txt

    These files are available here:
    C:\Users\Allen\AppData\Local\Microsoft\Windows\WER\ReportArchive\Report12593dc4
    08/07/2011 type 1729795195, bucket Windows Error Reporting lack of 01:37 5
    Event name: AppHangB1
    Answer: no
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.240.7
    P3: 4d4a0b98
    P4: 6efb
    P5: 6144
    P6:
    P7:
    P8:
    P9:
    P10:

    Attached files:

    These files are available here:
       
    08/07/2011 17:00 Windows Error Reporting crash bucket 2319574050, type 1
    Event name: APPCRASH
    Answer: http://oca.microsoft.com/resredir.aspx?SID=2349&iBucketTable=1&iBucket=-1975393246
    Cabin ID: 0

    Signature of the problem:
    P1: javaw.exe
    P2: 6.0.240.7
    P3: 4d4a0b98
    P4: Flash10a.ocx
    P5: 10.0.12.36
    P6: 48e83175
    P7: c0000005
    P8: 000c97a0
    P9:
    P10:

    Attached files:
    C:\Users\Allen\AppData\Local\Temp\WERD858.tmp.version.txt

    These files are available here:
    C:\Users\Allen\AppData\Local\Microsoft\Windows\WER\ReportArchive\Report0d6172e2
    04/04/2011 05:01 application Hang the javaw.exe version 6.0.240.7 program ceased to interact with Windows and was closed. To see if there is more information about the problem, check the history of the problem in the reports on the problems and Solutions control panel. Process ID: 8Ce Start Time: time of termination 01cbf27550cd99c9: 36

    Hello

    Method 1:
    You can disable the anti-virus installed on the computer and then try to install java and check:
    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software
    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks.

    Method 2:
    You can also try the steps in knowledge base article and check the:
    Problems installing and uninstalling programs on Windows computers
    http://support.Microsoft.com/kb/2438651

    Method 3:
    You can also check the link provided and check:
    How to get Java software installation log files?
    http://Java.com/en/download/help/Log_files.XML

  • program files contains an invalid character

    Whenever I try to install sony vegas it comes up saying "program files contains an invalid character" and it will not be installed. There is enough space on the hard drive and it seems to be only vegas that will not be installed. All solutions? Thank you.

    Hello

    This problem can occur if you type an invalid destination in the folder on the screen name box change the current Destination folder.

    Step 1: To resolve this problem, specify a destination that resides on a disk drive hard local area name of folder on the screen change the current Destination folder.

    Step 2: Try to install in a new user account.

    http://Windows.Microsoft.com/en-us/Windows-Vista/create-a-user-account

  • invalid character in administrative tools

    I get the message error 'administration tools contains an invalid character' when you try to uninstall a program.  What should I do?

    Hi Kathy28,

    A. how you try to uninstall the program?

    B. recent changes made on your computer?

    This problem may occur when the program or the program installer is incompatible with Windows Vista.

    You can try the methods from the article below and check if it helps.

    http://support.Microsoft.com/kb/927395

    Previous post: the result.

    Bindu S - Microsoft Support

    [If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message.] [Marking a post as answer, or relatively useful, you help others find the answer more quickly.]

  • Problem SAXParser (SaxParser invalid character exception) using wifi

    Greetings to all developers,

    I have a problem in the use of SAX parser...

    I'm developing an application that will receive the XML data in the web service...

    When I try my app using BIS, I got the data correctly... & it's good...

    But, when I use only the wifi connection, I got an error like

    invalid character '& #x0' encountered in SaxParser exception...

    Can you help me with this problem?

    Thank you...

    Thanks for the reply...

    I already found the solution here...

    rather than use this to read the input stream:

    byte incomingData[] = new byte[length];
    is.read(incomingData);
    XML = new String(incomingData);
    

    I use the following method:

    ByteArrayOutputStream bytestream = new  ByteArrayOutputStream();
    int ch;
    while ((ch = is.read()) != -1)
    {
       bytestream.write(ch);
    }
    XML = new String(bytestream.toByteArray());
    bytestream.close();
    

    I don't know why to use wifi can not do with the first method anyway, but at least it works now using the second method...

    Thanks for everything... ^^

    HM... For IOUtilities, I'm afraid, I can't use it, because my goal is for OS 5.0...

    I think it is appropriate only for OS 6.0

  • Error 1324. Path my pictures contains an invalid character during the withdrawal of Mgr access VZ.

    Originalt title: Error 1324. The path my pictures contains an invalid character. I get this message when I try to remove a program. I'm trying to retire an old version of VZ access Mgr please help with this problem. Thank you.

    Error 1324 the path my pictures contains an invalid character. Fatal error during installation.

    Hi Kurt wolfe,

    This happens because the value type for the wrong shell folder, or due to incorrect data in the registry. To resolve this problem, solve the My Pictures Shell folder paths in the registry accordingly. The default values are given in a column in a table in the following article. There is also a REG fix available on the next page:

    Windows stores the location of special folders by user under the following registry key:

    HKEY_CURRENT_USER-Software-Microsoft-Windows-CurrentVersion------Explorer------user Shell folders

    Microsoft has a Fix - It solution that fixes most of the paths of shell (shell by both user and computer files) folder automatically. You can download the fix from.

    You receive an "Error 1606" error message when you try to install or remove a program from Microsoft
    http://support.Microsoft.com/kb/886549

    Note: The error message may vary, but you can give it a try and see if the problem is resolved.

    Thank you, and in what concerns:
    I. Suuresh Kumar - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • STEAM will not install. Fatal Error 1324; The folder path ' Program Files (x 86) contains an invalid character. How to fix this?

    I can't play any of my games, because STEAM refused to install... I have used their Web Site and my records... the results are the same... the same fatal error pops up...

    From the other thread: http://answers.microsoft.com/en-us/windows/forum/windows_7-gaming/error-1324-when-installing-steam/d9515071-2fc1-405c-875a-8fd6bca91930

    Title: ERROR 1324 When STEAM plant

    I tried to install STEAM via the WEB and game discs (games include Civilization V, Napoleon - Total War & EMPIER - Total War)

    Program runs until the WIZARD of INSTALLATION of STEAM... as soon as I received an ERROR 1324. The fold path ' Program Files (x 86) contains an invalid character. It does not specify which file or which character is not valid. I tried several registry cleaners... no luck. There is nowhere any folder on the computer for the Valve or STEAM...

    I disable the security & firewall and still get the same results... The installer of Steam does not work... Help?

    Hello

    Have you contacted https://support.steampowered.com/newticket.php to help?

    Thank you!

Maybe you are looking for

  • HP ENVY 17-N078CA laptop: seeking the machine with windows 8.1 - and the upgrade to 10.

    Hi all I am looking at buying a machine to re-furb. HP ENVY 17-N078CA laptop The machine has windows 8.1 and I wanted to know if there was problems with upgrade to windows 10.

  • Failed to load nicvidu.dll

    I installed the version 8.5.0 (279) of LabWindows/CVI.  I am running the 'Simple_DIO_Example' example in debugging and get an error during the call to the function 'NIDAQmx_NewPhysChanDOLineCtrl() '.  If I walk through the program I get a popup sayin

  • Activation of the product with the product key valid for windows XP

    To the right:I bought an upgrade to windows xp for many years with a valid product key, but recently I had rebuilt my computer and reinstalled windows xp.  Under the limit of 30 for actiavtion, I entered my product key and it was invalid, I called mi

  • MS Office 2010 and C4380 printer driver

    My printer driver C4380 to work seamlessly with MS Office 2007. After installing MS Office 2010 I find there seems to be a conflict between the HP printer driver and print MS office dialog box. For example print double-sided is very difficult. I have

  • How to get the Organizer"and"Accepted"data from a BlackBerryEvent

    Hi all -J' I send an invitation to the device of BB from Outlook-Once received, accept the appt to the BB email application When I view the appointment in the native calendar of BB, I can see the "Organizer" fields and "accepted." How can we get thes