OLIVIER 7.9.5.2 zone Applications Configuration Manager error

Hello
We are installing and configuring OBIA 7.9.5.2 ODI release for Oracle financial analytics...

After seting up to Oracle BI Applications Configuration Manager, we have connected using the default user ID (data_biappstx)...
Trying to access the "settings of ELT Admininster", we get the following error in a pop up window...

* "Unexpected exception caught: java.sql.SQLDataException, msg = ORA-01882: region time zone not found *"
* Time zone ORA-01882 region: not found *.
"* Unexpected exception caught: java.lang.NullPointerException, msg = null."

We use Oracle database 10G (10.2.0.1.0) for schema and jdk 1.6.0_14.. data_biappstx.

Please, help us to solve this problem...

Kind regards
dmaze

Published by: dmaze on June 11, 2009 23:07

Your database is running in a different time zone schedule as the machine running configuration manager?

Googling for error, found a potential solution: (please let us know if this solves your problem)

Check your Windows registry if DisableAutoDaylightTimeSet exists in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation. If it exists, set the value to 0 or delete it completely from the registry. There is a known issue with JRE and Windows for it.

(The above should be done on the oracle database machine, and database manager & configuration may need to restart).

Tags: Business Intelligence

Similar Questions

  • I replaced my original Apple Watch with a watch of S2. When I install and associate the new shows, is there a way I can restore all applications, configuration information and data of the original of the new shows so I don't have to start from scratch?

    I replaced my original Apple Watch with a watch of S2. When I install and associate the new watch and my iPhone 7 more, is there any way I can restore all applications, configuration info and data between the original and the new shows, so I don't have to start from scratch?

    Try this procedure

    Cancel the twinning of your iPhone - Apple and Apple Watch Support

    Spend your Apple Watch a new iPhone - Apple Support

  • the application configuration is incorrect

    I am trying to open a Microsoft Outlook .exe file that has been transferred from a different computer and I get the error message: this application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this proplem. I DO NOT have the original installation discs and product ID and product key numbers are in my Outlook folders on the laptop that I CAN'T open. Microsoft says there NOTHING they can do and that we have to buy another copy of Office 2007 Professional, which is absurd. I already bought the software and it's on my hard drive and I want to just move to another hard drive and load it on a different hard drive.

    Hi Amajorman,

    Thanks for visiting the site of the community of Microsoft Windows XP. The question you have posted is related to Outlook and would be better suited to the office community. Please visit the link below to find a community that will provide the support you want.

    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx Shawn - Support Engineer - MCP, MCDST
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • BlackBerry smartphones can not load correctly "Application Loader" of DM. Stop in "The Java to read Application Configuration"

    Hi all

    Now I use BB8320 for the Version of the OS 4.5.0.102. When I try to use "Application Loader" of DM to add new software, the program stops at "Configuration of device of recovery." 'Java to read Application configuration' is marked but is not 'System playback device Configuration'. The program has no answer at this stage.

    I tried with DM V4.2 and V5.0 and had the same problem. I hope that if you have some tips to help me with it!

    Kind regards!

    Have no idea what is the reason for which final, but after I wiped all programs (settings-> Options-> Security-> General Settings Options-> wipe Handheld), the problem has been resolved.

  • Is there an option for a default application configuration in weblogic?

    Hi guys,.

    I have an application deployed on a server admin.

    I access my http://localhost:7001 app / browsestore

    I want to access the application only if I enter http://localhost:7001 in the address bar

    Is there an option for a default application configuration?

    Thanks in advance :)

    Hello

    OPTION - 1).
    Assign the value of the 'context root' as element.
    It will make your WebApplication a default web on the server application...
    To change the root of context in weblogic.xml next entry is necessary:
    Example:


    /

    OPTION - 2).
    If you do not want to change your "weblogic.xml" and then log in to the admin console-
    Servers---> YourManagedServerName (Click)---> Protocol (tab)---> Http (sub-tab)---> the default Web application context root:

    NOTE: -.
    In the field above, please specify your root context WebApplications that precedes a slash (example: /MyContextRoot)...sothat after the restart of the server the Application will become your default WebApp servers...)
    .
    .
    .
    Thank you
    Jay SenSharma
    http://jaysensharma.WordPress.com (WebLogic wonders are here)

  • App rejected with application settings management

    Hello

    I am a new developer, and I'm trying to implement a configuration management in my application. I found some information on the forum and other Internet site. When I test it with the Simulator (10.2.1 and 10.3) and my devices (Blackberry Z30 and passport) it works without any problem.

    My question is when I am trying to release my app on BlackBerry World, BlackBerry test team rejected it and told me that they cannot launch my application when they tap the... I asked explanations more because I couldn't reproduce this problem and they sent me a video of the bug (every time they tap the add anything...).

    I still don't understand how they can have this question if the test tool with my devices, everything is ok...

    Can you help me understand what's wrong in my code that could explain this bug?

    Here is my code for layout management:

    main.cpp
    
    #include "applicationui.hpp"
    
    #include 
    
    #include 
    #include 
    
    #include 
    
    using namespace bb::cascades;
    
    int main(int argc, char **argv)
    {
        // this is where the server is started etc
        Application app(argc, argv);
    
        // localization support
        QTranslator translator;
        QString locale_string = QLocale().name();
        QString filename = QString( "PourcentagesFaciles_%1" ).arg( locale_string );
        if (translator.load(filename, "app/native/qm")) {
            app.installTranslator( &translator );
        }
        // create the application pane object to init UI etc.
        new ApplicationUI(&app);
        // we complete the transaction started in the app constructor and start the client event loop here
        return Application::exec();
        // when loop is exited the Application deletes the scene which deletes all its children (per qt rules for children)
    }
    
    Applicationui.hpp
    
    #ifndef ApplicationUI_HPP_
    #define ApplicationUI_HPP_
    
    #include 
    
    namespace bb {
        namespace cascades {
            class Application;
        }
    }
    
    class QTranslator;
    
    class ApplicationUI : public QObject
    {
        Q_OBJECT
        public:
        ApplicationUI(bb::cascades::Application *app);
        ~ApplicationUI();
    
        Q_INVOKABLE
        QString getValueFor(const QString &objectName, const QString &defaultValue);
        Q_INVOKABLE
        void saveValueFor(const QString &objectName, const QString &inputValue);
    };
    
    #endif /* ApplicationUI_HPP_ */
    
    applicationui.cpp
    
    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    
    ApplicationUI::ApplicationUI(bb::cascades::Application *app)
    : QObject(app)
    {
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
        qml->setContextProperty("_app", this);
    
        AbstractPane *root = qml->createRootObject();
    
        app->setScene(root);
    }
    
    ApplicationUI::~ApplicationUI()
    {
    
    }
    
    QString ApplicationUI::getValueFor(const QString &objectName, const QString &defaultValue)
    {
        QSettings settings;
    
        if (settings.value(objectName).isNull()) {
            return defaultValue;
        }
    
        return settings.value(objectName).toString();
    }
    
    void ApplicationUI::saveValueFor(const QString &objectName, const QString &inputValue)
    {
        QSettings settings;
    
        settings.setValue(objectName, QVariant(inputValue));
    }
    

    I found a solution to my problem by changing the code.

    I write the code in case someone had the same problem as me.

    main.cpp

    #include "applicationui.hpp"
    #include 
    
    #include 
    
    #include 
    #include 
    #include 
    
    #include 
    
    using ::bb::cascades::Application;
    
    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        Application app(argc, argv);
    
        ApplicationUI mainApp;
    
        return Application::exec();
    }
    

    applicationui. HPP

    #ifndef ApplicationUI_HPP_
    #define ApplicationUI_HPP_
    
    #include 
    
    namespace bb
    {
        namespace cascades
        {
            class LocaleHandler;
        }
    }
    
    class QTranslator;
    
    class ApplicationUI : public QObject
    {
        Q_OBJECT
    
            public:
            ApplicationUI();
            ~ApplicationUI();
    
            Q_INVOKABLE QString getValueFor(const QString &objectName, const QString &defaultValue);
            Q_INVOKABLE void saveValueFor(const QString &objectName, const QString &inputValue);
    
            private:
    
            Q_SLOT void onSystemLanguageChanged();
    
            QTranslator* mTranslator;
    
            bb::cascades::LocaleHandler* mLocaleHandler;
    };
    
    #endif /* ApplicationUI_HPP_ */
    

    applicationui.cpp

    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    
    ApplicationUI::ApplicationUI()
    {
        QCoreApplication::setOrganizationName("test babou en carton");
        QCoreApplication::setApplicationName("test babou en carton");
    
        mTranslator = new QTranslator(this);
        mLocaleHandler = new LocaleHandler(this);
        onSystemLanguageChanged();
        bool connectResult = connect(mLocaleHandler, SIGNAL(systemLanguageChanged()), SLOT(onSystemLanguageChanged()));
        Q_UNUSED(connectResult);
    
        QmlDocument *qml = QmlDocument::create("asset:///main.qml");
        qml->setContextProperty("_app", this);
    
        if (!qml->hasErrors()) {
            AbstractPane *appPane = qml->createRootObject();
            if (appPane) {
                Application::instance()->setScene(appPane);
            }
        }
    }
    
    ApplicationUI::~ApplicationUI()
    {
    
    }
    
    QString ApplicationUI::getValueFor(const QString &objectName, const QString &defaultValue)
    {
        QSettings settings;
    
        if (settings.value(objectName).isNull()) {
            return defaultValue;
        }
    
        return settings.value(objectName).toString();
    }
    
    void ApplicationUI::saveValueFor(const QString &objectName, const QString &inputValue)
    {
        QSettings settings;
        settings.setValue(objectName, QVariant(inputValue));
    }
    
    void ApplicationUI::onSystemLanguageChanged()
    {
        QCoreApplication::instance()->removeTranslator(mTranslator);
    
        QString localeString = QLocale().name();
        QString fileName = QString("testBabouEnCarton_%1").arg(localeString);
        if (mTranslator->load(fileName, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(mTranslator);
        }
        qDebug() << "language " << localeString;
    }
    
  • Error loading credit using planning instance configuration management target


    Hi all

    I'm migrating Oracle credit functional configuration management (model Scoring list, automation rules) of the source to the target instance instance. I am trying to achieve through the use of planning. Once the load completed, I get the following error and configurations are not migrated. This error only appears for the configuration of credit management. Not for the other features. Please help me on this.

    +---------------------------------------------------------------------------+

    Implementation of the application: Version: 12.0.0

    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.

    Module AZR12LOADER: planning Loader R12

    +---------------------------------------------------------------------------+

    Current system time is October 9, 2013 03:15:18

    +---------------------------------------------------------------------------+

    Simultaneous request parameters

    ******************************

    RELOAD_REQUEST_ID =

    DBC_FILE_NAME = DEVF. DBC

    SNAPSHOT_REQUEST_TYPE = E

    Nom_snap = Test credit RAC management

    RELOAD_METHOD =

    REQUEST_TYPE = L

    IS_REMOTE = Y

    JOB_NAME = RAC credit management Test1

    USER_NAME = DEPPS

    Download of the excerpt from the central instance

    Managed to copy the snippet

    Time required to download extract and write in the file zip = 0 seconds

    Validation of first extract...

    Driver.xml analysis

    Time needed to analyze the driver file and build the milliseconds of objects: 6 installation

    API to sort based on their addiction...

    Time required to sort the API = 12 milliseconds

    Print sorting API

    *********************

    Loading sequence 1

    *************

    (1) AR_CMGT_Scores

    October 9, 2013 03:15:48 oracle.adf.share.config.ADFConfigFactory findOrCreateADFConfig

    INFO: oracle.adf.share.config.ADFConfigFactory no META-INF/adf - config.xml not found

    ******************************************

    Name: AR_CMGT_Scores

    Type: BC4J

    Path: oracle.apps.ar.ispeed.creditmgt.scores.server.ScoresAM

    Time Taken (seconds): 2.0

    Lines in the xml file import and validating the lines...

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = oracle.jbo.RowCreateException: Houston-25017: error when creating a new entity for ScoresEO line.

    java.lang.Integer incompatible with java.lang.Long

    ;

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = oracle.jbo.RowCreateException: Houston-25017: error when creating a new entity for ScoresEO line.

    java.lang.Integer incompatible with java.lang.Long

    ;

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = oracle.jbo.RowCreateException: Houston-25017: error when creating a new entity for ScoresEO line.

    java.lang.Integer incompatible with java.lang.Long

    ;

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = oracle.jbo.RowCreateException: Houston-25017: error when creating a new entity for ScoresEO line.

    java.lang.Integer incompatible with java.lang.Long

    ;

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = oracle.jbo.RowCreateException: Houston-25017: error when creating a new entity for ScoresEO line.

    java.lang.Integer incompatible with java.lang.Long

    ;

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = oracle.jbo.RowCreateException: Houston-25017: error when creating a new entity for ScoresEO line.

    java.lang.Integer incompatible with java.lang.Long

    ;

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = oracle.jbo.RowCreateException: Houston-25017: error when creating a new entity for ScoresEO line.

    java.lang.Integer incompatible with java.lang.Long

    ;

    -----------------------------------------

    Not found message. Application: AZ, Message name: AZW_FWK_USER_ROW_EXCEPTION. Chips: VONAME = odds; Score model KEY = Id = "null".

    ; EXCEPTION = updates are not supported by this API.

    ;

    -----------------------------------------

    74 rows processed, now showing the changes to the database...

    -----------------------------------------

    Committed transaction.

    -----------------------------------------

    API:AR_CMGT_Scores transformed

    Status: WARNING

    ******************************************

    Simultaneous program ends.

    +---------------------------------------------------------------------------+

    Beginning of the FND_FILE log messages

    +---------------------------------------------------------------------------+

    +---------------------------------------------------------------------------+

    End of the FND_FILE log messages

    +---------------------------------------------------------------------------+

    +---------------------------------------------------------------------------+

    Options, AutoComplete, the request for enforcement.

    End of query options AutoComplete.

    +---------------------------------------------------------------------------+

    Simultaneous request ended

    Current system time is October 9, 2013 03:15:50

    +---------------------------------------------------------------------------+

    Please make sure that you have applied patches (error when used with Oracle credit Management (OCM) to transfer installation (Doc ID 1129843.1) planning data).

    Thank you

    Hussein

  • Impossible to create Instance Source in Configuration manager (BI Apps 11.1.1.7.1)

    Hello

    During Setup, I created an instance of source for EBS R12.1.3 but I logged in customer ODI Studio and by mistake I deleted "Data Server" of topology that I created in the Source Instance creation/configuration on Configuration Manager (CM).

    He was not intentionally by mistake I deleted. For this reason, I am not able to change the source instance. Once I try to edit when I save it pop-up error "" error: ODI-10182: uncategorized exception during repository access. ". ORA-00001: unique force (DEV_BIA_ODIREPO. AK_CONNECT) violated. "

    His was bug, but they fix after ODI 11.1.1.6.0

    (Metalink note

    1- Note 1545938.1 : ODI-10182 and ORA-02292 errors reported after the unnecessary suppression of data store in ODI 11 g integration Interface

    2 BUG

    https://support.Oracle.com/epmos/faces/BugDisplay?_afrLoop=96427980024293 & ID = 13916069 & _afrWindowMode = 0 & _adf. CTRL-State = 1536syzwe9_437

    )

    However, I tried following cases:

    1 - tried to modify an Instance of Source of Configuration manager (CM) but gave me an error: ' error: ODI-10182: uncategorized exception for access to the repository. " ORA-00001: unique force (DEV_BIA_ODIREPO. AK_CONNECT) violated. "

    2 - tried to create a new database server by using the same Instance of Source of Source on Configuration manager (CM). Failed with the error message: "invalid system Source.

    3 - has tried to re-create the same name server given in ODI Studio with the same name. Failed due to the error: "Data Server Alread exists."

    Then without success so far. I'm currently editing source system Instance but so far without success.

    Versions:

    OBI Apps: 11.1.1.7.1

    OBIEE: 11.1.1.7.0

    ODI: 11.1.1.7.0

    Database: Oracle 11.2.0.3

    OS: Windows 2008 R2

    concerning

    Sher ullah baig

    I am SR with oracle and they offered under the solution, I hope it helps someone.

    How to remove a system from source?

    The user interface for Configuration Manager does not include a way to remove a source system. In the page set of Business Intelligence Applications, you can only add or change a source system.

    By manually removing the source of Oracle Data Integrator system and tables in the main database, you can effectively remove a source system.

    To manually remove the source system:

    1. connect to the base of the application through a utility such as SQL * more or SQL Developer, connected to the same user configured in the data source for WebLogic.

    2. find the source of the source system to remove system identification number by running the SQL code following and looking at the value of the DATASOURCE_NUM_ID column:

    SELECT DATASOURCE_NAME, C_DATA_SOURCE DATASOURCE_NUM_ID;

    3. go to ODI Studio and delete the physical schema associated with the source system.

    4. in Studio ODI go to the respective logical schema:

    2.1 go tab flexfield

    2.2 check for data source digital id flexfield to use by default.

    5. in SQL * Plus or SQL Developer run the following statements where the variable binding,: Bind_DatasourceNumId, is set to the value of the identifier of the source system. These SQL statements can also be placed in a script, if necessary for later use.

    DELETE FROM C_DATA_SERVER WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_DATA_SOURCE_DISABLEDOFFR_REL WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_EXECUTION_PLAN_FACTGROUP_REL WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_LOAD_PLAN_GENERATION_STEP WHERE EXECUTION_PLAN_ID IN (SELECT EXECUTION_PLAN_ID FROM C_EXECUTION_PLAN INCLUDING EXECUTION_PLAN_ID NOT IN (SELECT EXECUTION_PLAN_ID FROM C_EXECUTION_PLAN_FACTGROUP_REL));

    DELETE FROM C_EXECUTION_PLAN WHERE EXECUTION_PLAN_ID NOT IN (SELECT EXECUTION_PLAN_ID FROM C_EXECUTION_PLAN_FACTGROUP_REL);

    DELETE FROM C_SRC_DOMAIN_MEMBER_TL WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_SRC_DOMAIN_MEMBER WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_DOMAIN_MEMBER_MAP WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_PARAM_DW_VAL WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_PARAM_DW_VAL_AUDIT WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    DELETE FROM C_DATA_SOURCE WHERE DATASOURCE_NUM_ID =: Bind_DatasourceNumId;

    COMMIT;

    =========================================

    Concerning

    Sher ullah baig

  • I get a "Application JavaScript - reference error: XPCSafeJSObjectWrapper is not defined ' error every time I try to open a new tab.

    As the title suggests, whenever I open a new empty tab on Firefox 4 Beta, I get an error that says "Application JavaScript - reference error: XPCSafeJSObjectWrapper is not defined" this never happened to me before moving on to a new version of the beta of Firefox some time ago... is it possible to fix this?

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > themes).

    • Makes no changes on the start safe mode window.

    See:

  • System Center Configuration Manager in Windows Server 2012

    Hi all..

    I am novice in this community... and I would ask to System Center Configuration Manager that runs in Windows Server 2012...
    where can I get a full tutorial or reference on this subject? or someone has already made to configure the SCCM? Please share...

    Best regards...
    Chozy

    Hello

    SCCM is supported on the following forums.

    SCCM 2012 - general
     

    Concerning
  • cant stop/re-start or service configuration manager

    I have a Windows 7 32 bit with LabView2014... I used to re - start the service manager Setup OR after the computer starts, and my card data PCI-6024E acquisition would work... now can't stop Configuration Manager Service OR... try to stop and restart and get the Windows Services error: Error 1053: the service has failed to demand launch or control in a timely. Tried disabling McAfee, but no change, same error?

    Cleared out of the history of configuration or-Max and was able again to start and stop the service config.

  • application spoolsv.exe error.

    I have windows xp and I get the application spoolsv.exe error. It gives me the following message is displayed: the Instruction at 0x01fb0374 referenced memory at 0x1fed12c0 memory cannot be read. "I don't know what to do about this.  Help, please.  * E-mail address is removed from the privacy *

    Hello

    1 did you change on your computer?

    2. what service pack is installed on your computer?

    3. when exactly did you receive this error message?

    4. What is the brand and the number of the printer model do you use?

    Method 1:

    I suggest you try the steps suggested by Anthony - Support Engineer from the below mentioned link and check if it helps. These steps are for Windows Vista and should work as well on Windows XP.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_other-windows_update/spoolsvexe-application-error/0a7b0b15-77b3-4a8f-9465-dff8517c226e

    Method 2:

    You cannot print and you receive the error message "Spooler subsystem app has encountered a problem and needs to close."

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

    To do: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information on how to to back up and restore the registry,

    Method 3:

    I also suggest you to follow the link and check.

    Resources for the resolution of the printer in Windows XP problems

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

    See also:

    How to cancel printing or to delete a print job that is stuck in the print queue in Windows XP

    http://support.Microsoft.com/GP/pc_print_methoddstoptheprin

    Printer in Windows problems

    http://Windows.Microsoft.com/en-us/Windows/help/printer-problems-in-Windows

  • Application not found Error Messages

    Application not found error message Hi,.

    I recently had a virus on my Windows XP which I removed with Norton Internet Security.  The virus was called "XP Antispyware 2010".  After that I took it with the version of Norton Internet Security 2010 newly installed, I realize that I could not access the internet directly by clicking on the icon. a window will open asking for me to choose the program I want to use to open IE.  He would then run the program but nothing happens and it goes in circles asking to select a program to open, run, etc.

    Soon I noticed that clicking on other applications would result in an error message saying "Application not found".  I can't remove programs from my control panel because it is inaccessible, I can't open Microsoft Office programs directly unless I go to my computer.  I can't do a system recovery or restoration; the same messages will pop up. So basically, I can't make any changes to my laptop programs or access directly.  Help, please.

    I called Symantec who tried to help.  Norton Internet Security has been removed from my laptop, but I still have the same problems.  I was then told that this isn't a problem with Norton, but with Windows and the file sharing/accessibility.

    Help, please.

    Thank you

    Hi, Debbie.

    First of all, Norton is not the choice of the antivirus, I recommend, and I seriously doubt that he removed all, if any, elements of Xp Antispyware 2012. Their support is not much better that you will probably notice now.

    The errors that you receive are obviously the result of the malware.

    We will try to solve your problems one at a time.

    Using another computer, and then transfer the files to the computer in question via revovable storage like a disk or flash/thumb drive click HERE. Download the file. Extract the contents of the zip file.

    Click HERE and download another zip file, extract the contents again.

    Right-click on the files one at a time of course and choose "merge". Confirm guests. You should now be able to open your shortcuts and executable files.

    Click HERE. Download Malwarebytes. Update Malwarebytes and perform a scan.  Choose whether to remove anything found. Once completed click HERE and download Superantispyware Portable. Perform a quick scan again remove anything found.

  • What is "Error of Privoxy" Privoxy (oooooobo) fatal error: could not check the configuration file ':(error number 2) Config.Txt

    What is "Error of Privoxy" Privoxy (oooooobo) fatal error: could not check the configuration file ':(error number 2) Config.Txt.

    I always get this message in a long horizontal area on my desk top once I restart and turn on my computer.

    Thank you

    "Privoxy" is a 3rd party is no program not part of Windows XP.  You can go to
    Panel-> Add/Remove programs
    and remove this program.  If you still think that you need this program, try reinstalling it on Sourceforge
       <>http://sourceforge.NET/projects/ijbswa >

    HTH,
    JW

  • Dell order and integration Suite for System Center Configuration manager 4.0

    Hello

    I just installed the Dell order and SCCM integration suite.

    When you try to import a driver cab file to create a driver package, I get an error saying that the software could not recover present distribution points in the server.

    I tried to install the suite actually on a distribution point, but got the same thing.

    Any ideas?

    Thank you

    Close the Configuration Manager console.  Then re-open it by right-clicking the icon and select run as administrator.

Maybe you are looking for

  • How can I customize eprint email address

    Dear Support, I have eneabled e-mail service and receive eprint for eprint. But I want to change the name of address, how can we do this? Thanks Naren

  • Satellite Pro 460 does not start with the new drive in

    I recently received a Satellite Pro 460, but he had no hard drive.It starts great without a disc in but as soon as I put a new hard drive in it does not start. I thought that it might be again a hard drive, so I pulled out my old Toshiba Satellite wi

  • Anyone using nik collection with el capitan?

    I use the Nik Collection plugins all the time, with opening on my MBP of mid-2009 (running 10.9.5). Can someone tell me if they still function perfectly with El Capitan? Nik Collection support team explains that the plugins are not compatible, and th

  • The recovery DVDs Vista formats the whole HARD drive

    Hello I have a Toshibe laptop with 2 hard drives. My Question is:When I use the recovery, is that they are all deletet hard drive or only the Windows Partition?

  • Upgrade Vista on Equium A100-147

    Has anyone upgraded from Xp to Vista family premium on notebook titled or similar, my laptop barely meets the minimum requirements in terms of RAM and graphics (1 GB and 128 MB of memory) I ask because I'm not switching from Xp (which works fine) for