Modify Context Menu BI7.0

Hi,
I want to modify the context menu in the WAD, so that it includes SAVE rather than having this attached to a button.
I know I can modify the context menu in BW3.5 by using SAPBWAddToMenu and a combination of javascript and html.
I know in BI7.01 (EHP1) the option for SAVE, REFRESH etc is already in the context menu and it can be modified by using SAPbi_AddToMenu.
But in BI7.0, there is no help for modifying the context menu using javascript, this section doesn't exist.
We are currently on BI7.0 SP23, I have tried both SAPBWAddToMenu and SAPbi_AddToMenu, but both give errors in the webtemplate and the context menu does not work at all.  It seems as though from BW3.5 to BI7.01 the option has been disabled.
Has anybody managed to modify the context menu of the WAD in BI7.0?
Thanks
DJL

Did you have a look at this help-sap-com entry?
[http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/e073a356e32972e10000000a42189b/frameset.htm]
Reading your answer again, I see that you refer to BI 7.00 without any EHP.
So you might want to try using your own context menu as per [http://help.sap.com/saphelp_nw70/helpdata/en/43/152fa54b315a38e10000000a422035/frameset.htm] .
Edited by: Frank Besler on Aug 10, 2011 11:08 AM

Similar Messages

  • How to add/delete items in right click context menu when opening a new link FF17 osx... 6 instances of open link in new identity profile have appeared

    The menu items appeared without any idea why, they had not been there before. I have macbook with os 10.6.8 I had been trying to get pdf to work in firefox, so had followed a recipe suggesting enabling the pdf reader part of firefox. Required making 2 adjustments to the about:config. One disabling the browser.preferences.incontent and would changing default of pdfjs. Pdf still won't display, but don't know if what I did is related. Now I am trying to just find out how the menu gets modified at all, and whether I can do so as a user.

    A little research revealed addons can add items to context menu, in this case multifox adds option to open tab in new profile for multiple gmail etc logins. I had updated addons earlier, think that triggered it. So now I know why and what it does. The problem is why 6 times listed (instead of just one)... it also varies, sometimes the context menu will have one instance... and have seen as many as 9. Not sure why it varies, but would still also like to know how to modify context menu. Could just be a bug in multifox with FF17 I suppose. I will disable multifox and see if problem goes away.

  • Disable default context menu on textfield

    By default the JavaFX TextField has a built in ContextMenu with 'undo', 'copy', 'cut' etc. options.
    I want to replace this ContextMenu with a custom context menu make by me. Could I can do it?

    > By default the JavaFX TextField has a built in ContextMenu with 'undo', 'copy', 'cut' etc. options.
    Really?  Are you sure?  I don't get such a menu in TextFields on a Mac with JavaFX 8.
    Maybe you mean input type text in a WebView?
    I think the answer you are looking for is => webview.setContextMenuDisabled(true);
    See also java - Modify context menu in JavaFX WebView - Stack Overflow.
    And this open feature request:
    RT-20306 Customizable Popup menu in WebView

  • Modifying Call Context Menu

    Can anyone let me know if there's a possibility to modify the Call context menu shown in the example below ?
    We just need to add:
    "Gizmo5 call" that may goes through WiFi or 3G
    "Skype" that goes through WiFi or 3G
    "SIP1" that goes through WiFi to SIP provider  just like "Internet call"
    "Calling card" that goes through prepaid calling card provider, the call scheme can be <access number>p<PIN>p<destination number> (p is for pause)
    Hope's it's possible.

    Hi Frank,
    thanks for the kind response..
    Yeah, i had tried that out too. But in this case the context menu that i'm defining doesn't seem to be picked up by af:tree since i'm only able to see the default context menu of the browser.
    This is strange since even the default context menu provided by af:tree doen't appear.
    Do we need to do something else also for that...
    By the way i assume that you were talking about contexMenu facet of af:tree only.
    I am inlinning the jspx code snippet for convinient.
    Can you please suggest something....
    <af:panelFormLayout customizationId="panelFormLayout1">
    <f:facet name="footer">
    <af:group>
    <af:commandButton text="commandButton 1"
    customizationId="commandButton1"/>
    <af:image source="http://www.google.com/intl/en_ALL/images/logo.gif"
    shortDesc="THE logo" customizationId="image1"/>
    <af:tree value="#{myBean.model}" var="model"
    rowSelection="single" initiallyExpanded="true"
    id="structureNavigatorTree" inlineStyle="padding:2px"
    contentDelivery="immediate"
    customizationId="amitKumarGupta">
    <f:facet name="nodeStamp">
    <af:panelGroupLayout>
    <af:outputText value="#{model.name}"/>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="contextMenu">
    <af:popup id="yesItsgeneral">
    <af:menu id="fdssd" text="menu 1">
    <af:commandMenuItem id="micrsfdg" text="Expand All2"/>
    </af:menu>
    </af:popup>
    </f:facet>
    </af:tree>
    </af:group>
    </f:facet>
    </af:panelFormLayout>
    </cust:panelCustomizable>
    <f:facet name="editor">
    <pe:pageEditorPanel/>
    </f:facet>
    </pe:pageCustomizable>
    </af:form>
    </af:document>
    Hi,
    turns out the solution is easy. Just use the context
    menu facet, similar to below
    <f:facet name="contextMenu">
    <af:popup>
    <af:menu text="menu 1">
    <af:commandMenuItem text="Expand
    All2"/>
    </af:menu>
    /af:popup>
    </f:facet>
    custom menu to the existing set of menus
    Frank

  • Customize Context Menu item in BI7

    Hi All,
    The CONTEXT_MENU item in BI7 only allows us to select/unselect items we want to display on the context menu. But, I want to add a customized item in there and it was possible BW3.5. Is this still possible in BI7?
    Thanks.

    I'm not sure the exact SP/Patch level (maybe it's not until EP1?) that you have to be on, but SAP finally supplied a way to do this.  If you are on an older SP or patch level, you can do something similar that I am having to do until you get to the right patch level/enhancement pack.  Declare this function in a script web item in your template:
    function sapbi_buildContextMenu(urpopumenuname, context, index) {
       var lix= 0;
       var oPop = sapbi_cmCreateMenu(index);
    // **** Begin of custom code ****
       var command = new sapbi_Command("SAVE_PERSONALIZATION"); // Bogus filler command entry, never gets fired
       var entry = sapbi_cmCreateEntry("Define this Report", index, false,false,null,command);
       entry.POPUPMENUITEMSELECT='me.show_entry();return false';
       entry.IsLink=0;
       mf_PopupMenu_addItem(oPop, entry);
    // **** End of custom code ****
       lix = lix + sapbi_cmAddBack(oPop, context, index);
       lix = lix + sapbi_cmAddRri(oPop, context, index);
       lix = lix + sapbi_cmAddFilter(oPop, context, index);
       lix = lix + sapbi_cmAddChangeDrillDown(oPop, context, index);
       lix = lix + sapbi_cmAddHierarchy(oPop, context, index);
       sapbi_cmAddExportPDF(oPop, context, index, lix);
       sapbi_cmAddBroadcasting(oPop, context, index);
       sapbi_cmAddSave(oPop, context, index);
       sapbi_cmAddPersonalize(oPop, context, index);
       sapbi_cmAddProperties(oPop, context, index);
       sapbi_cmAddCalculations(oPop, context, index);
       sapbi_cmAddDocuments(oPop, context, index);
       sapbi_cmAddExceptions(oPop, context, index);
       sapbi_cmAddSorting(oPop, context, index);
       mf_PopupMenu_apply(oPop);
       return oPop;
    Below is an explanation of what the code does:
    Create a new sapbi_Command object for a new entry, use SAVE_PERSONALIZATION even though we are going to override it with our own JS onclick.
    var command = new sapbi_Command("SAVE_PERSONALIZATION");
    Create the actual entry (note the last parameter being passed is the filler command we created above)
    var entry = sapbi_cmCreateEntry("Define this Report", index, false,false,null,command);
    Set your onclick event javascript.  Make sure that you prepend "me." to your function name.  (in this case, it's show_entry();  The me. is necessary I think because the context menu is technically an IFRAME so me. refers back to the parent page where your javascript code will be sitting.
    entry.POPUPMENUITEMSELECT='me.show_entry();return false';
    Define entry as not being a link.
    entry.IsLink=0;
    Add the new entry to the context menu
    mf_PopupMenu_addItem(oPop, entry);

  • How do I modify the file right-click context menu to add "creat shortcut"?

    I have just chosen Mozilla as my browser and want to add shortcuts to files by using the right-click context menu, but there is no "create shortcut" choice displayed.

    Could you describe where you're clicking, exactly? Are you clicking on a web page, or clicking a link on a web page? If you are using Firefox to browse files on your hard drive, you're probably better off using Windows Explorer to do that since Firefox doesn't have all the functions of Windows.

  • File context menu disappears (in shared folder, if some files in it are bein modified)

    Hi!
    The problem is:
    When I'm in Windows Explorer in shared folder on network drive (SMB), trying to open context menu for any file in this folder, it will show and then disappear in ~1 second, so I can't have time to select item in context menu, especially in any sub-menu!
    It only happens if:
    1) some (another) file is downloading in that moment to THIS shared foolder
    2) some (another) file is editing by another user in that moment, or some log is writing by some software in that folder,
    or archive is unpacking in that folder
    and so on..

    Hi,
    I haven't heard others have this kind of issue.
    Please remove that network drive completely, and then follow below guide to re-map it for test:
    Connecting to a Samba Directory: Windows 8
    https://oit-nb.rutgers.edu/documentation/remote-drive-mapping-samba/connecting-samba-directory-windows-8
    Make sure the folder permission is the same as Windows XP.
    Karen Hu
    TechNet Community Support

  • How to modify the list item drop down context menu in SharePoint 2010

    Hi All,
    I have a requirement to add my name in the list item drop down context menu, already "Assigned ticket" option is available in the context menu and some names are available in the assigned ticket option. but i can't able to add my name in this options.
    Attached screenshot for reference. Thanks in advance for your assistance!
    Thanks
    Arun Prakash

    Do you know how the currently listed values got there in the first place? Some sort of custom code or action? Some background information would help. There is obviously a source feeding it from somewhere, but it's impossible for us to tell you exactly
    what just by looking at your scribbled-over screenshot
    Check WSPs that are deployed to the farm. Check for any non-OOTB site features that are turned on...

  • Modifying default context menu of  af:tree

    Hi all,
    this one is urgent..
    I am having a af:tree component on a jspx web page.
    I know that we can change the context menu (the box that pops out when right click happens on any of its node) by setting contextMenuId of the af:tree which points to a af:popup having af:menu. When we dont set contextMenuId; we get a default context menu displaying options to expand/collapse other nodes. When we set it to some af:popup component we get a different context menu.
    My requirment is that instead of getting a new context menu, i must be adding up my new options to the already existing default options in the context menu. So its a kind of extension of default context menu available.
    So can anybody help me.... i am a newbie so pls forgive me if i'm wrong somewhere..
    Thanks a lot..

    Hi Frank,
    thanks for the kind response..
    Yeah, i had tried that out too. But in this case the context menu that i'm defining doesn't seem to be picked up by af:tree since i'm only able to see the default context menu of the browser.
    This is strange since even the default context menu provided by af:tree doen't appear.
    Do we need to do something else also for that...
    By the way i assume that you were talking about contexMenu facet of af:tree only.
    I am inlinning the jspx code snippet for convinient.
    Can you please suggest something....
    <af:panelFormLayout customizationId="panelFormLayout1">
    <f:facet name="footer">
    <af:group>
    <af:commandButton text="commandButton 1"
    customizationId="commandButton1"/>
    <af:image source="http://www.google.com/intl/en_ALL/images/logo.gif"
    shortDesc="THE logo" customizationId="image1"/>
    <af:tree value="#{myBean.model}" var="model"
    rowSelection="single" initiallyExpanded="true"
    id="structureNavigatorTree" inlineStyle="padding:2px"
    contentDelivery="immediate"
    customizationId="amitKumarGupta">
    <f:facet name="nodeStamp">
    <af:panelGroupLayout>
    <af:outputText value="#{model.name}"/>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="contextMenu">
    <af:popup id="yesItsgeneral">
    <af:menu id="fdssd" text="menu 1">
    <af:commandMenuItem id="micrsfdg" text="Expand All2"/>
    </af:menu>
    </af:popup>
    </f:facet>
    </af:tree>
    </af:group>
    </f:facet>
    </af:panelFormLayout>
    </cust:panelCustomizable>
    <f:facet name="editor">
    <pe:pageEditorPanel/>
    </f:facet>
    </pe:pageCustomizable>
    </af:form>
    </af:document>
    Hi,
    turns out the solution is easy. Just use the context
    menu facet, similar to below
    <f:facet name="contextMenu">
    <af:popup>
    <af:menu text="menu 1">
    <af:commandMenuItem text="Expand
    All2"/>
    </af:menu>
    /af:popup>
    </f:facet>
    custom menu to the existing set of menus
    Frank

  • Why did Word on Office 2013 REMOVE Auto Correct from Right-Click Context Menu??

    Hi Microsoft -
    I normally don't rant, but this is a killer feature removal, and the reason given is for aesthetics - 'Removal of clutter" is how it's worded here:
    [Changes in Office 2013]
    http://technet.microsoft.com/en-us/library/cc178954(en-us).aspx
    I copy n pasted below the operative row from the linked TechNet page as to the reason WHY this critical (and very popular feature) has been removed from Microsoft Office 2013 Word's context-menu: LESS CLUTTER
    And your answer is ambiguous and doesn't solve the issue that you created to make things prettier: "Click the AutoCorrect Options button" Then what?  ADD EACH WORD MANUALLY? 
    Please advise ALL OF US that want this feature back how to have our commonly misspelled words fixed and added automatically to the dictionary.  If I am missing this in a major way somehow, I apologize completely and will issue a public apology via any
    social media platform of your choice.  If it really is gone, and I have to manually add the entries into a buried table 6-clicks deep, then I will issue a public excoriation of this feature on as many social platforms of my choice.
    Sincerely,
    Maximus Mednick
    COPY N PASTE AS FOLLOWS:
    =-=-=-=-=-=-=-=
    Contents of spelling error context menu
                    Word and WordMail within Outlook
    Modifying the feature
    Auto-Correct and certain formatting tools are no longer available from the spelling error context menu.
    To make Word 2013 cleaner and less cluttered, we removed AutoCorrect and certain formatting tools from the spelling error context menu. The features are still available in Word 2013 through other entry points within the Word user interface.
    Less clutter in the spelling error context menu. This enables users to find popular commands more quickly. In addition, the spelling error context menu now fits better on the screen.
    To change AutoCorrect options, do the following:
    Choose File -> Options -> Proofing
    Choose the AutoCorrect Options button.
    =-=-=-=-=-=-=-=
    Thanks, MAXIMUS

    Microsoft used to be about allowing users to customize the OS and apps however they want. This was one reason I have always preferred Windows over Mac. There are 5 ways to do any one thing, and you can customize it to do it however you want. It's all about
    user choice. Please don't go the way of Apple and force users into the way that you *think* we should do things. 
    <rant>
    While I whole heartedly agree with this suggestion, if you look through this blog about the design decisions that went into the 2007 ribbon:
    Jensen Harris: An Office User Interface Blog -
    http://blogs.msdn.com/b/jensenh/archive/2008/03/12/table-of-contents.aspx
    You'll see that one of the considerations of the ribbon was to ELIMINATE/REDUCE customization because it was costing large corporate customers too much time/money to support their users with 2003 customized menu/toolbars.  In other words, the ribbon
    was intentionally built as a fixed design so that average user cannot change it.  The QAT was an afterthought, a sop, to allow users minimal customization. 
    They found that the 2007 lock down was too much of a "good thing", too much like the good old "IBM 360 green screen" (even if most people don't recognize the reference), so in 2010 they
    re-introduced limited Ribbon customization within the UI.
    But you still can't customize the default tabs. And to add injury to insult, if you do want to customize a default tab and go to the effort of trying to recreate the default tabs and groups
    within the Ribbon UI, you'll eventually find that YOU CAN'T'! There is no way inside the UI to force the buttons to layout the same way! AHHH!
    Even in 2007,
    EXPERTS have had the option of creating custom Ribbons/tabs by editing XML, but that is pretty serious programming, out of scope for 99% of users.
    The "solution" to the problem was too simple. Just add an option to allow users to turn on the old menu UI.  Even if it had been buried as a registry hack, the people who really wanted it would have learned about it. Then MS could have collected statistics
    on usage that would have "proved" that the menu was preferred over the ribbon.  The thing is, if the ribbon was defaulted "out of the box", over time people would eventually all switch over to it. Simply because it was the default, because MS only produced
    new training material referring for the ribbon
    Now, I'll concede that the ribbon really may be more "intuitive", but only for new users. For long time users the change is very jarring.
    They made the same choice with Windows 8.  In the last Windows 8 consumer Preview there was a registry hack to bypass the Start Screen.  I learned about it in July or August. But MS was so sure the Start screen/metro was the only way to go they
    rushed out a Windows Update to eliminate that registry entry. And it was eliminated from the RTM version. 
    WHY?
    Why did they remove the user's right to chose the UI that worked best for them? I don't know.
    </end rant>  sorry, this is a hot button for me.

  • "Save link as" in Right-click Context menu is not working properly.

    Firefox 17: In a Google search, when I right click on a .pdf link, the popup window automatically gives a "url" filename and "Firefox Document" as filetype. Previously, the filename would be whatever it was on the website (ie. "filename.pdf") and the filetype would be "Adobe Acrobat Document".
    I know this problem has less to do with Firefox and more to do with JavaScript, because the problem disappears if you disable JavaScript (Tools -- Options -- Content -- uncheck "Enable JavaScript"). What's happening is that JavaScript is somehow altering the link from a purely .pdf link to something else -- perhaps encasing the link inside a set of commands, and the computer is trying to save the command string instead of recognizing the link for what it is. When JavaScript is disabled in Google searches, the highlighted "[PDF]" link no longer appears in front of the link itself, and the "Save link as" function on the right-click works properly.
    Any JavaScript junkies want to try their hand at creating a workaround? One that ensures that the reference created by the right-click context menu matches exactly what the filename is for the website?

    The problem is that Google has an onmousedown attribute added to the links that modify a link if you click or right-click a result link to make the link point to a safe browsing check on the Google server.<br />
    You can see that if you hover a link and you will notice that after you have (right) click a link the the URL changes to www.google.com/url?xxxxx.
    You can use this bookmarklet to remove the onmousedown attributes.
    <pre><nowiki>javascript:(function(){var e=document.querySelectorAll('*[id="search"] a[onmousedown]'),E,i;for(i=0;E=e[i];i++){E.removeAttribute('onmousedown')}})()</nowiki></pre>

  • Update for RDP 8.1 Windows 7 SP1 changed explorer right click context menu

    I have a 4 pcs and 3 nas drive on my network.  previous to the update I could view my pcs and nas drives in explorers right pane left click one and access the folders on it.  since the update I can no longer do this because "remotedesktopconnection"
    has been added as the default (previously it was "open") to the right click context menu.  can someone help me change this back so when I right click a network computer icon in explorer I only see:
    open                                                                   
    AND NOT                              remotedesktop
    open in a new window                                                                                       open
    create shortcut                                                                                                 open
    in a new window
                                                                                                                           create
    shortcut
    the exact update that makes the change is: kb2592687

    Hi
    Theoretically it could be done by modify registry. For example you could
    modify right click menu on .exe file by changing values under
    HKEY_CLASSES_ROOT\exefile\shellex\
    However there are some problems that I cannot define that what kind of “file”
    the network computer is.
    And I found no article specific to this.
    If you really need to restore your context menu and also need this update, I
    suggest you uninstall this update first. Then back up your registry, install it
    again. This time using process monitor you could record all registry modifications during
    this update installation. It might take lots of work.
    I tried to do that for you, unfortunately this update has been deployed in our environment which cannot be uninstalled from update history.
    For more information about process monitor
    https://technet.microsoft.com/en-us/library/bb896645.aspx?f=255&MSPPError=-2147217396
    Regards
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Combine supported files context menu missing

    After upgrading a Citrix server environment from 32 to 64 bit users have noticed that the "combine supported files" option is missing from the context menu. Both servers use the same version of Acrobat
    I tried this command from an administrator login at the console.
    regsvr32 "C:\Program Files (x86)\Adobe\Acrobat 8.0\Acrobat Elements\ContextMenu64.dll"
    Still no luck. Anyone have any suggestions?

    Good day,
    Take a look at the solution below:
    Add the following key to the Windows registry that Citrix is running on top of:
    Disclaimer: The Windows registry contains  critical information about your system and applications. Before  modifying the registry, always make a backup copy of it. Adobe doesn't  provide support for problems that arise from improperly modifying the  registry. For information about the Windows registry, see the  documentation in Windows or contact Microsoft Technical Support or your  computer's manufacturer.
    [HKEY_CLASSES_ROOT\CLSID\{D25B2CAB-8A9A-4517-A9B2-CB5F68A5A802}\InprocServer32]@="C:\\Program  Files (x86)\\Adobe\\Acrobat 8.0\\Acrobat\\..\\Acrobat  Elements\\ContextMenu64.dll""ThreadingModel"="Apartment"
    Please understand, this solution is NOT supported by Adobe, but may work for you.
    Regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • Windows Explorer folder context menu crash

    Hello, On a PC running Windows 7x64 Ultimate,  Windows Explorer closes with a
    "Windows Explorer has stopped working" message, and needs to be restarted.
    It quits when I right click on a folder, while right clicking on a file doesn't cause it
    to quit. So far I've tried:
    Uninstalling and reinstalling graphics drivers, SVC scan, malware scans, virus scan,
    hijack this, safe mode, clean boot, shexview,  shmnview, reliability monitor, and event
    viewer. I could use some help with what shell extensions to modify, if that is
    even the problem.  Thanks
       Event Viewer Windows applications log has entries for event ID 1000 error,
    with these details:  
       Explorer.EXE
       6.1.7601.17567
       4d672ee4
       SHELL32.dll
       6.1.7601.18517
       53aa2e07
       c0000005
       0000000000050506
       13d4
       01cfff64b8cef67f
       C:\Windows\Explorer.EXE
       C:\Windows\system32\SHELL32.dll
       0639a5f1-6b59-11e4-9316-5404a64c920b
    Non-Windows context menu entries  from shexview-x64 ==================================================
    Extension Name    :
    Disabled          : No
    Type              : Context Menu
    Description       : 7-Zip Shell Extension
    Version           : 9.20
    Product Name      : 7-Zip
    Company           : Igor Pavlov
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files\7-Zip\7-zip.dll
    CLSID             : {23170F69-40C1-278A-1000-000100020000}
    File Created Time : 11/18/2010 9:08:50 PM
    CLSID Modified Time: 1/28/2014 4:45:12 PM
    Microsoft         : No
    File Extensions   : *, Directory
    File Attributes   : A
    File Size         : 86,016
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    :
    Disabled          : No
    Type              : Context Menu
    Description       : Backup Shell
    Version           : 8.2.0.21
    Product Name      : Backup
    Company           : Symantec Corporation
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\Norton 360\Engine64\21.6.0.32\buShell.dll
    CLSID             : {F7CAA2A1-67A2-44BB-B20F-202FD8EB1DAB}
    File Created Time : 10/3/2014 9:10:50 AM
    CLSID Modified Time: 4/5/2014 7:47:01 PM
    Microsoft         : No
    File Extensions   : *, Folder, opensearchfilefolderresult
    File Attributes   : AR
    File Size         : 2,657,632
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : AccExt Class
    Disabled          : No
    Type              : Context Menu
    Description       : Core Sync
    Version           : 1.3.1.405
    Product Name      : CoreSync
    Company           :
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\Adobe\Adobe Creative Cloud\CoreSyncExtension\CoreSync_x64.dll
    CLSID             : {2A118EB5-5797-4F5E-8B3D-F4ECBA3C98E4}
    File Created Time : 9/26/2014 2:41:22 PM
    CLSID Modified Time: 11/3/2014 11:56:29 AM
    Microsoft         : No
    File Extensions   : *, Folder, opensearchfilefolderresult
    File Attributes   : A
    File Size         : 1,021,088
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : Acrobat Elements Context Menu
    Disabled          : No
    Type              : Context Menu
    Description       : Adobe Acrobat Context Menu
    Version           : 11.0.0
    Product Name      : Adobe Acrobat Elements
    Company           : Adobe Systems Inc.
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat Elements\ContextMenuShim64.dll
    CLSID             : {A6595CD1-BF77-430A-A452-18696685F7C7}
    File Created Time : 9/23/2012 7:43:36 PM
    CLSID Modified Time: 8/23/2013 8:36:01 PM
    Microsoft         : No
    File Extensions   : *, Folder, opensearchfilefolderresult
    File Attributes   : A
    File Size         : 2,288,288
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : ContextMenuHandler Class
    Disabled          : No
    Type              : Context Menu
    Description       : Apple Photostreams UI Shell Extension
    Version           : 7.15.7.1
    Product Name      : iCloud Control Panel
    Company           : Apple Inc.
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files\Common Files\Apple\Internet Services\ShellStreams64.dll
    CLSID             : {89D984B3-813B-406A-8298-118AFA3A22AE}
    File Created Time : 8/11/2014 10:53:42 AM
    CLSID Modified Time: 10/31/2014 10:56:07 PM
    Microsoft         : No
    File Extensions   : *
    File Attributes   : A
    File Size         : 1,130,280
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : DropboxExt
    Disabled          : No
    Type              : Context Menu
    Description       : Dropbox Shell Extension
    Version           : 1.0.0.24
    Product Name      : Dropbox
    Company           : Dropbox, Inc.
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Users\Paul\AppData\Roaming\Dropbox\bin\DropboxExt64.24.dll
    CLSID             : {FB314ED9-A251-47B7-93E1-CDD82E34AF8B}
    File Created Time : 6/24/2014 5:04:54 PM
    CLSID Modified Time: 7/23/2014 7:36:21 AM
    Microsoft         : No
    File Extensions   : Directory\Background, *, .lnk, Directory, lnkfile
    File Attributes   : A
    File Size         : 164,760
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : GDContextMenu Class
    Disabled          : No
    Type              : Context Menu
    Description       : Google Drive shell extension
    Version           : 1.18.7821.2489
    Product Name      : Google Drive
    Company           : Google
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\Google\Drive\contextmenu64.dll
    CLSID             : {BB02B294-8425-42E5-983F-41A1FA970CD6}
    File Created Time : 10/21/2014 5:52:26 PM
    CLSID Modified Time: 11/9/2014 9:18:01 PM
    Microsoft         : No
    File Extensions   : *, .lnk, Directory, lnkfile
    File Attributes   : A
    File Size         : 141,640
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : IEContextMenu Class
    Disabled          : No
    Type              : Context Menu
    Description       : Norton Internet Security Shell Extension Module
    Version           : 21.6.0.32
    Product Name      : Norton Internet Security
    Company           : Symantec Corporation
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\Norton 360\Engine64\21.6.0.32\NavShExt.dll
    CLSID             : {FAD61B3D-699D-49B2-BE16-7F82CB4C59CA}
    File Created Time : 10/3/2014 9:10:50 AM
    CLSID Modified Time: 4/5/2014 7:47:02 PM
    Microsoft         : No
    File Extensions   : *, Drive, file, Folder, opensearchfilefolderresult
    File Attributes   : AR
    File Size         : 267,080
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : Incinerator Context Menu Handler
    Disabled          : No
    Type              : Context Menu
    Description       : iolo Incinerator ®
    Version           : 12.5.0.86
    Product Name      : Incinerator
    Company           : iolo technologies, LLC
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Windows\system32\Incinerator64.dll
    CLSID             : {E8215BEA-3290-4C73-964B-75502B9B41B2}
    File Created Time : 6/28/2013 5:46:02 AM
    CLSID Modified Time: 2/12/2014 9:54:22 AM
    Microsoft         : No
    File Extensions   : *, .lnk, Directory, lnkfile
    File Attributes   : A
    File Size         : 2,155,152
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : Incinerator Junction Point Context Menu Handler
    Disabled          : No
    Type              : Context Menu
    Description       : iolo Incinerator ®
    Version           : 12.5.0.86
    Product Name      : Incinerator
    Company           : iolo technologies, LLC
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Windows\system32\Incinerator64.dll
    CLSID             : {9081C77F-9FAF-4551-A878-10A4249CD1FA}
    File Created Time : 6/28/2013 5:46:02 AM
    CLSID Modified Time: 2/12/2014 9:54:22 AM
    Microsoft         : No
    File Extensions   : .SendToIncinerator
    File Attributes   : A
    File Size         : 2,155,152
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : MShellExtMenu Class
    Disabled          : No
    Type              : Context Menu
    Description       : MagicISO Shell Extension Module
    Version           : 5, 3, 0, 198
    Product Name      : MagicISO Shell Extension Module
    Company           : MagicISO, Inc.
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\MagicISO\misosh64.dll
    CLSID             : {DB85C504-C730-49DD-BEC1-7B39C6103B7A}
    File Created Time : 10/4/2014 6:41:04 PM
    CLSID Modified Time: 10/4/2014 6:41:05 PM
    Microsoft         : No
    File Extensions   : *, Directory, Folder, opensearchfilefolderresult
    File Attributes   : A
    File Size         : 43,520
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : NVIDIA CPL Context Menu Extension
    Disabled          : No
    Type              : Context Menu
    Description       : NVIDIA Display Shell Extension
    Version           : 344.65
    Product Name      : NVIDIA Shell Extensions
    Company           : NVIDIA Corporation
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Windows\system32\nvshext.dll
    CLSID             : {3D1975AF-48C6-4f8e-A182-BE0E08FA86A9}
    File Created Time : 11/13/2014 11:57:26 AM
    CLSID Modified Time: 11/13/2014 12:03:23 PM
    Microsoft         : No
    File Extensions   : Directory\Background
    File Attributes   : A
    File Size         : 61,640
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : RUShellExt Class
    Disabled          : No
    Type              : Context Menu
    Description       : Revo Uninstaller Pro Extension
    Version           : 1.0.0.3
    Product Name      : Revo Uninstaller Pro Extenison
    Company           : VS Revo Group
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files\VS Revo Group\Revo Uninstaller Pro\RUExt.dll
    CLSID             : {2C5515DC-2A7E-4BFD-B813-CACC2B685EB7}
    File Created Time : 6/28/2013 8:26:20 PM
    CLSID Modified Time: 6/28/2013 8:26:21 PM
    Microsoft         : No
    File Extensions   : .exe, .msi, exefile, Folder, opensearchfilefolderresult
    File Attributes   : A
    File Size         : 123,120
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : Spybot-S&D Explorer Integration
    Disabled          : No
    Type              : Context Menu
    Description       : Windows Explorer context menu integration
    Version           : 2.3.39.113
    Product Name      : Spybot - Search & Destroy
    Company           : Safer-Networking Ltd.
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\Spybot - Search & Destroy 2\SDECon64.dll
    CLSID             : {44176360-2BBF-4EC1-93CE-384B8681A0BC}
    File Created Time : 11/2/2014 6:40:12 PM
    CLSID Modified Time: 11/2/2014 6:40:13 PM
    Microsoft         : No
    File Extensions   : *, Folder, opensearchfilefolderresult
    File Attributes   : A
    File Size         : 484,304
    .NET Extension    : No
    Digital Signature :
    ==================================================
    ==================================================
    Extension Name    : STKContextMenu Class
    Disabled          : No
    Type              : Context Menu
    Description       : Send to Kindle Context Menu dll
    Version           : 1,0,1,240
    Product Name      : Send to Kindle
    Company           : Amazon.com, Inc.
    My Computer       : No
    Desktop           : No
    Control Panel     : No
    My Network Places : No
    Entire Network    : No
    Remote Computer   : No
    Filename          : C:\Program Files (x86)\Amazon\SendToKindle\stkContextMenu_240.dll
    CLSID             : {90DD7445-E924-4c6e-92AC-01F8C3A7E0C7}
    File Created Time : 11/4/2014 1:40:41 PM
    CLSID Modified Time: 11/4/2014 1:40:41 PM
    Microsoft         : No
    File Extensions   : AllFilesystemObjects
    File Attributes   : A
    File Size         : 255,808
    .NET Extension    : No
    Digital Signature :
    ==================================================

    Hi,
    In addition to above suggestions, please help to collect crash dump file for explorer.exe, let's see what exacted file cause your issue:
    First enable app crash dump collection by copying following words into notepad, saving it as dump.reg and importing it:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\localdumps\explorer.EXE]
    "DumpFolder"=hex(2):63,00,3a,00,5c,00,63,00,72,00,61,00,73,00,68,00,64,00,75,\
      00,6d,00,70,00,73,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    Then, open explorer to repro the issue. If crash issue appeared, please find the crashdump file under c:\.
    To further help you, please upload this file into Onedrive and shared the link here.
    Kate Li
    TechNet Community Support

  • Right click context menu is not working in flash player 10 and above

    In right click custom context menu i have create like "A" if i click "A" i have attached one movie clip in that movie clip right click, i have custom context menu like "Remove A" this is working fine in flash player 9 and below. But flash player 10 and above fisrt "A" is working fine but in that movieclip clip right click "Remove A" is not working Please guide me regarding this issue.
    Thanks in Advance
    Surendran S

    The problem is that Google has an onmousedown attribute added to the links that modify a link if you click or right-click a result link to make the link point to a safe browsing check on the Google server.<br />
    You can see that if you hover a link and you will notice that after you have (right) click a link the the URL changes to www.google.com/url?xxxxx.
    You can use this bookmarklet to remove the onmousedown attributes.
    <pre><nowiki>javascript:(function(){var e=document.querySelectorAll('*[id="search"] a[onmousedown]'),E,i;for(i=0;E=e[i];i++){E.removeAttribute('onmousedown')}})()</nowiki></pre>

