Microsoft Exchange 2013 eDiscovery - specific search query: looking for specific hyperlinks within e-mails content/body

Dear all:
I am currently using the MS Exchange 2013 eDiscovery feature with the objective to identify which of my users have received emails containing specific hyperlinks (e.g. http://website1/webroot/file.zip, http://website2/webroot/file.zip, etc.) from an unknown
sender.
To this end, I have been creating an eDiscovery on-hold case looking for a specific search criteria in all mailboxes.
As the search criteria, I have tried many options but was unable to obtain satisfying results: I know I am missing some e-mails from this specific search (I checked manually). I have notably tried the following search queries (with and without the body:
search operator, with and without double quotes, etc.)
body:http://website1/* OR body:http://website2/*
body:"http://website1/*" OR body:"http://website2/*"
body:"website1*" OR body:"website2*"
body:"*website1*" OR body:"*website2*"
When replaying these queries on my local Outlook client, everything works fine and I get results as expected.
However, when going through the ECP eDiscovery feature, I am missing some results.
Therefore, I am looking for any advice on what Exchange eDiscovery KQL query I should use to identify all emails containing, in their message body, a list of specific hyperlinks/URLs.
Many thanks in advance for your help.
S.

Alas I do not know the answer to resolution via ECP and like you I have found it to be a bit maddening to use ECP for discovery tests Ive done when comparing results with our DigiScope product.  I know we can accomplish what your looking to do via Regular
Expression but again that's with a 3rd party tool. 
One thought is I suppose it could be an indexing issue with the DB, so perhaps rebuilding the index would help?
If you do get it working I would love to know the resolution since many of my tests with ECP have left me yelling at the screen.  When its works its cool when not well...
Search, Recover, & Extract Mailboxes, Folders, & Email Items from Offline Exchange Mailbox and Public Folder EDB's and Live Exchange Servers or Import/Migrate direct from Offline EDB to Any Production Exchange Server, even cross version i.e. 2003
--> 2007 --> 2010 --> 2013 with Lucid8's
DigiScope

Similar Messages

  • 2012 r2 -Microsoft Exchange 2013 DNS timed out

    I just installed Microsoft Exchange 2013 on my 2012 r2 server. I just installed all of the Roles &features, then I went to my fire walls and then I disabled them (temporarily). I configuring my IP addressing, DNS Ip address and a dns suffix. Now I
    can't access my Exchange via browser so I did some trouble shooting and sure enough I can't ping my DNS address. I can ping my IP address though. If anyone has any suggestions that would help then let me know. Thank you for any responses!

    Hi Dallen,
    >>Now I can't access my Exchange via browser so I did some trouble shooting and sure enough I can't ping my DNS address.
    It is not a hyper-v issue , it's more like a network problem .
    First , I would suggest you to disable firewall in DNS server for troubleshotting .
    If firewall is truned off then you still can not ping the DNS server , you may check if the exchange server can ping other IP address in your LAN to check network conectivity .
    If they are in different subnet ,you may try to check the configuration of the router .
    Any further information please feel free to let us know .
    BestRegards
    Elton Ji
    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.

  • Exchange 2013 CU3 Retention Policy Not working for Calendar & Tasks

    We are currently on Exchange 2013 CU3 with Online Archiving Enabled for the user
    Default policy is set to move  all the items in mailbox which are  older than 30 days to online archive mailbox.
    Calendar and Tasks Items are also getting archived alongwith other Outlook items from Inbox,Deleted Items etc
    Followed Technet website and created RPT for Calendar and Tasks with retention disabled
    Still DPT takes precedence and move all the items under Calendar and Task to Online Archive Mailbox

    Hi Sam,
    I recommend you refer to the following article, despite this for Exchange 2010, however the same applies to exhcnage 2013:
    Prevent archiving of items in a default folder in Exchange 2010
    To prevent the <acronym title="Default Policy Tag">DPT</acronym> from being applied to a default folder, you can create a disabled <acronym title="Retention Policy Tag">RPT</acronym> for that folder (or disable
    any existing RPT for that folder). The Managed Folder Assistant, a mailbox assistant that processes mailbox items and applies retention policies, does not apply the
    retention action of a disabled tag. Since the item/folder still has a tag, it's not considered untagged and the DPT isn't applied to it.
    Why are items in the Notes folder still archived?
    If you create a disabled <acronym title="Retention Policy Tag">RPT</acronym> for the
    Notes folder, you'll see items in that folder are not deleted, but they do continue to be moved to the archive! Why does this happen? How do you prevent it?
    It's important to understand that:
    A retention policy can have a <acronym title="Default Policy Tag">DPT</acronym> to
    archive items (using the Move to Archive retention action) and a DPT to
    delete items (using the Delete and Allow Recovery or
    Permanently Delete retention actions). Both apply to untagged items.
    The move and delete actions are exclusive of each other. Mailbox folders and messages can have both types of tags applied - an archive tag and a delete tag. It's not an either/or proposition.
    If you create a disabled RPT for the Notes folder to not delete items, the archive DPT for the mailbox would still apply and move items.
    When it comes to archiving, there's only one archive policy that administrators can enforce – the <acronym title="Default Policy Tag">DPT</acronym> with 'Move to archive' action.
    You can't create a <acronym title="Retention Policy Tag">RPT</acronym> with the 'Move to archive' action. This rules out using the disabled RPT approach to prevent items from being moved.
    Best regards,
    Niko Cheng
    TechNet Community Support

  • Slow PowerShell execution of Microsoft Exchange 2013 commands from c#

    I have the following code that executes an exchange cmdlet. It works fast with command that return some output but work slow if command has no output.
    for example
    Invoke("Get-Mailbox")
    prints following output:  
    Begin execution at 11:44:43
    Finish execution at 11:44:51
    Output :
    Administrator
    Discovery Search Mailbox
    Artem Romanchik
    Execution time was about 8 second(6 second for loading exchange snappin + 2 seconds for command execution)
    Slow example is
    Invoke("Set-Mailbox -identity tema -MaxSendSize 10MB")
    Begin execution at 11:53:34
    Finish execution at 11:54:36
    Output : 
    Now it was 62 seconds(2 seconds for command and 60 seconds of waiting for something)
    How can I reduce execution time of second example?
    Invoke method code:
    public void Invoke(string command)
    var config = RunspaceConfiguration.Create();
    PSSnapInException warning;
    config.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.Snapin", out warning);
    using(var runspace = RunspaceFactory.CreateRunspace(config))
    runspace.Open();
    using(var _psInstance = new RunspaceInvoke(runspace))
    var psCommand = new PSCommand();
    Console.WriteLine(String.Format("Begin execution at {0}", DateTime.Now.ToLongTimeString()));
    var result = _psInstance.Invoke(command);
    Console.WriteLine(String.Format("Finish execution at {0}", DateTime.Now.ToLongTimeString()));
    var output = "";
    foreach (var line in result)
    if (line == null)
    continue;
    output += "\n" + line.BaseObject.ToString();
    Console.WriteLine(String.Format("Output: {0}", output));
    runspace.Close();

    On 2010 and 2013 Powershell is throttled
    http://technet.microsoft.com/en-us/library/dd298094(v=exchg.150).aspxyou might want to do some testing with a user that has throttling policy disabled. Also you might want to check the logs on the CAS server the request are going through eg \Microsoft\Exchange
    Server\V15\Logging\CmdletInfra you should be able to determine from these if your being throttled.
    Cheers
    Glen

  • Chat feature for Microsoft Exchange 2013

    Hi Good day,
    is there any way to have a simple chat feature service for exchange 2013? im looking for some solutions but only Exchange 2000 has this common feature. I just need to have a simple chat service for our internal and branch offices

    Hi,
    There is no feature in Exchange server 2013 to meet your requirement. But we can use Microsoft Lync to chat with your domain environment. Microsoft Lync is an enterprise-ready unified communications platform.
    By integrating Lync Server and Exchange Server, we can also chat directly in OWA. For more information about it, we can refer to:
    http://office.microsoft.com/en-001/lync/lync-server-2013-features-video-conferencing-and-instant-messaging-FX103789592.aspx
    If you don’t want to deploy a Lync server in your environment, we can also use
    Skype with a Microsoft account or Skype account to chat with others.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Exchange 2013 CU3 Fails "The type initializer for 'Microsoft.Exchange.Flighting.RotationHash' threw an exception."

    I can't get Exchange 2013 to install in our Server 2008 R2 infrastructure. Setup fails with the following error when preparing AD. This is running on Server 2008 R2 SP1 VM's.
    Welcome to Microsoft Exchange Server 2013 Cumulative Update 3 Unattended Setup
    Copying Files...
    File copy complete. Setup will now collect additional information needed for installation.
    Performing Microsoft Exchange Server Prerequisite Check
        Prerequisite Analysis                                                                            
    COMPLETED
     Task module "CmdletHealthCountersModule.Task_IterateCompleted" fails with exception "The type initializer for 'Microsof
    t.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be aff
    ected.
     Task module "CmdletIterationEventModule.LogCmdletIterationEvent" fails with exception "The type initializer for 'Micros
    oft.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be a
    ffected.
     Task module "CmdletHealthCountersModule.Task_Release" fails with exception "The type initializer for 'Microsoft.Exchang
    e.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be affected.
    Configuring Microsoft Exchange Server
        Organization Preparation                                                                         
    FAILED
         The following error was generated when "$error.Clear();
            install-DefaultAcceptedDomain -Name $RoleFullyQualifiedDomainName -DomainName $RoleFullyQualifiedDomainName -Dom
    ainController $RoleDomainController
    " was run: "The type initializer for 'Microsoft.Exchange.Flighting.RotationHash' threw an exception.".
     Task module "CmdletHealthCountersModule.Task_IterateCompleted" fails with exception "The type initializer for 'Microsof
    t.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be aff
    ected.
     Task module "CmdletIterationEventModule.LogCmdletIterationEvent" fails with exception "The type initializer for 'Micros
    oft.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be a
    ffected.
     Task module "CmdletHealthCountersModule.Task_Release" fails with exception "The type initializer for 'Microsoft.Exchang
    e.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be affected.
    The Exchange Server setup operation didn't complete. More details can be found in ExchangeSetup.log located in the

    I have set the PowerShell Execution Policy to unrestricted. After running setup /PS I get the following output
    PS C:\Windows\system32> cd c:\temp\ex2013cu3
    PS C:\temp\ex2013cu3> ./setup /ps /iacceptexchangeserverlicenseterms
    Welcome to Microsoft Exchange Server 2013 Cumulative Update 3 Unattended Setup
    Copying Files...
    File copy complete. Setup will now collect additional information needed for installation.
    Performing Microsoft Exchange Server Prerequisite Check
        Prerequisite Analysis                                                                            
    COMPLETED
     Task module "CmdletHealthCountersModule.Task_IterateCompleted" fails with exception "The type initializer for 'Microsof
    t.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be aff
    ected.
     Task module "CmdletIterationEventModule.LogCmdletIterationEvent" fails with exception "The type initializer for 'Micros
    oft.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be a
    ffected.
     Task module "CmdletHealthCountersModule.Task_Release" fails with exception "The type initializer for 'Microsoft.Exchang
    e.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be affected.
    Configuring Microsoft Exchange Server
        Extending Active Directory schema                                                                
    COMPLETED
     Task module "CmdletHealthCountersModule.Task_IterateCompleted" fails with exception "The type initializer for 'Microsof
    t.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be aff
    ected.
     Task module "CmdletIterationEventModule.LogCmdletIterationEvent" fails with exception "The type initializer for 'Micros
    oft.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be a
    ffected.
     Task module "CmdletHealthCountersModule.Task_Release" fails with exception "The type initializer for 'Microsoft.Exchang
    e.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be affected.
    The Exchange Server setup operation completed successfully.
    PS C:\temp\ex2013cu3>
    The installation was started at 10:13am and hung for sometime at 94% of the prereq stage. Installation finally completed at 10:47am. The errors seem to indicate that setup will continue. However upon running setup /prepareAD the installation hangs for sometime
    at 21% of Organization Preparation before finally failing with the following output....
    PS C:\temp\ex2013cu3> ./setup /prepareAD /iacceptexchangeserverlicenseterms
    Welcome to Microsoft Exchange Server 2013 Cumulative Update 3 Unattended Setup
    Copying Files...
    File copy complete. Setup will now collect additional information needed for installation.
    Performing Microsoft Exchange Server Prerequisite Check
        Prerequisite Analysis                                                                            
    COMPLETED
     Task module "CmdletHealthCountersModule.Task_IterateCompleted" fails with exception "The type initializer for 'Microsof
    t.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be aff
    ected.
     Task module "CmdletIterationEventModule.LogCmdletIterationEvent" fails with exception "The type initializer for 'Micros
    oft.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be a
    ffected.
     Task module "CmdletHealthCountersModule.Task_Release" fails with exception "The type initializer for 'Microsoft.Exchang
    e.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be affected.
    Configuring Microsoft Exchange Server
        Organization Preparation                                                                         
    FAILED
         The following error was generated when "$error.Clear();
            install-DefaultAcceptedDomain -Name $RoleFullyQualifiedDomainName -DomainName $RoleFullyQualifiedDomainName -Dom
    ainController $RoleDomainController
    " was run: "The type initializer for 'Microsoft.Exchange.Flighting.RotationHash' threw an exception.".
     Task module "CmdletHealthCountersModule.Task_IterateCompleted" fails with exception "The type initializer for 'Microsof
    t.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be aff
    ected.
     Task module "CmdletIterationEventModule.LogCmdletIterationEvent" fails with exception "The type initializer for 'Micros
    oft.Exchange.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be a
    ffected.
     Task module "CmdletHealthCountersModule.Task_Release" fails with exception "The type initializer for 'Microsoft.Exchang
    e.Flighting.RotationHash' threw an exception.". This module is skipped. Task execution result should not be affected.
    The Exchange Server setup operation didn't complete. More details can be found in ExchangeSetup.log located in the
    <SystemDrive>:\ExchangeSetupLogs folder.
    PS C:\temp\ex2013cu3>

  • Exchange 2013 - Public folder search not working

    Hi There,
    We have Exchange 2013 install on server 2012 and clients using Outlook 2010 on Windows 7.
    Since we have installed the system a search of the public folders always returns no results even if we know the email is there. Any suggestions?
    Thank you
    Dave

    Hi Triumphtech,
    Yes, if our Exchange 2003 environment is healthy, it will work.
    Please forgive me for the silly clarification. If we used Exchange 2003 and wanted to migrate to Exchange 2013. We must migrate to Exchange 2007/2010 first, then to Exchange 2013.
    So please make sure we have moved the public folder successfully first.
    And great information from Tarique Noorain.
    According to  the article, I found some points for your reference:
    1. Although a full text search of public folder content is available, public folder content isn't searchable across public folders and the content isn't indexed by Exchange Search.
    2. You must use Outlook 2007 or later to access public folders on Exchange 2013 servers.
    Feel free to contact me if there is any problem.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Livecycle ES4 and Microsoft Exchange 2013

    Hi,
    My customer inquired me of configuring LiveCycle ES4 with Microsoft Exhange 2013 but supported documentation says that LiveCycle only supports Microsoft Exhange 2010 and earlier. ¿Could be posible LiveCycle ES4 SP1 either supports Microsoft Exhange 2013 or configure an account in Microsoft Exhange 2013 for configuring in Livecycle without getting on troubles?
    Thanks in advance.

    MS Office 2013 is also not supported with ES4 SP1.
    Here is the link to updated documentation - http://helpx.adobe.com/livecycle/help/livecycle-es4-supported-platforms.html#Software support for PDF Generator
    Regards,
    Varun

  • Changing AD Domain name with Microsoft Exchange 2013

    Hello everyone,
    we need to change our Active Directory Domain name from .local to another naming convention.
    We are running a Windows Server 2012 R2 environment with Exchange 2013.
    - Domain Controller 
    - File Server
    - Exchange 2013
    Running on a VMware ESX Host.
    What is the applied way to change the Domain name? Or is there no way to change in the running Forest and we have to re-setup everything?
    Thank you for your answers.
    Regards,
    Sebastian

    Hello,
    You need install new Exchange server in your new enviroment (forest).
    Please read this link:
    Prepare mailboxes for cross-forest moves using the Prepare-MoveRequest.ps1 script in the Shell
    Other nice article:
    Moving to a new forest and retaining the same SMTP domain ( with native scripts ) -
    Part I
    Regards

  • Why is the Microsoft Office Access Database Engine data source looking for a workgroup information file?

    While trying to import to MSSQL2012 from SSDT using the wizard from an Access 2013 DB (.accdb) which is password protected, I get the following error with the username blank and the password field correctly populated: 
    Cannot start your application. The workgroup information file is missing or opened exclusively by another user. (MicrosoftOffice Access Database Engine)
    But according to this link:
    http://office.microsoft.com/en-us/access-help/what-happened-to-user-level-security-HA010342116.aspx
    MSA10 and beyond shouldn't need workgroup information files, although it's not clear to me if they are
    created/used or not.
    I can point the wizard to some local version of system.mdw at Advanced -> All -> Jet OLEDB:System Database, and then the error becomes:
    Not a valid account name or password. (Microsoft Office Access Database Engine)
    for any username I can think of.
    Questions:
    1.  Why does this data source insist on looking for a workgroup information file even though user-level security should be disabled?
    2.  Why does the Open dialog box for the Microsoft Access Database Engine have *.mdb as the only selectable filetype?
    3.  How can I get around these errors for an .accdb that is password protected?
    Thanks!

    Hi JordanPG,
    To connect to Access 2007 or later database, we need the Microsoft ACE 12.0 OLE DB driver. SQL Server only installs the Microsoft Jet 4.0 OLE DB driver which can be used to connect to Access 2003 or earlier database. Besides, the Microsoft Jet 4.0 OLE DB
    driver only has 32-bit version, but the Microsoft ACE 12.0 OLE DB driver has both 32-bit and 64-bit version. However, the 32-bit and 64-bit Microsoft ACE 12.0 OLE DB drivers cannot be installed on a single server.
    According to your description, you can use the 64-bit SQL Server Import and Export Wizard to load data from the Access database, so the 64-bit Microsoft ACE 12.0 OLE DB driver is installed on your computer. Since the BIDS/SSDT is a 32-bit application, the
    64-bit Microsoft ACE 12.0 OLE DB Provider is not visible in BIDS/SSDT. So, when you said that you select “Microsoft Access (Microsoft Access Database Engine)" in the SQL Server Import and Export Wizard (it is actually the 32-bit version) started by the SSDT,
    I think it should be “Microsoft Access (Microsoft Jet Database Engine)”. Because the Microsoft Jet 4.0 OLE DB driver only supports Access 2003 or earlier format, it threw the error “Test connection failed because of an error in initializing provider. Unrecognized
    database format 'C:\myDB.accdb'”.
    In this situation, you have two approaches to avoid this issue:
    Launch the SQL Server Import and Export Wizard (64-bit), and select “Save SSIS Package” to “File System” on the “Save and Run Package” page. Then, the package will be saved to a specified directory. After that, you can add this existing package to a SSIS
    project. The status of the corresponding OLE DB Connection Manager should be Work Offline, or the OLE DB Source will throw an error about 32-bit driver if the Connection Manager is not in Work Offline status, you can ignore that and the package can run successfully
    in SSDT as long as the project is set to run in 64-bit runtime mode.
    However, for the SSDT 2012 integrated with Visual Studio 2012, the 64-bit runtime mode is disabled. In this situation, to run the package in SSDT, you have to uninstall the 64-bit Microsoft ACE 12.0 OLE DB drivers and install the 32-bit one. Here is the
    download link:
    http://www.microsoft.com/en-in/download/details.aspx?id=13255 
    Regards,
    Mike Yin
    TechNet Community Support

  • First Exchange 2013 server in 2010 Deployment - 2010 edge is routing SOME inbound mail to new server where it fails.

    I have a Barracuda filter receiving all inbound internet mail which delivers to the edge server (both in DMZ).  I have one 2010 edge server and one 2010 ht,cas,mailbox server.   I have added a 2013 server and started working
    on configuring virtual directories.  This is a far as I have gotten. Goal is once new box is working to move all mailboxes to 2013 server and remove 2010 mail box server and keep Barracuda and 2010 edge server to pass mail to the 2013 box.
    My issue is the edge server is already passing inbound internet mail to the new 2013 server.  I see the mail being accepted by the Barracuda and message tracking on the edge shows it as delivered to the new 2013 server, but mailbox
    users never receive.
    Is my solution to simply create a new send connector from the 2013 server to the 2010 box or could this be something else?
    And why is it delivering to a server with now mailboxes on it yet?
    Thank you for any help
    dean

    Hello Dean,
    I understand that the message tracking log indicates the email delivered to Exchange 2013 server. Please check the message tracking log on both Exchange 2013 server and Exchange 2010 server.
    How about the result? Have you created new 2013 mailbox and tested if it works?
    As for the send connector, actually an intra-org send connector will be involved for internal mail flow within an organization. So there is no need to create another send connector.
    In addition, I’d like to share you an article about Edge Subscriptions:
    Title:
    Understanding Edge Subscriptions
    Link:
    http://technet.microsoft.com/en-us/library/aa997438(v=exchg.141).aspx
    Regards,

  • 2 exchange 2013 multirole server and 1 addess for Outlook Anywhere. How to?

    Hello everybody.
    I'm coming to you with a question about my new Exchange 2013 infrastructure. 
    I have 2 Exchange 2013 SP1 servers. Both are multirole (CAS + MBX). My servers are Server12 and Server13. 
    I created a DAG which IP adderss is 192.168.3.30 (Servers IP are 3.31 and 3.32). Everything's working fine. 
    For CAS High Availability, I followed this thread : http://exchangeserverpro.com/exchange-2013-client-access-server-high-availability/
    On my firewall, I use NAT to send https flow from my public IP address (mail.domain.fr, external domain
    published on internet) to point to mail.domain.org (internal domain, non published on Internet). The mail.domain.org alias is my record defined in my internal DNS to
    point to my 2 multirole server, as shown in the tutorial above.
    I encounter a problem with external outlook anywhere. My problem comes with Outlook Anywhere which is not working fine when I redirect https flow to my cluster IP address (192.168.3.30) (DAG's address, corresponding to my servers). If I do the same redirection,
    but pointing to only one of my servers, it's working fine. In Exchange, external outlook Anywhere directory points to mail.domain.fr
    But anyway, if this servers goes down, I have to change manually the NAT on my firewall. And I don't want to :). 
    How can I do ? Can I do something without a physical load-balancer? 
    Thanks

    You cannot point Outlook Anywhere to your DAG cluster IP address. It must be pointed to the actual IP address of either server.
    For no extra cost DNS round robin is the best you will get, but it does have some drawbacks as it may give the IP address of a server you have taken down for maintenance or the server has an issue.
    You could look to implement a load balancer but again if you are doing this for high availability then you want more than one load balancer in the cluster - otherwise you've just moved your single point of failure.
    Having your existing NAT and just remembering to update it to point to the other server during maintenance may suit your needs for now.
    If you can go into more detail about what the high availability your business is looking to achieve and the budget we can suggest the best method to meet those needs for the price point.
    Have a great day
    Oliver
    Oliver Moazzezi | Exchange MVP, MCSA:M, MCITP:Exchange 2010,Exchange 2013, BA (Hons) Anim | http://www.exchange2010.com | http://www.cobweb.com | http://twitter.com/OliverMoazzezi

  • BOL Search/Query Object for Schema Search!.

    Hi All,
    I have to do search for categorization schemas, as the first step I opened the standard schema search component ( GS_MCAT ) and found that the Dynamic Search Object responsible for the same is:   'MC_DynaQSchemaByAttributes'.
    Now, I have 2 questions 4u
    1.  If I run the BOL browser by giving the component set as 'all' I couldnt see this query!. how can I find
    this in BOL/MODEL browser
    2. Is there any standard BOL Search/Query Object on which I can perform a search on Schema based on the product assigned at the categorization level!.
    Any help/hint highly appreciated!,
    Thanks in Advance, Sudeep..

    Also solved.
    As SAP tends to confuse people with the "ALL" component set, ...
    I debugged the "CL_CRM_CATEGO_GENIL" class. Here's the component set you need to load:
        lv_core->start_up( 'ONEORDER' ).

  • Exchange 2013 with Outlook 2010 asking sometime for credentials

    Hi Everyone,
    I'm running Exchange Server 2013 on a Windows Server 2012.
    Some of my user are sometime asked for credentials.
    It happens both at outlook launch and when outlook is running.
    And when we just cancel the credentials windows without password, outlook is connected to exchange again.
    Everyone is running Office 2010 with SP1.
    I have tried to put Outlook anywhere to NTLM and Negotiation authentication but it doesn't work either.
    Any idea ?
    Thanks in advance

    I am getting this same problem. I checked all the steps in "Configure Mail Flow and Client Access" to no avail. When I click cancel in the credentials request popup, Outlook carries on and seems happy. Before long the credentials request returns
    though.
    We are running Exchange 2010 and have just added an Exchange 2013 Server. The errors I am getting are with new 2013 mailboxes and migrated mailboxes.
    I ran "Test E-mail AutoConfiguration" and in the log, I see it first tries to contact our Exchange 2010 Server. After this fails, it then contact our Exchange 2013 Server.
    SMTP=[email protected]
    Attempting URL
    https://smtp.domain.com/autodiscover/autodiscover.xml found through SCP
    Autodiscover to
    https://smtp.domain.com/autodiscover/autodiscover.xml  starting
    GetLastError=0; httpStatus=401
    GetLastError=0; httpStatus=302
    Autodiscover to
    https://smtp.domain.com/autodiscover/autodiscover.xml  Failed (0x800C8204)
    Autodiscover URL redirection to
    https://mail.domain.com:443/autodiscover/user..domain.com/autodiscover.xml starting
    GetLastError=0; httpStatus=401
    GetLastError=0; httpStatus=200
    Autodiscover to
    https://mail.domain.com:443/autodiscover/user..domain.com/autodiscover.xml Succeeded (0x00000000)
    Any help will appreciated 

  • Clean install Exchange 2013 on win2012 server and separate win2012 R2 DC not sending mail from Outlook

    Hello,
    I'm struggeling with a problem. I've a clean installed exchange 2013 on a windows 2012 server. The DC is on a separate server. But I can't send a mail from Outlook and the recieve connector is correctly configured. There are no error's and mail in the queue
    Even sending a mail from the OWA ends in the Drafts folder from that user.
    Can somebody help me with this?
    Thanks Michel

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

Maybe you are looking for

  • Purchase Order Delivery Tolerances

    Hi All, I have question. On  Purchase Orders we have "Underdelivery Tolerance and over derdelivery Tolerance " defaulted in the PO detail.  This is coming from Info record and it is not maintained then materail master. In materail master this detail

  • FMRP_RFFMAV02X - Fund Center

    Dear all The client Implemented Funds Management, and we are reffering FMRP_RFFMAV02X - this report, where, Down payment has been done against PO, while PO created that time the required Budget wil consume. but that Budget Fund is not showing this re

  • Not able to import in iPhoto 09 from Nikon D90

    After upgrading to iPhoto 09 I cannot anymore import pictures from my Nikon D90. After having performed the import in my library I can only see the thumbnails, but if I try to view the full image for editing or just for viewing full screen I just see

  • Strange chapter behaviour

    We are having a particularly frustrating problem that has cost us a few $ in DL disks. Here is what I have identified to be the problem. In the iDVD6 project, everything works fine in the preview mode. We burn our disk and find that it plays just as

  • Assessable valaue not maintained in sub-contcting challan

    Hi Experts, Here a material was sent for sub-contracting with challan . No assessable value was not entered in the challan, the material received after 180 days, while receiving the material, the system throws the error"Assessable value 0"  not able