Outlook Junk Reporting Add-In Not working - No "Report Junk" option

I have installed the "Junk Reporting Add-in for Office 2007, 2010, 2013 (32bit).msi" from Microsoft on 2 computers with Outlook 2013 as part of Office 365. Both are currently on version 15.0.4693 (latest version). On one, when I right click on
a message and go to the Junk options there is, as expected, the new "Report Junk" option. On the other, running on a Windows 8.1 system, that option is not there. I have tried uninstalling and reinstalling to no effect.
Any ideas why the Add-In might not be working on the 8.1 computer? Anything I should try?
Thanks,
Colin
Colin

Hello Colin,
Does the user have any other add-in installed? This issue may occur if a conflict with a plug-in or an add-in causes the Junk Email Reporting Add-in to become disabled. We need to first check if the Junk Reporting Add-in is listed in the Add-in list under
File > Options > Add-ins. If it's not in the list, it means the add-in is disabled or not installed successfully. To check if the Add-in is disabled, go to File > Options > Add-ins, switch the "Manage:" drop-down
list to Disabled Items and press Go. Check if Junk Reporting Add-in is listed there. If so, highlight the add-in and click
Enable.
Please let me know the result.
Regards,
Steve Fan
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Microsoft Excel 2013 add-in not working after update

    I have originally posted this question at answers.microsoft.com and have been re-directed to post here. (http://answers.microsoft.com/en-us/office/forum/office_2013_release-excel/microsoft-excel-2013-add-in-not-working-after/298aff03-c90a-4a2a-b67b-07b6f3c7648c)
    We are an organization with over 200 users and are currently using Microsoft Office 2013 (Click-to-run install via Office 365 portal), we have noticed that in Excel when we apply the monthly Office update, the add-in (e.g. Analysis Toolpak) would stop working
    with the following error message displayed.
    I tried updating from 15.0.4631.1004 to 15.0.4641.1003,
    15.0.4641.1003 to 15.0.4649.1004, they all gave the same results.
    I have checked the captioned file path and it is indeed missing, I think the update mechanism messed up the add-in somehow, a full re-install would fix it as quick or online repair is not doing the trick.  This is not the only add-in it is affecting
    as there are some 3rd party add-ins are affected as well.
    Please advise how we can fix this without needing to re-install Microsoft Office.  Thank you!

    I don't have 365 or C2R so I can't address your main question, so just a few thoughts which may not be applicable in your setup.
    Check the addin manager to see if your addins are listed and ticked. If listed (ticked or not) check the registry to see where the location is written, if ticked look here
    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Excel\Options
    and look for keys named OPENx, where x is the order number the addin is loaded
    if not "ticked" instead of \Options look in \Add-in-Manager
    With a VBA macro or in the VBE's immediate window return
    Application.LibraryPath 
    Assuming you found a listing in the registry do the paths match, if not look in the .LibraryPath to see if the addins got unloaded there into the subfolder \Analysis
    If you find the file(s) try un-installing and reinstalling the addins, but browse to the actual folder don't simply tick. If you can't find the files, copy them (from a different system) to the folder indicated by .LibraryPath. In the addin manager uninstall
    them if installed, close the manager, open it again and the addins should be listed, tick to re-install.
    You say your other addins don't work, I wonder if some mixup has occurred with what Excel thinks is the default path, but note for other addins the default addins path is returned by app.UserLibraryPath
    Are you using a Chinese system?

  • Firefos beta 8 version plugins and add-ons not working after install

    After Install ghostery will not fuction. Performed a reinstall of ghostery and no luck. In manage Add-ons it says ghostery will be working after restarting the browser but no change. Why? Also completey removed (uninstalled ghostery) then rebooted and reinstalled ghostery and still no change.
    Also other add-on are doing the same thing and all are compatible with this version according to the options menu in manage add-ons

    I just Found out after a hour of disabling and enabling add-ons Firebug was causing my issues of missing add-on buttons and missing add-on not working try disabling it and related Firebug add-ons and restart Firefox to see if everything begins to work

  • Xfa.sourceset.dataconnection.add() is not working

    Hello All,
    I am trying to insert data into database using "xfa.sourceset.dataconnection.add()" as shown in tutorial. However, the value is not inserted into DB and the PDF file is not throwing any errors.
    I did try update, last, first, etc., all the function are working but only add is not working.
    Can anyone please tell me where I am wrong?
    FYI -I have change the dataconnection name to the name that I am using for dataconnection so this is not a problem.
    Thanks
    Viral

    Hello Viral,   
         To reader extend your form you have two options..
         One option is using Adobe Acrobat Pro which can provide only a subset of Reader Extensions (locally saving and Digitial Signatures).
         Attached image show you the menu option in Acrobat PRO to Reader extend the form..
         Other option is by purchasing a Reader Extensions service component from Adobe and use it at the time of rendering in the Livecycle Server. 
         This option provide the full Reader Extensions functionality(things like commenting, Database and web service access, etc..).
         since in your case you are trying with the Database connections, can you try with the second option.
    Thanks
    Srini

  • Bug?: layers.add() is not working properly when invoked from menu (ID/CS6/Win7)

    Hello Devs,
    I am facing a mysterious issue with the layers.add() method.
    I am trying to create n number of layers for my document. So I have decided to create a menu for this.
    I have creatd two scripts
    1. For creating menu & menu action,
    2. Actual script that creates n number of layers.
    When I run the script #2 direclty from ESTK it works fine.
    Now when I try to invoke the same script from the Menu it is not working fine. Only the last layer is created.
    Script 1: LayerPopupMenuAction
    #target indesign
    #targetengine createLayerset
    var layerTemplateScript = File(File(getActiveScriptPath()).parent.fsName+"/IntializeTemplate.jsx");
    var initTemplateHandler = {
        'beforeDisplay' : function(ev)
                ev.target.enabled = (app.documents.length>0);
        'onInvoke' : function()
                app.doScript(layerTemplateScript, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.FAST_ENTIRE_SCRIPT, "Initialize Script");
    var layerMenuAction = app.scriptMenuActions.add("&Create Layer Set");
    for(var init_ev in initTemplateHandler) {
        layerMenuAction.eventListeners.add(init_ev, initTemplateHandler[init_ev]);
    var refMenuItem = app.menus.item("$ID/LayerPanelPopup");
    refMenuItem.menuItems.add(layerMenuAction, LocationOptions.AFTER, refMenuItem.menuItems.item(2));
    function getActiveScriptPath() {
        // This function returns the path to the active script, even when running from ESTK
        try {
            return app.activeScript;
        } catch(e) {
            return e.fileName;
    Script 2: IntializeTemplate
    #target indesign
    if (app.documents.length == 0){
        alert("Please open a document and try again", "Document Error", true);
        exit();
    var templateDoc = app.activeDocument;
    var layerNameArray = ["Fixed_Static_Assets", "Absolute_User_Assets", "Relative_User_Assets"];
    CreateLayers(layerNameArray);
    alert("Initialization Successful");
    //--------------------------------FUNCTIONS ARE DEFINED HERE--------------------------------
    function CreateLayers(LayerNameList){
        var layerListLength = LayerNameList.length;
        var layerObject;
        for (var ln=0; ln<layerListLength; ln++){
            layerObject = templateDoc.layers.itemByName(LayerNameList[ln]);
            if (layerObject.isValid==false){
                layerObject = templateDoc.layers.add({name:LayerNameList[ln]});
                //$.writeln('Layer Creation: ' + layerObject.isValid + ' for '+layerObject.name);
        //Merger Default Layer with the bottom layer:
        var defaultLayer = templateDoc.layers.itemByName("Layer 1");
        if(defaultLayer.isValid==true){
            //$.writeln('Default is Valid and will be merged with top most layer');
            layerObject.merge([defaultLayer]);
    Any help / guidance on this regard will be much helpful.
    @Marijan Tompa [tomaxxi]: I googled for the solution and noticed that you have already worked on similar type of script. Please help me if you can.
    Thanks
    Green4ever

    Hi Green4ever,
    At a very first sight I'd suspect UndoModes.FAST_ENTIRE_SCRIPT which, as you may know, can deeply scramble script steps, especially when a try...catch is in use.
    Try to replace FAST_ENTIRE_SCRIPT by ENTIRE_SCRIPT and tell us.
    @+
    Marc

  • Essbase Excel Add in not working

    Hi All,
    I have installed hyperion 11.1.2.2 version in windows 2008 server(64 bit system)
    Server is up and running fine.!
    I have installed Excel addin, then i got one issue here. When i opened excel, Smartview is displayed on the top but Essbase is not displayed. I tried so many ways, but no use.
    give me some suggestions regarding to solve this issue..!
    Thanks,
    mady
    Edited by: mady on Nov 27, 2012 11:46 AM

    Mady, I hope you were not trying to open the Add-Ins directly from Windows. The Essbase XLL and XLA work within Excel as Add-Ins, not as executables. When I doubled-clicked on the XLL and XLA, I got the Microsoft Security warning, which I assume that is what you were doing wrong. You can also google Excel Add-Ins on how to manage it if you are not sure what to do. It's very straight forward.

  • Weather Channel's 1-Click Weather Toolbar Add-on Not Working in Firefox 4

    After installing the Weather Channel's 1-Click Weather Toolbar Add-on, I get 2 Java messages and don't see the toolbar - even though it is listed in the add-ons list and is activated.
    This toolbar is it not working in this version. It worked in previous versions.
    Do you have any suggestions.

    princess111 had her problem solved here: <br>
    http://forums.mozillazine.org/viewtopic.php?f=38&t=2173619
    I'm going post the answer here too for everyone else.
    To make a long story short, the addon wasn't updated for Firefox 4. Someone edited the addon to make it work on Firefox 4. This updated addon can be found here: http://www.megaupload.com/?d=W1HDG9HM
    A moderator at the other forums inspected the file for viruses or malicious code and found none. See [http://forums.mozillazine.org/viewtopic.php?p=10715417#p10715417 here]
    To install the addon once downloaded, read this post: <br>
    http://forums.mozillazine.org/viewtopic.php?p=10715621#p10715621

  • MDIS Unmapped Values ADD is not Working Throws errors

    Hi Experts,
    I have a Qualified table where the Non qualifier is a Lietaral Date field.
    Qualified Update -> Update
    New links -> Create
    Existing Links -> All mapped Fields
    MDIS unmapped values -> ADD
    All is working well,When the Incoming file has exactly the same NOn qualifier as in Data manager,  But when the incoming file has some New non-qualifers then it fails with a value Exception...
    1166657856 2011/09/27 16:29:16.326 GMT Importing: 'Samplee_27sep[1].xml.MDM_DATA' Table --> 'CostCentre.CostCentre' Table.
    1166657856 2011/09/27 16:29:16.341 GMT Could not create lookups. Source record number: -10, error message : Type mismatch. Invalid field values.
    1166657856 2011/09/27 16:29:16.346 GMT Import failed. Could not create lookups. Source record number: -10, error message : Type mismatch. Invalid field values.
    Import action: Update (All Mapped Fields)
    Source record no: 1
    But ideally it should NOT fail as the MDIS Unmapped fields are set to ADD..
    I would expect it to Add any new NON qualfiers to QT and add that Link to that Record.
    But it is throwing error...
    Did anyone face this issue till date???
    Kind Regards
    Eva
    Why is this behaviour..

    Hi,
    In the Import map as the Non qualifier is the literal date field and in DM i can see they are stored in MM/DD/YYYY format.
    The incoming value from the File is also the same format but the Config parameters date format in Import map is different, is this the problem for not adding New dates even though the MDIS unmapped fields are set to ADD..
    Also, are Config parameters Specific to Map or Repository Or server!!
    i.e if i change a config parameter and save the map.
    will the config parameters in all import maps be changed automatically??
    Kind Regards
    Eva

  • Add People not working in PSE12

    Hi
    After horrendous installation problems I've now finally got PSE12 installed.  THowever the 'Add People' functionality is not working.
    In the 'People' tab, when I click the 'Add People' button I get the 'preparing files' dialogue box.  I then get a message saying "You have labelled everyone in your selection" (whether I've made a selection or not in 'Media').  I can 'add people' in an individual photo but not by clicking 'add people' either in Media or People view.  This worked fine for me in PSE11.
    I'm using Windows 7 and don't have any other PSE versions installed.
    Any suggestions?
    Thanks

    Hi, I;ve been replying via my email. I've just discovered that email attachments aren't accepted and I must reply from within the forum. Here's the screenshot. I receive this message whether I've made a selection or not. Thanks

  • Add-ons not working properly

    Recently (last 4-5 days my add-ons stopped working properly. Example: Tab Mix Plus shows as installed, but when any options I select do not affect tab behavior; Lastpass icon not showing up in the Add-on bar as it did previously; Newsfox icon doesn't appear in Toolbar as it did. Using Firefox 26.0 on Windows 8 on Dell Laptop.

    I've been having problems with my add-ons. Ad Block Plus will often hang Firefox and drive the CPU to 100%. I've reset Firefox and installed ABP, but still have the problem. My other extension have also stopped working. Any new extensions will appear to added on to Firefox, but they also don't work. I've followed all on-line trouble shooting options.

  • F1 add-on not working after updating to 10.0.1 running on ubuntu 11.10

    Hi,
    The ubuntu 11.10 update manager updated my firefox to 10.0.1 and since then my f1 add-on is not working. I tried disabling and re-enabling it but it didnt work. it says the service is not available at the moment.
    Any suggestions? Thanks!

    Try posting here - http://feedback.mozillalabs.com/forums/68185-messaging-add-ons
    F1 is made by the Mozilla Messaging team, and that what the team uses for providing support for their add-ons.

  • Single row/column marquee tool "add to" not working

    I was trying to follow along with a tutorial that was using the single row/column marquee tool.  In it they used shift click to add to the selection.  It's not working for me.  I also tried clicking on the add to icon for the marquee tool, and it still doesn't work.  Does anyone know what the problem could be and how I might fix it?
    Thanks!

    hey i know this is late but if its any help now all u need to do i zoom in a lil closer the proceed with the selection. hope i helped. oh and u have to make sure your grid lines are perfectly on the 10,20,30,... percent mark and u have to be zoomed in if u want to see your lines. the problem is your file is too big and has somn to do with ur computer. its not only mac windows too.
    p.s. when ur done drawing the boxes u can zoom out...i know the tutorial

  • Add-ons not working after server IP address/domain name change.

    Hello everyone,
    We have just changed the IP address of our SAP Business One server and moved it into a new domain.
    Although SAP Business One is working as expected, the add-ins created by a third party do not work. Having very little knowledge of SAP I do not understand where the problem could be.
    The third party were on-site today and have reinstalled the add-ons but they still do not work.
    There is an error message when starting the client that states: Module <Compatability Licensed for Add-ons> Expired on <20080115> but the third party have stated that this isn't a license issue.
    Can anyone provide any assistance/advice on what the problem may be?
    The possibilities for the problem at the moment are:
    - Invalid license key for add-ons (but why would changing the IP address/domain name cause this issue?)
    - The add-on is coded with the original IP address of the server.
    - There is a permissions problem that has been missed (as users are in a new domain).
    Any advice/suggestions are welcome.
    Many thanks,
    John

    >
    John Galley wrote:
    >
    > The possibilities for the problem at the moment are:
    >
    > - Invalid license key for add-ons (but why would changing the IP address/domain name cause this issue?)
    > - The add-on is coded with the original IP address of the server.
    > - There is a permissions problem that has been missed (as users are in a new domain).
    I am afraid that the possible cause is the addon is coded with the IP address in their connection method. It could be possible that it is a hardcoded addon.
    you must ask the addon developer to change it and do not use the IP address anymore in the addon.
    Rgds,

  • RDS on server 2012 and outlook as a published app not working.

    You need a VL copy for office, OEM will not work,
    You can also install O365 on the Server but that is a little more complicated, then you can have every one activate it with their E3 license.
    We have both systems in production for multiple customers and it works without issues.

    We are creating a new environment to use RDS, exchange 2010, office 2010 or 2013. When publishing an app of outlook 2010 or 2013 they do not work in RDS. Just keeps spinning and never launches. it will not launch from the server as well at time but at times it will if i am on the server directly via RDP.
    This is a hyper-v environment as well running on server 2012 host not sure if that makes any difference with this issue though. 
    Any ideas here? 
    Thanks in advance 
    T. 
    This topic first appeared in the Spiceworks Community

  • Why si firefox so quick to updatewand make many of my add ons not work

    every time firefox has an update different add ons do not work after the update.i use my computer and add ons for about 6 hours per day. the add ons are ESSENTIAL. i am sick and tired of updating then having to go back to a previous version. i used to love firefox now i am beginning to hate it almost as much as chrome and IE

    I can understand your frustration. The reason for compatibility checks and the resulting deactivation of your add-ons, however, is the concern for your own safety and robustness of your environment (... you may have had some bad experience in this regard yourself, for instance with Flash crashing now and then).
    Go to the page '''Tools > Add-ons ''' and click "Extensions" to open the page with currently installed add-ons. There, you can reactivate disabled add-ons or - what's better in any case - look for updates and/or more recents replacements of your older add-ons.
    smo
    PS: If the answer has solved your problem, then mark the question as "Solved". This way you will help others in a similar situation.

Maybe you are looking for

  • Dynamic sql and cursors

    We are running an oracle sql procedure that uses a LOT of dynamic sql. We are using a 3rd party package (SQR) as a sort of shell to run the sql procedure. The 3rd party package passes to us an oracle error. This error says, in effect, that there are

  • Send object behind text

    Can you send an object behind text in the Ipad pages app so that the text is over the top of the object?

  • \n or \r,\n in BatchRecord

    Hi all, I'm facing with BatchRecord to read file line by line. Because some files have end of line is \n or some files have end of line is \r,\n. So how BatchRecord can process both 2 above delimiter . Regards, Dai

  • My imessage is showing my email

    My iMessages are showing up from my email. When I look at caller ID it is checked that my number should show up. Any one have any idea on how to fix this? Thanks!

  • After Effects crashes while rendering

    Hi all, We have been experiencing regular crashes while rendering on 9 different Mac systems. We would start the render and then, all of a sudden, AE would crash. Trying to restart, AE hangs at MediaCore initializing. We actually need to do a hard sh