Need help with Exchange 2010 Diag and implementation

I NEED HELP FOR EXCHANGE 2010 DAG AND THE IMPLEMENTATION THAT CAN HELP-IM I IN THE RIGHT SUPPORT GROUP?

Hello HectorLopez_790,

Microsoft Communities is for consumer issues with Windows 8, Windows 7, Windows Vista and Windows XP. Your question with Exchange would be better supported in the TechNet forums.
Click here for a link to transfer your question in the forums of Exchange.

Thank you

Marilyn

Tags: Windows

Similar Questions

  • Need help with the OSB Assign and replace the

    I have a proxy service that receives the SOAP message:

    " < = xmlns:soapenv soapenv:Envelope ' http://schemas.xmlsoap.org/SOAP/envelope/ "xmlns:SOAP - ENC =" " http://schemas.xmlsoap.org/SOAP/encoding/ "container =" " http://www.w3.org/1999/XMLSchema ">

    " < = xmlns:soapenv soapenv:Header ' http://schemas.xmlsoap.org/SOAP/envelope/ ">

    < / soapenv:Header >

    < soapenv:Body >

    " < pidx:OrderChange pidx:transactionPurposeIndicator = 'Replace' xmlns:pidx = ' http://www.API.org/pidXML "xmlns =" http://www.API.org/pidXML "" xmlns: xsi = " http://www.w3.org/2001/XMLSchema-instance "xsi:schemaLocation="C:\shareIt\OrderChange_1-2.xsd" > ""

    ...

    < / pidx:OrderChange >

    " < = Xmlns:ocp DeliveryInformation ' http://www.digitaloilfield.com/OCP ">

    ...

    < / DeliveryInformation >

    < / soapenv:Body >

    < / soapenv:Envelope >

    I need to take the OrderChange element and place it in a SOAP body and the DeliveryInformation element and place it in the SOAP of the same SOAP message header.

    The SOAP message is then sent to a business service that makes an HTTP POST of the SOAP XML.

    I created the service of the company and he sent some data test SOAP and it works very well, but cannot create a bridge between the Proxy and the Business Service.

    In the stream of messages of Proxy I tried to do an assignment in a routing. I tried to do the following:

    1. an XQuery query transform to generate the XML SOAP just described

    2. not the entitlement where the "Expression" is the transformation and the Variable is a variable based on a schema for SOAP.

    I can see that the company is trying to be invoked, but the SOAP data does not have to be formatted or passed.

    It is the right approach or is their a better way of

    1. create the SOAP wrapped XML

    2. call the Business Service.

    Any suggestions are appreciated. I can provide more detail if necessary.

    Kind regards.

    Thank you Vlad...

    I think I'm getting in that direction now. Just do some debugging.

    Appreciate the input. I will update with final results.

    Again, your help is greatly appreciated.

    Kind regards.

  • Need help with keyframes for start and stop an effect

    I use a mask and blurred for a few seconds. I understand that I must use keyframes to indicate when to start and stop this effect in the video, so that the same area is not trimmed for video full.

    The problem is, I can't find help by correctly setting the keyframes. When I opened the menu keyframes in the effect, it seems that I must together for both the mask took and the blur effect. I did... to start and stop at specific times, but the rest indeed throughout the video, so of course miss me something by using keyframes. The manual to create effects is not useful. I need assistance with keyframes as what I'm doing is clearly not working. Help!

    If the mask does not move that you don't have to set the keyframe. For the blur, click the stopwatch next to 'bluriness' add keyframes as below, the Reds don't blur and blue those maximum blur this fade effect.

  • Need help with PL/SQL so and then select

    Hello guys, I am new to the PL/SQl programming (only Java experience) and I'm pretty stuck to my task. It would be great if you could help me. I am in programming with Oracle SQL * Plus Version 10.2.0.3.0

    Whenever a user logs on to the server a database entry is created with information about the logged-on user. I need to create a PL/SQL command that selects all the information from last month. Unfortunately, the date_stamp column has a certain weird format: 1131210 for December 10, 2013


    My idea so far:


    DECLARE

    v_today NUMBER;

    BEGIN

    v_today: = TO_NUMBER (TO_CHAR (SYSDATE, 'MM'));       -Save the number of the month (e.g.12) in v_today

    IF v_today = 01 THEN

    SELECT * from audittrl

    WHERE the date_stamp between 1131201 AND the 1131231;

    ELSIF v_today = 02 THEN

    SELECT * from audittrl

    WHERE the date_stamp between the 1130131 AND 1130101;

    .......

    END IF;

    END;

    /

    Error code: "an INTO clause in this SELECT statement.

    I do not want to save the result to select a variable, hope you can help me. Thanks in advance.

    Hello

    6a4d1bcd-c00e-4dac-AB64-9b6bdb1652d1 wrote:

    Thanks, I'll try that, if still get caught once, I'll be back. Anway I'm not sure of the solution of Chris227, because I can't test it right now. From my point of view it gives you information the current month (e.g., December) and not the month previous (-online November), or have I missed something. ?

    You are right.  In addition, it does not for a given year.  If you have data from several years in the table, it will select lines for the month of December 2012, 2011, 2010,... but also of 2013.

    Here's a way to get around that:

    DECLARE

    prev_month_start PLS_INTEGER: = TO_NUMBER (TO_CHAR (ADD_MONTHS (SYSDATE-1)

    , "YYMM"1' "01"

    )

    );

    this_month_start PLS_INTEGER: = TO_NUMBER (TO_CHAR (SYSDATE

    , "YYMM"1' "01"

    )

    );

    BEGIN
    FOR (IN) rec
    SELECT *.
    Of audittrl
    WHERE the date_stamp > = prev_month_start
    AND date_stamp< >
    ORDER BY user_id, date_stamp - or other

    )
    LOOP
    dbms_output.put_line (rec.date_stamp);
    dbms_output.put_line (rec.event);
    dbms_output.put_line (rec.user_id)
    dbms_output.put_line (rec.host_name);
    END LOOP;
    END;

    This should also be more effective, because it will allow the optimizer to use an index on date_stamp.  Even if there is no index, it will be more effective because it avoids calling any function (for example, SUBSTR) on each line of the table.

    You needn't PL/SQL to get these results.  Just use SQL, you might say:

    SELECT event, host_name, user_id and date_stamp
    Of audittrl
    WHERE the date_stamp > = TO_NUMBER (TO_CHAR (ADD_MONTHS (SYSDATE-1)
    , "YYMM"1' "01"
    )
    )
    AND date_stamp<  to_number="" (="" to_char="" (="" sysdate="" to_number="" (="" to_char="" (="">


    , "YYMM"1' "01"
    )
    )

    ORDER BY user_id, date_stamp - or other

    ;

    Your front end will provide column headers and touch the data so that the columns line up.  It can also set the output to a file.  (For example, if your front-end is SQL * Plus, you can use the command of the COIL.)

    I guess date_stamp is a NUMBER.  If it is a string, the solutions above can be simplified a bit.

    This problem (and many other problems) would be so much simpler if date_stamp was a DATE column.  Using numbers or strings to store the date information is simply asking for trouble.

  • HP 15 - ac043tu: need help with the key feature and WiFi Drivers

    Hi team,

    I try to activate the key feature and WiFi in my new HP 15 - ac043tu laptop.

    I use Windows 7 Ultimate 32 operating system.

    I installed all the drivers available on the site Web of HP (http://support.hp.com/us-en/drivers/selfservice/HP-15-ac000-Notebook-PC-series/7771404/model/8326116... for my product.

    To activate the function key, I installed driver: HP System Event Utility - sp71716, but it doesn't seem to work.

    In Device Manager, network controller shows exclamation as shown below. I tried to install Broadcom and Realtek WLAN drivers, tried to turn on/off, uninstalled/reinstalled drivers referring to other positions, but that did not work.

    I also tried to install HP SoftPaq Download Manager, but it did not help. Tool does not show my product described.

    I went through a similar question posted by other members, but failed to get the solution. This question gave me hard times.

    Appreciate your help in this regard.

    Thank you

    Kishan

    Hello:

    You need these drivers wireless and bluetooth driver 64-bit file should have the 32-bit drivers too.

    Network controller (wireless card):

    FTP://FTP.HP.com/pub/SoftPaq/sp71501-72000/sp71528 .exe

    Bluetooth:

    This package contains the Broadcom bluetooth driver and software for the laptop models running a supported operating system. Broadcom Bluetooth 4.0 driver is required to activate the bluetooth 4.0 Broadcom devices and is compatible with Broadcom bluetooth 3.0 and earlier versions.

    File name: sp71440.exe

    Unfortunately, I can't help you with the next question.  The system of the event utility would be the only software I can think that would have worked.

    You can try the software HP Quick Launch, but I doubt it will work.

    http://h20565.www2.HP.com/hpsc/SWD/public/detail?swItemId=ob_112835_1

  • NEED HELP WITH SELECTION was GOOD AND good POWER (HP dc7900 Convertible Minitowers) MARKET

    Hello! I have a HP dc7900 in Minitour Convertible with the following specifications:

    Core 2 Quad q9400 2, 66 GHz

    nVidia GeForce GT430 1 GB

    Elpida 2x2gb RAM 800 mhz (I'll add 2 x 2 earlier so I can get 8 GB)

    Card mother HP 3032 h

    Block POWER 365 stock w.

    So I was planning to buy a Radeon HD 7770 (MSI, Palit, or Sapphire) because I have a small budget and this seems to be a good fit, but there's better food, so I was wondering if there are more good, good markets that would be able to manage my PC (with the new gpu, 8 GB of ram and a single PCIe 6-pin). I also have an MS PRO-550 Industrial, ATX in my old PC and I wanted to add, but I just discovered that it is very bad and that there actually 200w (not 550) :/ Any help would be appreciated P.S I found 'used' Corsair CMPSU-400cx and an Antec SU - 430 then how do get?

    I see that your desired card has a minimum 400W power quantity, but I recommend moving more to a 500W or 600W for handling units your other hardware too although a little extra space so you would be upgraded.

    I am very pleased with the PSU Corsair, I recently installed a CX500 in my machine, although in a smaller case, you need good cables.

    I hope this helps.

  • BlackBerry Z10 need help with the facebook chat and notifications

    Hey, guys.

    Since I updated to version 10.2.1.2102 of the software I was not able to receive messages from the hub of blackberry facebook chat. Before the update whenever I had my phone connected to a wireless network it was automatically getting messages facebook on the hub. Now, although I can send messages and receive messages if this contact is online, once I close the conversation hub is gone and I don't get the messages, only the "new messages of * person *" e-mail after a certain time.

    In addition, I don't get notifications about birthdays of the people. I get the "next event" x hours notification on the lock screen, if I go in the calendar I see the notification at the top of the page, but it does not sound to warn me of my birthdays from the contacts.

    Can someone help me with this two problems? Thank you!

    Fact. I needed to update the facebook app.

  • Need help with an Export-CSV and ForEach loop

    Hi guys, I'm total NOOB in CLI so please forgive the stupid question.

    I need your expert advice for the very large environment and will award points.

    I have a working script that alerts to our logout ESXi hosts, maintenance and NotResponidng mode

    His job well, but need to send a mail to all three of our VCenters

    Current script only works for a VC at a time. How do I ForEach and always the hose of the same body CSV and HTML

    It would be nice to have an HTML and CSV output that looks like this (assuming that there are currently disconnected etc.)

    I have a set of credentials, that work on all 3 of my VC

    VC1

    Host1 disconnected

    Host2 NotResponding

    VC2

    Host3 disconnected

    Host4 NotResponding

    VC3

    No disconnected/maintemance/notresponding hosts for VC3

    Here is my current code, etc. of the hidden passwords >

    # Clear old sessions
    Disconnect VIServer VC01-confirm: $false

    # VC01 VC check for disconnection and Maintenance mode and does not
    SE connect-VIServer-Server VC01 - FakeUSer username-password FakePassword

    $Report = get-VMhost-State disconnected, maintenance, NotResponding | SELECT name, connectionstate

    # scan info to be html and give him a date stamp

    $ReportHtml = $report | ConvertTo-Html | Out-string

    # Write CSV file and give it a character of data

    $filePath = "C:\PS\Output".
    $filename = "VC01disconnectedHosts".
    $CurrentDate = get-Date
    $CurrentDate = $CurrentDate.ToString ('MM-dd-yyyy_hh-mm-ss')

    $Report | Export-Csv "C:\PS\Output\VC_$Currentdate.csv".

    # Send the info by Mail

    Send-MailMessage-to [email protected] - subject VMwareMorningcheckVC01$ CurrentDate '
    SmtpServer - mail.sanlam.co.za - from [email protected] '
    -BodyAsHtml-body $reportHtml - accessories 'C:\PS\Output\VC_$CurrentDate.csv '.

    Thank you in advance for help.

    You could use a ForEach loop through all vCenters and combine the results in a $1 report.

    Something like that

    $vCenters = "VC01","VC02","VC03"
    
    # Clear old sessionsDisconnect-VIServer $vCenters -Confirm:$false
    
    $report = @()# Check VC VC01 for Disconnects and Maintenance mode and Not Respondingforeach($vc in $vCenters){  Connect-VIServer -Server $vc -User FakeUSer -Password FakePassword
    
      $Report += (Get-VMhost -State Disconnected,Maintenance,NotResponding | Select @{N="VC";E={$vc}},name ,connectionstate)  Disconnect-VIServer $vc -Confirm:$false}
    
    # parse info to be html ,and give it date stamp
    
    $ReportHtml = ($report | ConvertTo-Html | out-String)
    
    # Write out CSV file and give it a Data Stamp
    
    $CurrentDate = Get-Date -Format 'MM-dd-yyyy_hh-mm-ss'$filename = "C:\PS\Output\DisconnectedHosts-$($CurrentDate).csv"
    
    $Report | Export-Csv -Path $filename -NoTypeInformation -UseCulture
    
    # Send info with Mail
    
    Send-MailMessage -To [email protected] -Subject VMwareMorningcheck$CurrentDate `-SmtpServer mail.sanlam.co.za -From [email protected] `-BodyAsHtml -Body $reportHtml -Attachments "C:\PS\Output\DisconnectedHosts-$($CurrentDate).csv"
    

    I added the property vCenter for each line in the report

  • Need help with movie clip display and timer

    I worked on a game in flash for the last couple days and this is my first major game so there was a lot of problems.  For those who have helped so far thanks so much!

    I think that I finally got it with a few exceptions, they are.

    1. the clip that serves as my pop-up window is popping up behind all my mobile icons.  I need over them of course.

    2. I need to find a simple way to stop time while the pop up is in place and to make up the time when she disappears.

    OR

    3. I need to add 5 seconds to the game clock when the user draws a question mark to make it appear as if the clock stopped.

    If someone has an incentive it would be greatly appreciated!  Thanks in advance!

    This is my code of timer clock to date!

    onClipEvent (enterFrame) {}
    If (_root.time == 30) {}
    _root. TECH = 9;
    _root.intervaln = 30;
    }
    If (_root.time == 10) {}
    _root.intervalz = 10;
    }
    If (_root.time == 0) {}
    _root.gotoAndStop (3);
    }
    }

    Kapelski

    1. you should not set any code for an object.  all your code must be attached to frames or in classes.

    2. use swapDepths() to change the depth of a movieclip

    3. There is nothing in your code on a timer.

  • Need help with query for points and polygons, 2 tables of

    Hi all

    I'm slowly stumbling along trying to figure things out space.

    I have two tables, GEO_POINTS:
    (
    DEP_ID NUMBER (12) NOT NULL,
    LINE NUMBER 4 NOT NULL,.
    MDSYS. POINT_LOC SDO_GEOMETRY
    )

    and POLYGON_AREAS:
    (
    POLY_NAME VARCHAR2 (120 CHAR),
    POLY_DESC VARCHAR2 (120 CHAR),
    MDSYS POLY_POINTS. SDO_GEOMETRY
    )

    Neither table is engraved in stone, if any, I can change some structure.

    I'm trying to understand how to write a query to retrieve all the points in a polygon, perhaps even with an optional buffer provided by the user.

    Conversely, I would probably also need to know what polygons a point would have drawn in, and it's the only request I could make any progress on.

    What I have so far, which is not working properly, is the following:

    Select * from deposits_search where dep_id in)
    SELECT dep_id
    OF geo_points, polygon_areas
    where (sdo_relate)
    poly_points,
    (SELECT point_loc
    OF geo_points
    WHERE dep_id = 10282444),
    ("mask = ANYINTERACT") = "TRUE");

    In the light of the foregoing, I want to select all the lines of a third table (DEPOSITS_SEARCH), for all polygons which is a point. The DEP_ID column is my primary key for most of the data tables in the database, and the number rose in my application query. However, the above returns all rows. It should only return one, because I only have a polygon of test defined so far.

    Any help is greatly appreciated. Thank you

    Bill Ferguson

    in which case you must include a line of buffer for the interaction between the points and polygons (with a stamp),

    better, you use the SDO_WITHIN_DISTANCE operator.

    http://download.Oracle.com/docs/HTML/B14255_01/sdo_operat.htm#i77653

    Not so sure what you mean with "I always have problems while providing a point location and extract the polygons that point would be plotted in" as so-called before unless you want that as a 'transitional instance of a geometry. (Specified using a variable binding or a builder SDO_GEOMETRY.) »

    http://download.Oracle.com/docs/HTML/B14255_01/sdo_operat.htm#i78531

    Read what geometry2 means in there. Read the examples and you will see that you have the geometry second in space operator as a builder. If this is what you need.

    Luke

  • Need help with copy/move programs and Admin files to other users of the account.

    I created 'connect users of accounts' and 'lost' the original Admin, now I know how to access certain programs and others in shift, click with the right button on connection as an administrator. but can't seem to copy or move some things into "shared folder" can someone help me please? Thanks for any help! No real computer smart right now, but im learning :)

    Hello

    You can also try to connect to the original administrator account by pressing CTRL + ALT + DELETE (all three keys twice at the same time), you will get the classic login prompt. Type the administrator user name and password. You should be able to connect.

    To activate this visible account to the Welcome screen, once logged in click on Start-> Run Type &-> Regedit-> ok.

    Navigate to HKEY_LOCAL_MACHINE-> SOFTWARE-> Microsoft-> Windows NT-> CurrentVersion-> Winlogon-> SpecialAccounts-> UserList

    Select the username administrator and set the value to 1-> of the close Registry Editor and restart your computer.

    I hope this helps.

  • Re: Satellite A500 - need help with the FN key and Toshiba programs

    Hello

    The fn key Eco and other buttons specialized such as the one that opens Windows Media Player have stopped responding on my PSAM3A-03P00E A500 running Windows Vista. I can always change the brightness of the screen with the FN key, but no menu appears at the top of the screen.

    Also Toshiba programs that are intended to be run at the start as PC Health Monitor are not auto start, even if they are enabled in the Configuration (msconfig) system.
    The Bluetooth Manager however initially runs upward.

    I have blue screen errors, but they are not a problem since I have updated the BIOS to 1.5 and uninstalled Zonealarms.

    See you soon

    Hello

    Try reinstalling the additional package of Toshiba. AFAIK, this utility is responsible for these functions.

  • I need help with my streets &amp; trips, and I can't get anything to recognize my product key

    I get the error oxc004d301, tried the help site and nothing works.

    Hello

    I suggest post you you question in Streets and Trips forum for better support.

    http://social.Microsoft.com/forums/en-us/streetsandtrips/threads

  • Need help with virtual shelf - drag and drop between components?

    Hello

    Im trying to create a virtual shelf, where book spines are clips of individual video that can be dragged and re-ordered on the set.  For the moment I can drag the thorns to a target affected, but not just any target or "nudge" the position of other books along.

    I'm sorry that if that's a little vague I'm not experienced in as3, please do not hesitate to ask any questions and I'll do my best to answer.  IM thinking that a table is necessary which occupies the posts, but I'm not sure how to put it all together!

    Any help is greatly appreciated! The code I have so far is:

    import flash.events.MouseEvent;
    import flash.display.MovieClip;

    var dragArray:Array = [red, blue, green, purple, yellow];
    var matchArray:Array is [target1, target2, target3, target4, target5];.

    var currentClip:MovieClip;
    var startX:Number;
    var startY: number;

    for (var i: int = 0; i < dragArray.length; i ++) {}
    dragArray [i] .buttonMode = true;
    dragArray [i] .addEventListener (MouseEvent.MOUSE_DOWN, item_onMouseDown);
    matchArray [i] .alpha = 0.2;
    }

    function item_onMouseDown(event:MouseEvent):void {}
    currentClip = MovieClip (event.currentTarget);
    startX = currentClip.x;
    startY = currentClip.y;
    addChild (currentClip); bring to front
    currentClip.startDrag ();
    stage.addEventListener (MouseEvent.MOUSE_UP, stage_onMouseUp);
    }

    function stage_onMouseUp(event:MouseEvent):void {}
    stage.removeEventListener (MouseEvent.MOUSE_UP, stage_onMouseUp);
    currentClip.stopDrag ();
    var int index = dragArray.indexOf (currentClip);
    var matchClip:MovieClip = MovieClip (matchArray [index]);
    If (matchClip.hitTestPoint (currentClip.x, currentClip.y, true)) {}
    a match was found. Position the clip on the corresponding clip:
    currentClip.x = matchClip.x;
    currentClip.y = matchClip.y;
    make not draggable:
    currentClip.removeEventListener (MouseEvent.MOUSE_DOWN, item_onMouseDown);
    currentClip.buttonMode = false;
    } else {}
    football match has not, so send the clip to the back where he began:
    currentClip.x = startX;
    currentClip.y = startY;
    }
    }

    Yes, you can double click on activate your movieclips and assign the function double click listeners who use navigateToURL

    dragArray [0] .doubleClickEnabled = true;

    dragArray [0] .addEventListener (MouseEvent.DOUBLE_CLICK, f);

    function f(e:Event):void {}

    navigateToURL (new URLRequest ("http://www.adobe.com"));

    }

  • PS Newb needs help with resizing the image and print several sheet

    Hi, I am using PS CS3 to resize an image, I have so I can print to use as a map for a miniatures game.  I have no problem of scaling of the image to the appropriate size, but I can't understand how to print multiple image 8.5 x 11 sheets.  I thought I saw an option for such a procedure before, but maybe it was in another editing program.  If anyone has any ideas on how I could do this I would really appreciate hearing about them.  Thank you!

    Illustrator and InDesign are tiled printing, like CorelDraw. Photoshop, this title is not, but may be a few script for this. In your case, the simplest solution would be to save the file in PDF format and have Acrobat print a tiled (Page scaling of parameter in Acro print dialog box). You just need to make sure that your page corresponds to several pages. Unliek AI and ID, Acro chop only stuff based on standard paper sizes...

    Mylenium

Maybe you are looking for