Maybe you are looking for

  • TS1702 How do I to move apps from one place to a different place?

    I want to be able to move my app icons to different locations on my phone.How do I move them. At one time I could bring up my phone on the computer and move them around but this is a new computer and I can not do it.Can anyone please help?

  • Deployment of Myfaces 1.1.4 on WebLogic 9.1

    Hi ,           I developed a JSF based application using Apache MyFaces 1.1.4 / Tomahawk and WAS 5.2 (WebSphere Application Server) as development container.           The application turns perfectly on WAS 5.2.           But when deployed to weblogi

  • WCS 7.0 Campus problem

    After installing the WCS upgrade to 7 to the wrong drive letter, I uninstalled it and reinstalled to the correct drive.  I then restored the database backup and all looked ok.  I noted that in the restore, I now had a System campus.  Thought I would

  • OBIEE 11.1.1.7 - when available?

    Hi, we're waiting on 11.1.1.7 to fix some issues we're having - does anyone have an idea of how soon 11.1.1.7 should be out? Thanks, Scott

  • Lumia 920 freezes/crashes during the night. Can't ...

    I have had my Lumia for 10 days and for the second time it crashes during the night and the next morning I was not able to turn it on using the power button. I had to do a soft reset... The alarm that I set to wake me up never started... This means t