ESSO Error with IE 9 Compatibility Mode

Can anyone help? We are implementing eSSO with OIM 11.1.2.. When testing the system, we receive an error that Compatibility Mode should be turned off. We can turn off Compatibility mode and the user can access the site fine while they are logged in. But when we try to access the site from a locked screen, we get the following error. "The current compatibility setting is not supported. Disable Compatibility View before running this web page." If you click OK, the page loads fine.
We have applied GPO's to force the Compatibility Mode Off.

Hi JimmyWeise,
Can you try to download Microsoft SilverLight Browser Plugin and install into IE9. Then try to validate the same.

Similar Messages

  • Silverlight 5 WebBrowser Control - Is the SL5 WebBrowser control is set to work in IE7 mode only? I have a 3rd party web site i'm hosting and now they will not work with IE 7 Compatibility mode. Looks like this control can't detect I'm setup for IE 9.

    Silverlight 5 WebBrowser Control - Is the SL5 WebBrowser control is set to work in IE7 mode only? I have a 3rd party web site I'm hosting and now they will not work with IE 7 Compatibility mode. Looks like this control can't detect I'm setup for IE 9. I'm
    running IE 11 with registry hack for IE 9. I think the SL5 webbrowser control is set to work only in IE 7. can some one verify this or tell me how to set the WebBrowser control up to run either IE8, 9, 10 or 11? I have same issue with machines running IE 8
    and above. This Silverlight 5 application is running out of browser with the elevated privileges (hack) and at test certificates install in proper stores. This application has been running for 2.5 years. Vender switch on some changes a couple days ago that
    broke this application. Help!!

    Hi,
    It seems there is nothing to do with IE mode.
    Please make sure your link still can be accessed.
    The WebBrowser displays HTML content in applications running in a Silverlight 4 or later out-of-browser applications or in Silverlight 5 in-browser trusted applications only.
    For more infromation,please check link below:
    http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser(v=vs.95).aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Compatibility Mode Error when NOT in compatibility mode

    I have a Dell Studio XPS 16 running Windows 7 Ultimate (RTM, not RC). iTunes installs fine but I get this error when I open it:
    "iTunes.exe has been set to run in compatibility mode for an older version of Windows. For best results, turn off compatibility mode for iTUnes before you open it."
    Once you click OK, the program runs fine. But this still bothers me. Thoughts? Under the application's properties, compatibility mode is NOT selected.

    I'm getting the same thing, if you find a solution let me know!

  • Chart causing error 1009 when enabling compatibility mode in Flash Builder 4

    Hello.
    I'm trying to use the chart components in Flash Builder 4. I'm using Flex SDK 4, but had to turn on the "Flex 3 compatibility mode" for some off-topic reasons.
    I simply created a new application and copied the code from the DateTimeAxis class example: http://www.codigoactionscript.org/langref/as3/mx/charts/DateTimeAxis.html#includeExamplesS ummary
    When running the example, the following error is reported (sorry, it is in italian: it's simply the "null object" error):
    TypeError: Error #1009: Impossibile accedere a una proprietà o a un metodo di un riferimento oggetto null.
    at mx.charts.chartClasses::CartesianChart/updateMultipleAxesStyles()[E:\dev\4.0.0\frameworks \projects\datavisualization\src\mx\charts\chartClasses\CartesianChart.as:2598]
    at mx.charts.chartClasses::CartesianChart/commitProperties()[E:\dev\4.0.0\frameworks\project s\datavisualization\src\mx\charts\chartClasses\CartesianChart.as:1360]
    at mx.core::UIComponent/validateProperties()[E:\dev\4.0.0\frameworks\projects\framework\src\ mx\core\UIComponent.as:7772]
    at mx.managers::LayoutManager/validateProperties()[E:\dev\4.0.0\frameworks\projects\framewor k\src\mx\managers\LayoutManager.as:572]
    at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:700]
    at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.0.0\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1072]
    Is there a solution to this bug? We really need to use charts AND keep the Flex 3 compatibility mode.

    I use SDK 4.1 but I also get the error: (Flashbuilder 4.0.1 in Flex 3 compatibility mode)
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at mx.charts.chartClasses::CartesianChart/updateMultipleAxesStyles()[E:\dev\4.0.0\frameworks \projects\datavisualization\src\mx\charts\chartClasses\CartesianChart.as:2598]
        at mx.charts.chartClasses::CartesianChart/commitProperties()[E:\dev\4.0.0\frameworks\project s\datavisualization\src\mx\charts\chartClasses\CartesianChart.as:1360]
        at mx.core::UIComponent/validateProperties()[E:\dev\4.0.0\frameworks\projects\framework\src\ mx\core\UIComponent.as:7772]
        at mx.managers::LayoutManager/validateProperties()[E:\dev\4.0.0\frameworks\projects\framewor k\src\mx\managers\LayoutManager.as:572]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:700]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.0.0\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1072]
    So I guess it is not solved....
    regards,

  • Linker error with WS6U2 in compat=4 mode

    We have just upgraded from WS6U1 to WS6U2 on
    Solaris 2.8. I am getting a linker error when
    linking against libraries built with the 4.2 C++
    compiler. Everything works fine with WS6U1 compiler.
    The linker error is related to __rtaccess.
    Here is the test case:
    // t.h
    class class42 {
    public:
    virtual int getId();
    // t42.cc
    #include "t.h"
    int
    class42::getId()
    return 33;
    Build the library for t42.cc using 4.2 version of C++
    compiler as follows:
    /opt/SUNWspro/bin/CC -c -I. t42.cc
    /opt/SUNWspro/bin/CC -xar -o libt42.a t42.o
    // t62.cc
    #include "t.h"
    class class6u2 : public class42
    main()
    class42 *nt1 = new class6u2;
    class6u2 d1 = (class6u2 )(nt1);
    Build the above with WS6U2 compiler as follows:
    /opt/SUNWspro/bin/CC -compat=4 -features=rtti -c -I.
    t62.cc
    /opt/SUNWspro/bin/CC -compat=4 -features=rtti -o t62
    -I. t62.o -L. -lt42
    In my real case, I have a library built with 4.2 C++
    compiler. I do not have the souce code for it and
    cannot compile it with rtti. Also, I cannot avoid
    using rtti when compiling my code with WS6U2.
    I am not sure why the WS6U2 tools are looking for
    dynamic cast information in my test case when I am
    not using dynamic_cast or typeid. As I said above,
    the test case works fine with the WS6U1 version of
    compiler.
    Comparision of symbol table information for t62.o
    generated with WS6U1 and WS6U2 shows the following
    difference:
    ts62.o compiled with WS6U1:
    ... NOTY |WEAK |0 |UNDEF |__0FK__rtaccessR6Hclass42
    ts62.o compiled with WS6U2:
    ... NOTY |GLOB |0 |UNDEF |__0FK__rtaccessR6Hclass42
    Any help is appreciated.
    Thank You.
    Chandra Kota

    When you compile with -instances=explicit, no template instances will be generated other than the ones you explicitly ask for.
    This code requires instantiation of some rw_slist members that are not in the librwtools library, and the -instances=explicit option prevents them from being created implicitly.
    First, you need to add an explicit instantiation directive for the missing rw_slist destructor. When you do that, you will find other functions, some from the C++ standard library, that need explicit instantiation.
    Using any of the non-default template compilation models usually requires considerable trial and error to generate all of the needed instances without duplicating any of them.
    For more discussion of the -instances=xxx options and their tradeoffs, please see the C++ User's Guide chapters on using templates.
    - Rose

  • BIC mapping error with Text as trasnfer mode & File type

    Hi guys,
    I am using ftp adapter in my sender channel and also using BIC mapping in the sender side.
    When i specify "Binary" as my transfer mode as well as File type, It is working fine.
    When i specify "Text" as my transfer mode as well as File type, i am getting the below BIC mapping error. According to client requirement i am supposed to use Binary. Can anyone help me on this.
    SEEBURGER BICXIADAPTER --- CONVERSION ERROR ---Error: [Error:ID=2023;LEVEL=1] InhouseDocReader readNextSegment(): offset[12(read Segment : BILLINGHEADER)]: caught ReadingException: only whitespaces as fill characters allowed!, Trace: [com.seeburger.jucon.dochandler.util.WrongFormatException: only whitespaces as fill characters allowed! at com.seeburger.jucon.dochandler.inhousereader.InhouseSegmentReader.readNextSegment(InhouseSegmentReader.java:384) at com.seeburger.jucon.dochandler.inhousereader.InhouseSegmentReader.readNextSegment(InhouseSegmentReader.java:193) at com.seeburger.jucon.dochandler.InhouseDocReader.readNextSegment(InhouseDocReader.java:2399) at com.seeburger.jucon.dochandler.InhouseDocReader.moveNext(InhouseDocReader.java:1818) at com.seeburger.jucon.mapping.E2X_DT_BILLINGDATA_2.main(E2X_DT_BILLINGDATA_2.java:991) at com.seeburger.jucon.mapping.Mapping.run(Mapping.java:2313) at com.seeburger.jucon.seebicapi.BICMapping.runMapping(BICMapping.java:1636) at com.seeburger.jucon.seebicapi.BICMapping.run(BICMapping.java:2386) at com.seeburger.jucon.seebicapi.BICMapping.startSyncMapping(BICMapping.java:1343) at com.seeburger.bicxiadapter.CCIInteraction.convert(CCIInteraction.java:1167) at com.seeburger.bicxiadapter.CCIInteraction.convertCalledFromModule(CCIInteraction.java:873) at com.seeburger.bicxiadapter.CCIInteraction.execute(CCIInteraction.java:294) at com.seeburger.bicxiadapter.module.CallBicXIRaBean.process(CallBicXIRaBean.java:363) at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:102) at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:292) at com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0_0.process(ModuleProcessorLocalLocalObjectImpl0_0.java:103) at com.sap.aii.adapter.file.File2XI.send(File2XI.java:3672) at com.sap.aii.adapter.file.File2XI.processFtpList(File2XI.java:2408) at com.sap.aii.adapter.file.File2XI.invoke(File2XI.java:630) at com.sap.aii.af.service.scheduler.JobBroker$Worker.run(JobBroker.java:513) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(AccessController.java:219) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) ] DESCRIPTION: InhouseDocReader causes an ReadingException while trying to read the next segment of current file, abort

    Hi Pratichi,
    in my point of view having text as the file type,the file will be having characters that are used for Segment separators or Element separators ( like space ) in the standard EDI format message.  Hence it is throwing exception in X2E mapping. It is just my point of view but not sure.
    Thanks,
    Shabbir.

  • PlatinGUI 7.10 Error with GUIScripting in APPLET-mode

    Hello !
    In a manual mode recording and playing of a script works.
    By transfer of a script through parameters of an applet there is mistake Java:
    ############################# ERROR #############################
    19.12. 09:15:46.312 ERROR: GuiJavaScriptEventHandler.processGlobalScript() no global script handler available.
    ############################# ERROR #############################
    ############################# ERROR #############################
    19.12. 09:15:46.328 ERROR: Exception occured: java.lang.reflect.InvocationTargetException
    19.12. 09:15:46.328 ERROR: java.lang.reflect.InvocationTargetException
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at java.lang.reflect.Method.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:155)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:139)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2.initImpl(GuiAppletBase2.java:372)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2$AppletInit.run(GuiAppletBase2.java:456)
    19.12. 09:15:46.328 ERROR:  caused by : java.lang.NullPointerException
    19.12. 09:15:46.328 ERROR: java.lang.NullPointerException
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.scripting.javaScript.GuiJavaScriptEventHandler.processGlobalScript(GuiJavaScriptEventHandler.java:96)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.connection.GuiConnection.processScript(GuiConnection.java:939)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.logon.GuiImpl.processPlatinScript(GuiImpl.java:207)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.base.logon.GuiImpl.init(GuiImpl.java:151)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at java.lang.reflect.Method.invoke(Unknown Source)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:155)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.micro.Dynamic.callMethod(Dynamic.java:139)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2.initImpl(GuiAppletBase2.java:372)
    19.12. 09:15:46.328 ERROR:      at com.sap.platin.GuiAppletBase2$AppletInit.run(GuiAppletBase2.java:456)
    ############################# ERROR #############################

    // user configurable part starts here
    var pluginurl         = '';
    var scriptable     = 'false';
    var codebase         = '.';
    var jnlp           = 'platin.jnlp';
    var frog           = 'true';
    var trace          = '';
    var tracefile      = '';
    var connectionData = 'conn=/H/SAPRouterIP/H/SAPHostIP/S/3200&clnt=400&user=username&pass=userpass';
    var mscript = "// ---------------------------------------------------------------------------\n\r"+
                   "// modus 0\n\r"+
                   "// event dynpro SAPLSMTR_NAVIGATION.0100\n\r"+
                   "// event title 'SAP Easy Access'\n\r"+
                   "window.resizeWorkingPane(181,26,true);\n\r"+
                   "window.findById('tbar[0]/okcd').text = '/nfb03';\n\r"+
                   "window.sendVKey(0);\n\r"+
                   "// ---------------------------------------------------------------------------\n\r"+
                   "// modus 0\n\r"+
                   "// event dynpro SAPMF05L.0100\n\r"+
                   "// event title 'Document view: First screen'\n\r"+
                   "userarea.findById('txtRF05L-BELNR').setFocus();\n\r"+
                   "userarea.findById('txtRF05L-BELNR').caretPosition = 0;\n\r";
    // var mscript = 'C:\Users\Victor\scripts\test1.js';
    // user configurable part ends here
    // verify if Java Plugin as control in Internet Explorer or Java Plugin for Netscape or native JRE of browser must be used
    var jre = 'control';
    if(navigator.platform.indexOf("Mac") > -1)
       jre = 'native';
    else if (navigator.appName.indexOf("Netscape") != -1)
       jre = 'plugin';
    document.open();
    switch (jre)
    case 'control':
        document.writeln('<OBJECT CLASSID  = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"                               ');
        document.writeln('    ID       = "PlatinGUI"                                                                    ');
        document.writeln('    WIDTH    = "100%"                                                 ');
        document.writeln('    HEIGHT   = "100%"                                                 ');
        document.writeln('    BORDER   = 0>                                                      ');
        document.writeln('<PARAM NAME = "TYPE"           VALUE = "application/x-java-applet;jpi-version=1.5.0">         ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable,'">                                ');
        document.writeln('<PARAM NAME = "code"           VALUE = "com.sap.platin.GuiApplet2">                   ');
        document.writeln('<PARAM NAME = "codebase"       VALUE = "', codebase,'">                             ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp,'">                             ');
        document.writeln('<PARAM NAME = "archive"        VALUE = "GuiStartS.jar">                             ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog,'">                             ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace,'">                             ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile,'">                             ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData,'">                               '); 
        document.writeln('<PARAM NAME = "platinScript"   VALUE = "', mscript,'">                               '); 
        document.writeln('                                                                ');
        document.writeln('This page requires a Sun Java Plugin 1.5 and a SAPGUI for Java to view.                      ');
        document.writeln('                                                                ');
        document.writeln('</OBJECT>                                                           ');
        break;
    case 'plugin':
        document.writeln('<EMBED TYPE        = "application/x-java-applet;version=1.5"                         ');
        document.writeln('    PLUGINURL      = "', pluginurl,'"                                          ');     
        document.writeln('    WIDTH          = "100%"                                            ');                                        
        document.writeln('    HEIGHT         = "100%"                                             ');
        document.writeln('    ALIGN          = "BASELINE"                                                ');
        document.writeln('    code           = "com.sap.platin.GuiApplet2"                                      ');
        document.writeln('    codebase       = "', codebase,'"                                        ');
        document.writeln('    jnlp           = "', jnlp,'"                                                ');
        document.writeln('    archive        = "GuiStartS.jar"                                       ');
        document.writeln('    frog           = "', frog,'"                                            ');
        document.writeln('    trace          = "', trace,'"                                            ');
        document.writeln('    tracefile      = "', tracefile,'"                                       ');
        document.writeln('    connectionData = "', connectionData,'"                                        ');
        document.writeln('    platinScript   = "', mscript,'"                                        ');
        document.writeln(' <NOEMBED>                                                      ');
        document.writeln(' </NOEMBED>                                                      ');
        document.writeln(' </EMBED>                                                              ');
        break;
    case 'native': 
        document.writeln('<APPLET CODEBASE  = "', codebase,'"                                                           ');
        document.writeln('        ARCHIVE   = "GuiStartS.jar"                                                           ');
        document.writeln('        CODE      = "com.sap.platin.GuiApplet2"                                               ');
        document.writeln('        WIDTH     = "100%"                                                                    ');
        document.writeln('        HEIGHT    = "100%">                                                                   ');
        document.writeln('<PARAM NAME = "SCRIPTABLE"     VALUE = "', scriptable, '">                                    ');
        document.writeln('<PARAM NAME = "jnlp"           VALUE = "', jnlp, '">                                          ');
        document.writeln('<PARAM NAME = "frog"           VALUE = "', frog, '">                                          ');
        document.writeln('<PARAM NAME = "trace"          VALUE = "', trace, '">                                         ');
        document.writeln('<PARAM NAME = "tracefile"      VALUE = "', tracefile, '">                                     ');
        document.writeln('<PARAM NAME = "connectionData" VALUE = "', connectionData, '">                                ');
        document.writeln('<PARAM NAME = "platinScript"   VALUE = "', mscript, '">                                ');
        document.writeln('</APPLET>                                                                                ');
        break;
    document.close();

  • I cannot sync Outlook 2010 to iphone unless I run in compatibility mode?

    Since upgrading to iTunes 10. (curently at 10.5.3.3), my iphone has not synced properly unless I run in Windows XP service pack 2 compatibility mode.
    I have tried all of the suggestions on the boards and still have the problem. Is there anyone at Apple who can solve this?
    See 38 pages of https://discussions.apple.com/message/17494628#17494628 , which I used along with the Apple Support FAQ's. However, problem is still the same.
    Any new ideas anyone?
    Anthony

    I've now got iTunes 11.0.0.163 and this issue is still there. I can only sync with outlook in compatibility mode, which suggest there is a problem somewhere with the Win 7 MS files. I have done everything on these forums to find a efix. I get no error messages it's just the calendar and contacts do not get updated.
    ANY HELP ???

  • Linking Errors with rwtools7.so in C++ v6.2.p2

    Hi ,
    We are migrating our application from c++ 4.2 to 6.2.p2 and Sol 2.6 to Sol 8.
    we are using the option -compat = 4 for backward compatibility. and used -library=rwtools7 and
    ' -lrwtool' is also a prameter while liking ..
    while linking we are getting the below erros ...
    ild: (undefined symbol) __rtaccess(streambuf&) -- referenced in /sbcimp/run/tp/sun/SUNWspro/v6.2.p2/lib/rw7/CC4/librwtool.so
    ild: (undefined symbol) __rtaccess(ios&) -- referenced in /sbcimp/run/tp/sun/SUNWspro/v6.2.p2/lib/rw7/CC4/librwtool.so
    ild: (undefined symbol) type_info::__vtbl -- referenced in /sbcimp/run/tp/sun/SUNWspro/v6.2.p2/lib/rw7/CC4/librwtool.so
    [Hint: try checking whether the first non-inlined, non-pure virtual function of class type_info is defined]
    ild: (undefined symbol) __rtaccess(unsafe_ios&) -- referenced in /sbcimp/run/tp/sun/SUNWspro/v6.2.p2/lib/rw7/CC4/librwtool.so
    ild: (undefined symbol) __RT_CLASS::__vtbl -- referenced in the text segment of sun5/CASmfFile.o
    [Hint: try checking whether the first non-inlined, non-pure virtual function of class __RT_CLASS is defined]
    ild: (undefined symbol) __RT_CLASS::__vtbl -- referenced in the text segment of sun5/DtObj.o
    [Hint: try checking whether the first non-inlined, non-pure virtual function of class __RT_CLASS is defined]
    ild: (undefined symbol) __RT_CLASS::__vtbl -- referenced in the text segment of sun5/CrestMsgRcvHandler.o
    [Hint: try checking whether the first non-inlined, non-pure virtual function of class __RT_CLASS is defined]
    ild: (undefined symbol) __RT_CLASS::__vtbl -- referenced in the text segment of sun5/CrestTimMain.o
    [Hint: try checking whether the first non-inlined, non-pure virtual function of class __RT_CLASS is defined]
    could someone please guide us , how to get rid off this problem
    Thank you
    Vara

    As to the migration, two main points:
    - Use the "-compat" option on every CC command, compiling and linking which you already did.
    - Any "Anachronism" warnings produced by the 4.2 compiler are now errors. The Migration Guide has a complete list, along with explanations of how to fix the code.
    With those caveats, any code that worked with C++ 4.2 will work the same way with FD6U2 in compat mode.
    Rose

  • Some compatibility modes missing for certain exe's ??

    Hi,
    I found that I can get the Xerox Phaser 5500 postscript driver not to crash in Vista x64 by flagging x2jobtAO.exe to use Windows 2003 Server Sp1 compatibility mode.  However in Windows 7 x64 I can't do that but I can for other executables.  Only
    Windows Server 2008 Sp1, Vista gold, Sp1, Sp2 modes are available.  Is there a way to get back Windows 95, 98/ME, XP, 2003 modes???

    Hi,
    I would like to suggest you perform the following steps to troubleshoot this issue.
    1.   
    Navigate to [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers].
    2.   
    Create a new String Value in the right pane, and name it with the full path of the program’s exe file.
    3.   
    Modify the full path of the program’s exe file with the following Compatibility Mode Date value.
    Windows 95 Mode 
    WIN95
    Windows 98 / Windows Me Mode 
    WIN98
    Windows NT 4.0 (Service Pack 5) Mode 
    NT4SP5
    Windows 2000 
    WIN2000
    Windows XP (Service Pack 2) Mode 
    WINXPSP2
    Windows Server 2003 (Service Pack 1) 
    WINSRV03SP1
    Does it work?
    Regards,
    Arthur Li
    TechNet Subscriber Support
    in forum
    If you have any feedback on our support, please contact
    [email protected]
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • REP MSTP Compatibility mode on Cisco 4500 ????

    Hi all.
    I having issue when deploy REP bethween Cisco 4500 Sup 7E/6LE with ASR 9000.
    Follow the guide http://www.2mul.com/en/US/docs/routers/asr9000/software/asr9k_r4.0/lxvpn/configuration/guide/lesc40book.pdf , page 319 then ASR 9000 work at REP Access Gateway is supported when the access device (cisco 4500) interfaces that connect to the gateway devices are configured with REP MSTP Compatibility mode.
    How to config REP MSTP Compatibility mode on interface of Cisco 4500 ??????????
    How to config REP Access Gateway on ASR 9000 ???????????
    Please help!
    Thanks.

    Tran,
    you can configure REP-AG on the A9k as follows:
    spanning-tree repag
    int g0/0/0/0.1
    int g0/0/0/0.1 l2trans
    encap untagged
    Note that REP-AG is not full rep, we only trigger on the TCN from the rep ring and invoke a mac flush then.
    Because the 9k needs to be at the head of the ring you need to configure the following on your peer:
    rep edge no-neighbor
    and the compatibility mode is done via:
    rep stcn stp
    Finally, if the 2 endpoints of the rep ring are on the same device, you may want to put the encap untagged EFP's into an XCON or BD, if the 9k's are remote a PW to make sure that you can transport the TCN's from one ring point to the other if need be in specific design scenarios.
    xander
    sr Tech Lead ASR9000
    CCIE

  • TS3299 opticals drive disappeared in my Windows 8 computer.   After  1-1/2 on the phone this was corrected but now my Itunes don't  recognize the drive.  Error message stating registry errors.  I tried   running in windows 7 compatibility mode that don't

    Purchased a new Ipad for my wife and integrated it with my windows 7 system and Itunes and made it through.  Was able to sync and bring pictures, contacts and bookmarks over.  Not to say it was easy because I never used any Apple product except my Ipad and Itunes.  Really enjoyed using the Ipad and was thinking of getting a new Iphone this week being my contract is up.
    Then the trouble began I bought a new windows 8 system after having trouble with my old hard drive.  I have finances and Tax programs I use that I thought would be easier to continue using windows rather than trying integrating past years Quicken & Turbo Tax information into a new Apple system.
    Well now I'm sorry I bought the new windows 8 system.  First all my optical drives disappeared when installing itunes.  After spending 1-1/2 on the phone with a service rep and finally was able to see my optical drive I thought everything was OK.  Then more trouble.  When I open Itunes I receive an error message that says my Itunes no longer recognizes my optical drive try reinstalling.  I reinstalled 10 times and tried compatibility mode and the end result is my Itunes no longer could burn Cd's.  I had this problem if I'm not mistaken in the past with ME system back many years ago.  And did not want to go through this again but here I am disgusted once again.

    I finally got my nano working (no thanks to Apple, hmpf!) and it's running fine with 1.0.2 now. For those with similiar problems try this:
    +For Mac, you need to:+
    +1. Downgrade to firmware 1.0.1 by deleting the files iPod_26.1.0.2.ipsw and iPod_26.1.0.2.ipsw.signature (are in the folder iPod software updates somewhere on the harddisk)+
    +2. under Settings in iTunes you have to disable automatic download of updates, then restart iTunes.+
    +3. Enter Disc Mode by holding menu & select for about ten seconds, then pressing play/pause & select for another ten seconds.+
    +4. reconnect your nano to Reset, and when iTunes prompts to update, just don't allow it to look for updates and then reset with fw 1.0.1.+
    I'm supriced Apple support didn't tell me about this? This worked great and is a very fast fix. I can't believe Apple got me to reinstall the whole OS, which didn't even solve it btw. USB 1, blah! Yeah right..
    Message was edited by: swingindh

  • Windows 8.1 and VS2012 SDK get error "Windows Program Compatibility mode is on. Turn it off and then try Setup again."

    When trying to install VS2012 SDK on Windows 8.1 get the error "Windows Program Compatibility mode is on. Turn it off and then try Setup again."
    See my blog C# Bits | Twitter @sjnaughton Always seeking an elegant solution.

    Rick, Have you had any success with this? I'm also trying to run the tfs_VssUpgrade.exe tool on my Windows 8.1 machine and getting the same exception. Greatly appreciate any insight if you were able to get past this issue! Thanks, Steve
    Same issue here.
    This MS connect thread
    is interesting however.
    Posted by Microsoft  on 9/19/2013 at 2:54 PM                                            
    Hello Alxandr,
    Thank you for taking the time to submit this issue to Connect. This is a known issue with Windows 8.1 RTM and it will be addressed in a future update of Windows 8.1. In the meantime, you can typically rename the EXE to get it to work correctly.

  • IE8 compatibility mode error?

    Greetings,
    I built this page a few weeks back: http://www.brightwork.com/overview and recently I've been told there's a bug where all the text on the first page wont display. It merely appears as Undefined. From other errors I've weeded out I know that Undefined means that the text files those batches of text are loading from are not being loaded properly, however my preloader shouldn't allow it to start without those files being loaded.
    I have been unable to repeat the bug, but apperantly it has something to do with having Compatibility Mode disabled. Can anyone who goes to that link tell me if it works for them, and if you have any ideas why it might be breaking those other times please tell me!
    Cheers

    Hi,
    do you have a solution for the problem? We have actually a similar problem with locked IE8 when using a zoom factor > 100% (it's a customer WD4A).
    Regards,
    Steffen Brauner
    Edited by: Steffen Brauner on Jul 7, 2011 6:54 AM
    I found the notes 1534606+1534610 that solved my prob.
    Edited by: Steffen Brauner on Jul 7, 2011 6:55 AM

  • Internet Explorer and compatibility mode error

    Whilst using DMXZone's HTML5 video player, it throws up a problem on some PC's stating there is an error and states to run in compatibility mode.  Is there a line of code I can insert into the page that forces compatibilty mode to work?  The client insists that they don't have to explain to every customer what to do.
    Thanks

    'If the problem is with IE8 or below, this is because they do not support html5, the html5 shiv/js file if you are using one, only allows css styles to be applied and gives no other functionality.
    PZ'
    OK - thanks for looking into it for me.

Maybe you are looking for