Problem with Exchange Admin Center Web page Layout.

Hello Everyone,
I am facing one problem in Exchange 2013 CU2, ECP web page.
when I enter the URL of ECP the page loads properly and after entering the user credentials the ECP layout changes. To resolve the issue I have tried resetting the ECP virtual directory but no luck.
Request you all to please suggest what can be done.
And for reference attached is the screenshot of the Page Layout.
Thanks in Advance.
Hasan Sayyed.
Regards, Hasan Sayyed

Hi,
It’s a display issue, not web.config file setting issue.
Thanks,
Simon Wu
TechNet Community Support

Similar Messages

  • No problem with fonts, I said lost page layout, close boxes gone.

    Yes, there is a definite layout problem on gmail layout, lost all details, can't even see location of box to sign out, etc, but also in general ALL WEB PAGE LAYOUTS now appear as generic,, not specific to a site and many missing boxes, clicking locations do not appear for my ability to select things etc. All of these changes happened after a Firefox 30 upgrade which I was required to install for a tutorial Metrix learning system. Windows 8

    Possibly many changes were with Firefox29 rather than Firefox 30.
    I am not sure whether you are complaining a bout the Firefox interface or the web pages. If it is the web pages that may be a fault.
    What do these forum pages look like can you post a screenshot with your comments on what you feel is wrong.
    * [[How do I create a screenshot of my problem?]]
    *[[Websites look wrong or appear differently than they should]]

  • Pleaseeeeeee Help - Problems with position of my web page

    Hi, first sorry on my english
    I have problem with position of my page. I had made my web page in Indesign CS5 and exported to swf file. My web page is working fine (www.igor-flytying.com) but the page is not in the middle of the web browser. How can I fix the problem????? I am a beginer in Indesign. I had try to make some changes in html file (salign) but still nothing.
    Please HELLLLLPPPPPP
    Regards
    Aljosa

    Petteri, SWFObject is much better because it loads the JavaScript so you don't see it inside the HTML page, but it still wraps the swf in a div which by default will be positioned in the upperleft of the browser window.
    This is the only way I've been able to center using SWFObject—note that it's the "flashcontent" div style that does the centering not the align embed parameter:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <title>S W F | Centered</title>
    <meta http-equiv="Content-Type" content="text/html" />
    <!-- Centers the swf on the page. Note: width and height need to match the swf and margin left and right are -.50%-->
    <style type="text/css">
              #flashcontent {width: 1000px; height: 750px; margin-left: -500px; margin-top: -375px; position: absolute; left: 50%; top: 50%;}
    </style>
              <script type="text/javascript" src="swfobject.js"></script>
              <script type="text/javascript">
                        var flashvars = {};
                        flashvars.myFlashVar = "Testing";
                        var params = {}; //Embed parameters: http://kb2.adobe.com/cps/127/tn_12701.html
                        params.quality = "best";
                        params.align="t"
                        //SWFObject parameters: http://code.google.com/p/swfobject/wiki/api
                        swfobject.embedSWF("swftest.swf", "flashcontent", "1000", "750", "10.0", false, flashvars, params);
              </script>
    </head>
    <!-- ALT HTML TEXT-->
    <body style="background-color: #888888">
              <div id="flashcontent">
                        <a href="http://www.adobe.com/go/getflashplayer"><img src="getFlash.gif"  alt="adobe icon" border="0" /></a>
              </div>
    </body>
    </html>

  • Problem with retiriving links froma web page

    hi friends,
    ca n anyone help me out.i am trying to retrieve all the links from a web page .but all the linkjs are not being retrieved.can anyone tell me why.
    here i am submitting the code of it.
    private static ArrayList retrieveLinks(URL pageUrl, String pageContents, HashSet crawledList,boolean limitHost)
    // Compile link matching pattern.
    Pattern p = Pattern.compile("<a\\s+href\\s*=\\s*\"?(.*?)[\"|>]", Pattern.CASE_INSENSITIVE );
    Matcher m = p.matcher(pageContents);
    // Create list of link matches.
    ArrayList linkList = new ArrayList();
    while (m.find()) {
    String link = m.group(1).trim();
    // Skip empty links.
    if (link.length() < 1) {
    continue;
    // Skip links that are just page anchors.
    if (link.charAt(0) == '#') {
    continue;
    // Skip mailto links.
    if (link.indexOf("mailto:") != -1) {
    continue;
    // Skip JavaScript links.
    if (link.toLowerCase().indexOf("javascript") != -1) {
    continue;
    // Prefix absolute and relative URLs if necessary.
    if (link.indexOf("://") == -1) {
    // Handle absolute URLs.
    if (link.charAt(0) == '/') {
    link = "http://" + pageUrl.getHost() + link;
    // Handle relative URLs.
    } else {
    String file = pageUrl.getFile();
    if (file.indexOf('/') == -1) {
    link = "http://" + pageUrl.getHost() + "/" + link;
    } else {
    String path =
    file.substring(0, file.lastIndexOf('/') + 1);
    link = "http://" + pageUrl.getHost() + path + link;
    // Remove anchors from link.
    int index = link.indexOf('#');
    if (index != -1) {
    link = link.substring(0, index);
    // Remove leading "www" from URL's host if present.
    link = removeWwwFromUrl(link);
    // Verify link and skip if invalid.
    URL verifiedLink = verifyUrl(link);
    if (verifiedLink == null) {
    continue;
    /* If specified, limit links to those
    having the same host as the start URL. */
    if (limitHost && !pageUrl.getHost().toLowerCase().equals(verifiedLink.getHost().toLowerCase()))
    System.out.println("the given link does not exist");
    continue;
    // Skip link if it has already been crawled.
    if (crawledList.contains(link)) {
    continue;
    // Add link to list.
    linkList.add(link);
    return (linkList);
    Hope some one can help me outr of this .i susupect some problem with the regular expression used.
    it is unable to parse links like
    http://www.cricinfo.com/ci/engine/current/match/scores/live.html
    http://www.cricinfo.com/nzvind2009/content/current/series/366616.html

    kathiksagar wrote:
    i dont have much idea about html parser
    can u tell me how to do itHere are a couple of free parser written in Java:
    [http://java-source.net/open-source/html-parsers]
    I'm sure many of them have a manual, and/or have example code on their website on how to use it.
    Good luck.

  • Problem with printing selection of web page

    Print selection function from webpage don't print correctly. If text is marked then first line of text is printed not correct (printed only lower part of line). If text is longer than one page there is similar problem at the end of first page and begining of second. The problem occurs on HP LaserJet 4015 printer, and PDF creator too. Firefox 18.0.2 and firefox 19.0 , Windows 7 64bit

    Hi mrbcl1, unfortunately the answer is that Firefox has some bugs when it comes to printing selections!
    Typically, where the top of the selection is cut off, it means that Firefox is applying some style rules meant to position that part of the page on screen -- even though they are irrelevant when printing a selection. There's no built-in way to get Firefox to ignore those rules. You can try a different selection (keep more stuff above) or other interventions, but it can be a waste of time in many cases.
    Here are two workarounds. In both cases, the idea is to isolate the selected part of the page (hide everything else) so you can print it ''normally'', bypassing the limitations of the Print Selection feature.
    (1) Use the [https://addons.mozilla.org/en-US/firefox/addon/nuke-anything-enhanced/ Nuke Anything Enhanced extension]
    See: [https://support.mozilla.org/questions/927457#answer-333518 When using print selection in Firefox 12.0, it prints wherever the selection is on the page (on paper) instead of at the top of the page (of paper).]
    (2) Use a bookmarklet (snippet of JavaScript saved as a button on your bookmarks toolbar) to isolate the selection for printing.
    This is the technique I generally use due to force of habit. The details are in [https://support.mozilla.org/en-US/questions/943039#answer-384875 this post].

  • Firefox is my default browser, however i am not thinking of switching because it is having problems with button links on web pages, when i click a button it brings me to a white page on mozilla

    an example of a page gone wrong...
    http://ops.theladders.com/job/alert?et_id=1884492595&cr=2546606&alert=4675965?sign=y&thumbingJobList=2546229,2546638,2545219,2546565,2545967,2546784,2546606,2546513,2549099,2550891&link_id=176
    this is a link to a job site however it is impossible to get to it because when you hit apply in foxfire it brings up a blank screen (i can't give you the address because it just brings up a box without an address screen)
    it should bring up this link http://ops.theladders.com/viewExternalJob?jobId=2546606

    Have you submitted the hint button issue to the site for comment?
    It is hard to debug script problems without access to the page... If you want to research it yourself, start by opening the Error Console (Tools menu) and clicking the Clear button. Then reload the page and check the Console for any errors (red icon). These can indicate when scripts are not loading correctly. Then try to click the hint button and see whether that triggers any additional errors.
    The error messages generally are most useful to the page's programmer, but sometimes can reveal enough information to create a user solution (e.g., running a script through the GreaseMonkey extension that repairs the problem).

  • Exchange Admin Center 2013 SP1 worked for a day and then stopped working, possible OAB problems

    Here is a problem that has me confused. On a fresh Windows Server 2012 R2, I installed Exchange 2013 SP1. It was successful and for the first day everything was working well. I then installed all security updates. The next day, I could no longer log in to
    the Outlook Web App or Exchange Admin Center. I get the generic "something went wrong" message, and the only details are X-FEServer: LAKEVIEW-SERVER (our server name). Nothing else. In the event viewer, I have the logs below every time I try to log
    in. This is repeatable. Every time I attempt to log in the same 3 things appear in the Application Log.
    Event 1003, MSExchange Front End HTTP Proxy [Oab] An internal server error occurred. The unhandled exception was: System.Configuration.ConfigurationErrorsException: Microsoft.Exchange.HttpProxy.ProxyModule,Microsoft.Exchange.FrontEndHttpProxy
    does not implement IHttpHandlerFactory or IHttpHandler.    at System.Web.Configuration.HandlerFactoryCache.GetHandlerType(String type)    at System.Web.Configuration.HandlerFactoryCache..ctor(String type)    at System.Web.HttpApplication.GetFactory(String
    type)    at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Event 4999, MSExchange Common Watson report about to be sent for process id: 2460 (IIS Worker Process, w3wp.exe), with parameters: E12IIS, c-RTL-AMD64, 15.00.0847.032, w3wp#MSExchangeOABAppPool, System.Web, S.W.C.HandlerFactoryCache.GetHandlerType,
    S.Configuration.ConfigurationErrorsException, e0bc, 04.00.30319.34009. ErrorReportingEnabled: True
    Event 1310, ASP.NET 4.0.30319.0 Event code: 3008 Event message: A configuration error has occurred. Event time: 5/8/2014 9:46:45 AM Event time (UTC): 5/8/2014 4:46:45 PM Event ID: 2c98a65728a7475db0212291e3934ab7
    Event sequence: 19 Event occurrence: 9 Event detail code: 0   Application information:     Application domain: /LM/W3SVC/1/ROOT/OAB-1-130440407246522811     Trust level: Full     Application Virtual Path: /OAB
        Application Path: C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\OAB\     Machine name: LAKEVIEW-SERVER   Process information:     Process ID: 2460 (IIS Worker Process, w3wp.exe)
        Process name: w3wp.exe     Account name: NT AUTHORITY\SYSTEM   Exception information:     Exception type: ConfigurationErrorsException     Exception message: Microsoft.Exchange.HttpProxy.ProxyModule,Microsoft.Exchange.FrontEndHttpProxy
    does not implement IHttpHandlerFactory or IHttpHandler.    at System.Web.Configuration.HandlerFactoryCache.GetHandlerType(String type)    at System.Web.Configuration.HandlerFactoryCache..ctor(String type)    at System.Web.HttpApplication.GetFactory(String
    type)    at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)    
    Request information:     Request URL: https://localhost:443/OAB/     Request path: /OAB/     User host address: ::1     User:       Is authenticated: False     Authentication
    Type:       Thread account name: NT AUTHORITY\SYSTEM   Thread information:     Thread ID: 18     Thread account name: NT AUTHORITY\SYSTEM     Is impersonating: False     Stack
    trace:    at System.Web.Configuration.HandlerFactoryCache.GetHandlerType(String type)    at System.Web.Configuration.HandlerFactoryCache..ctor(String type)    at System.Web.HttpApplication.GetFactory(String type)   
    at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    My first guess is to reset the Outlook Address Book by using the Remove-OabVirtualDirectory Exchange commandlet. But I am not so sure this will work because Exchange worked for a day. Any help understanding what caused the problem (and thus help avoid it
    happening again) and how to fix it are appreciated. Thanks.

    hi,
    If nothing works try resetting the Virtual Directories.
    For  owa 
    Open Exchange Management Shell (EMS), and then run the following cmdlet to change the authentication method of the "owa" virtual directory to Windows authentication:
    set-Owavirtualdirectory -identity "MBX\owa (Exchange Back End)" -WindowsAuthentication $True -Basicauthentication $false
    -Formsauthentication $false
    Run the following command on both the Client Access and Mailbox servers to restart Internet Information Services (IIS):
    iisreset /noforce
    For  ECP
    Start Windows PowerShell.
    Type the following commands, and then press Enter after each line:
    Add-PSSnapin *exchange*
    Set-EcpVirtualDirectory -Identity "MBX\ecp (Exchange Back End)" -WindowsAuthentication $true -FormsAuthentication $false
    Run the following command on both the Client Access and Mailbox servers to restart Internet Information Services (IIS):
    iisreset /noforce
    For Ref: http://technet.microsoft.com/en-us/library/bb123752(v=exchg.150).aspx
    I did those commands. But remember, the original error I gave was related to the OAB virtual directory, not ECP or OWA. I also did the Remove-EcpVirtualDirectory, Remove-OabVirtualDirectory, and Remove-OwaVirtualDirectory commandlets and the corresponding
    EcpVirtualDirectoryOabOwaVirtualDirecoty ones. I still cannot log in to the Exchange Admin Center. And I still have the same original generic unhelpful error message.
    However, there are some changes. After I removed and re-added the virtual directories I no longer received the original error logs given above. I now get this log in the event viewer:
    Event 2001, MSExchange Front End HTTP Proxy
    [Owa] Failed to load SSL certificate.
    The first logs I gave above always appeared after attempting to log in. This log that I gave appears infrequently and is not connected to any log in events. This log occurs only
    after a similar log given below:
    Event 1001, MSExchange Front End HTTP Proxy
    [Owa] Application Starting.

  • HAVING A PROBLEM WHEN I PRINT A WEB PAGE WHICH IS MORE THAT ONE PAGE LONG. ONLY THE FIRST PAGE PRINTS TO SCALE...THE REMAINING PAGES PRINT OFF THE PAGE????HELP-IT IS DEFINITELY A PROBLEM WITH FIREFOX BECAUSE IT DOES NOT HAPPEN WITH SAFARI???

    Question
    HAVING A PROBLEM WHEN I PRINT A WEB PAGE WHICH IS MORE THAT ONE PAGE LONG. ONLY THE FIRST PAGE PRINTS TO SCALE...THE REMAINING PAGES PRINT OFF THE PAGE????HELP-IT IS DEFINITELY A PROBLEM WITH FIREFOX BECAUSE IT DOES NOT HAPPEN WITH SAFARI??

    Thank you for the response. I tried to fix the problem with some of the suggestions on that page, but none seem to work. I believe that is the only website that I'm having that problem on. I got to fooling with it a bit more and when I highlight the whole page and select to print the selected area, it actually prints the whole page then, but it won't do it as a default. I guess I can just do it like that from now on, but I thought there would be something in the settings that I could have changed. Thanks again for the help.

  • Fireworks or Indesign for web page layout?

    Hi, I've currently ordered CS3 Web Premium and it won't ship
    until tomarrow, and I don't know whether I should cancel it and get
    the Design Premium instead.
    It all depends on whether Fireworks is a must have for web
    page design. Does it offer anything invaluable that I need that
    Photoshop Cs3 won't already fill? I saw the tour for InDesign and
    was impressed how you can create amazing page layouts and how you
    can export them to XHTML.
    I probably won't be using Adobe Contribute as I prefer making
    my own WYSIWYG editor in asp.net for my webpages, because I don't
    want to buy a new license of Contribute for every web page I make
    for a different client, so the choice of whether I should leave Web
    Premium and get Design Premium rest on whether Fireworks is more
    useful for webpage design and whether creating web page layouts
    with InDesign is worth paying the extra money for (I don't mind
    using it to create computer software manuals as well).
    I appreciate any input on this matter. :)

    Excellent clarifications, DWD.
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    Extending Knowledge, Daily
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    news://forums.macromedia.com/macromedia.fireworks
    news://forums.macromedia.com/macromedia.dreamweaver
    Deaf Web Designer wrote:
    > Hi TheStrangerSome,
    >
    > If I may chime in and add to Jim Babbage's advice or
    suggestion.
    >
    > Please note that there is no such a thing as "WYSIWYG"
    editor. It is more
    > accurate of putting "HTML" as HTML editing app.
    > In addition to this aspect of discussion about web
    authoring app issue, it
    > should be addressed in either general discussion forums
    either at Dreamweaver
    > or Contribute for that matter.
    >
    > As for "changing the order" from Web Premium to Design
    Premium, it is BEST if
    > you talk to Adobe customer service department
    immediately. Though, I believe
    > that their business hours are based on Pacific Standard
    Time Monday through
    > Friday. Please refer to Contact as appeared on top of
    Adobe systemwide website,
    > including this forum. If you roll your browser up to the
    top of webpage, you'll
    > notice the term "Contact". use that link for further
    details.
    >
    > I think you might be mistaken for term "layout" used in
    InDesign or Fireworks.
    > Please note that InDesign is specifically designed for
    high-end
    > professional-quality print layout such as magazine
    articles, newspapers and PDF
    > documentations (export as PDF format) straight out of
    InDesign application.
    > That might confuse you or led you into thinking that
    InDesign is ideally a
    > layout design for web. Actually, it is not.
    >
    > Perhaps that you stick to the fundamentals of Fireworks
    or Photoshop and use
    > them as layout structure and then transfer them into
    Dreamweaver CS3. Please
    > try to keep this as simple as much as you can when you
    produce a layout design
    > in Fireworks (or Photoshop). If you are good at HTML and
    CSS editing, then all
    > you have to do is put in image files into Dreamweaver
    and code away by linking
    > or referencing image files to HTML.
    >
    > By the sound of your a bit of confusion or don't
    understand the primary
    > difference between Fireworks, Photoshop or InDesign, you
    ought to keep it
    > simple and take it easy. Becuase you will probably feel
    overwhelemed with all
    > of these powerful applications and not knowing the
    primary functionality or the
    > main purposes of these applications and what they are
    for, etc.
    >
    > So, hopefully this helps you better understand and try
    to figure this out
    > yourself, because you know what's the best for you.
    >
    > Hope that helps, no?
    >
    >
    > P.S. Please note that Adobe forums are based on
    "volunteer-basis", which means
    > it is not monitored or run by full-time Adobe staff or
    team from Adobe.
    > Although, there are times, that some people from Adobe
    chime in and offer some
    > tips or suggestion or pointers. In other words, there
    are thousand of forum
    > participants, like you, helping each other. Hopefully
    that helps, too.
    >
    >
    quote:
    Originally posted by:
    TheStrangerSome
    > Hi, I've currently ordered CS3 Web Premium and it won't
    ship until tomarrow,
    > and I don't know whether I should cancel it and get the
    Design Premium instead.
    >
    > It all depends on whether Fireworks is a must have for
    web page design. Does
    > it offer anything invaluable that I need that Photoshop
    Cs3 won't already fill?
    > I saw the tour for InDesign and was impressed how you
    can create amazing page
    > layouts and how you can export them to XHTML.
    >
    > I probably won't be using Adobe Contribute as I prefer
    making my own WYSIWYG
    > editor in asp.net for my webpages, because I don't want
    to buy a new license of
    > Contribute for every web page I make for a different
    client, so the choice of
    > whether I should leave Web Premium and get Design
    Premium rest on whether
    > Fireworks is more useful for webpage design and whether
    creating web page
    > layouts with InDesign is worth paying the extra money
    for (I don't mind using
    > it to create computer software manuals as well).
    >
    > I appreciate any input on this matter. :)
    >
    >
    >
    Excellent clarifications, DWD.
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    Extending Knowledge, Daily
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    news://forums.macromedia.com/macromedia.fireworks
    news://forums.macromedia.com/macromedia.dreamweaver

  • I installed a game and when i start mozilla i am unable to start with the my home web page how can i fix

    i installed a game and when i start mozilla i am unable to start with the my home web page. i set my home page in options tools. when i open Mozilla it opens in another page that i do not want

    Some add-on or other software included with the "game" you installed might have "hijacked" your Firefox home page. I take it you tried resetting your home page? Ref: [[How to set the home page]]
    See this article for links to other possible solutions:
    *[[Fix problems with your home page or search]]

  • Exchange Admin Center repeatedly asks for password

    I have installed Exchange 2013 CU6 to be part of a hybrid in-house/Office365 email domain for a small non profit agency. Exchange seems to have installed correctly. However, I cannot log in to the Exchange Admin Center (or OWA, or ECP). The login screen
    accepts the user name and password, blinks, and asks for the password again as if nothing happened. If I put in a bad password or user names, it give me a username/password failed error. Therefore, I know it is recognizing the correct password.
    I have tried IE on the Exchange server and other domain computers, and all act the same way. I have created another account and Exchange enabled it, and it acts the same way all around. I cannot find any error messages on the Exchange server. The domain
    and forest are at 2008 R2 levels, and all domain controllers are 2008 R2. The Exchange server is on 2012 (not R2).
    I have done some searching and not found anyone else describing a similar problem.
    Any suggestions?

    Hi,
    From your description, I recommend you use the following URL to access EAC and OWA to check the result.
    https://%computername%/ecp?ExchClientVer=15
    https://%computername%/OWA?ExchClientVer=15
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Problem with plugins in my web site

    Problem with plugins in my web site PLS HELP 

    i'm pretty sure you're going to get no help unless you supply some helpful information.

  • I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding"

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

    I just upgraded my iMac to Lion, and a few seconds ago, I upgraded the iWork package and now I'm having some problems with the new version of Pages (4.1) When I try to change something in a document, a message says "the program is not responding", so I have to force it to close. By the way, the SAVE botton stays the same even I change erverything in my document. Please, a have a work to finish, **** me. What I can do abou it?

  • Problem with exchange on my Iphone6

    I have tryed everything possible but still problem with Exchange on my Iphone6.

    What problem? You need to provide more information in order for us to help you.

  • Premiere Elements cause problems with Windows Media Center while streaming to TV.

    I was having the following problem:
    The audio from the streaming process of a recorded TV show on my HP computer to the remote receivers, a Sony Blu-ray player and/or a Sony Streaming Player, results in the loss of audio signal at exactly 30 seconds from the beginning on either devices. The video continues on as normal.
    A user on the Windows 7 forum had the following possible cause and solution.  His response was as follows:
    I "solved" my issue, at least partially. Turns out for me a codec installed by Adobe Premiere Elements for audio (Main Concept) was causing mfpmp.exe to fail (you should see it getting an appcrash in the event log two or three times as soon as you start playing the media remotely.) This program is used by microsoft for DRM. I went through and one by one remained the various attached (non-microsoft) modules until i found the one that caused the appcrash. I haven't fully figured out if Elements is now negatively effected, but that's for a different forum.
    I tried the quick fix by un-installing Adobe Premiere Elements.  The uninstall solved my problem with Windows Media Center, but I want to re-install the software but I do not want to recreate the problem with Windows Media Center.
    Is there another solution for this problem?

    I reinstalled Adobe Premiere Elements 10 and the above mention problem reoccured.  With a little detective work I was able to determine that the file causing my problem was "mc_dec_dd_ds.ax".  I am not sure what this does to Adobe Premiere Elements 10 since I removed (renamed) the offending file.  A strange side affect, renaming the file did cause an increase volume. Strange.  

Maybe you are looking for