Hotmail blocks browser when the composition or the respondent.

Hello.

I am also having this problem on 2 computers of peoples. The common thing only seems to be Vista in my case, although I have heard that the problem may occur in Windows 7. They have different anti-virus and now use different browsers. We use IE8, (problem after upgrade to IE9), and we used IE7 but now use Firefox.

The accident occurs only when you attempt to dial or answer an email in Hotmail.

The problem started when the engines were running in Internet Explorer, but this could be a coincidence.

I tried the browsers from disabled modules.
I've updated the Flash to the latest version.
All the service packs and updates to Vista are installed.
I tried to disable the antivirus software.
I've updated to the latest versions of both browsers.
I installed different browsers on both computers, (Chrome and Opera).
I also tried the system restore.

The problem occurs if you connect to Hotmail through Messenger or just a browser window.

The problem ONLY occurs with Hotmail. No matter what other web-based mail system.

The first computer is a Toshiba laptop Tecra A9 under Vista SP2 1.5 GB memory, SATA 200 GB hard drive
The second is a tower of emachines under Vista SP2, memory 2 GB, 150 GB IDE HDD

Any ideas would be greatly appreciated!

Hi IJazzI,

If this only happens with your hotmail account, then you must validate your application in the Windows Live forum to get help:

http://windowslivehelp.com/product.aspx?ProductID=1

http://windowslivehelp.com/thread.aspx?ThreadId=ff03e842-482C-4C9A-80d5-d02e1dd85964

Tags: Windows

Similar Questions

  • Help! How to retain the OutputText component status in the browser when the restore operation is called?

    I managed to apply the texts of edtiable as output check the CAPTCHA function by using clientListener and serverListener. a group of texts are displayed using the tags < ad: iterator > in the output page, when you click on a text of output, it is alternated with the status of selected or deselected.

    then click on the button restore to call the application module restore operation, chose these texts out status will be clean in brower he but correspong values on the server side are still in selected state.

    My problem is that how can I retain the OutputText component status in the browser when the restore operation is called?

    I have also some ADF DURATION issues:

    a. when operation rollback is called, will be updated on all the components in the page?

    b. when I set "binding" compenent properties < ad: iterator > related to the backing bean property, why is there only one child to < ad: iterator > compenent: activeOutputText, not a collection of activeOutputText?

    c. when I try to set the property 'id' of activeOutputText with #{terminalItem.AbbrTerminalM} and run and it prompted this invalid id value. real value of this EL is alphabetical.

    JSF page:

    
            <af:resource type="javascript">
                function processTerminalCodeClicked(event){
                   var source = event.getSource();
                   var terminalCode = source.getProperty("terminalCode");
                   var isChecked;
                   if(source.getInlineStyleProperty("background-color")!=""){// selected
                      source.setInlineStyleProperty("background-color","");
                      isChecked = false;
                   }else{// not selected
                      source.setInlineStyleProperty("background-color","#94ff94");
                      isChecked = true;
                   }
                    AdfCustomEvent.queue(source, "terminalCodeClicked",  {'terminalCode' : terminalCode, 'terminalCodeChecked' : isChecked},  false);
                }
               
               
            </af:resource>
    
    ...
    
    
    <af:iterator id="i1" value="#{bindings.TerminalView11.collectionModel}" var="terminalItem" rows="100">
                                                <af:panelGroupLayout id="pgl6">
                                                    <af:activeOutputText  value="#{terminalItem.AbbrTerminalM}"
                                                                         id="aot1" clientComponent="true"
                                                                         inlineStyle="cursor:pointer; ">
                                                         <af:clientListener type="click"
                                                                           method="processTerminalCodeClicked"/>
                                                         <af:clientAttribute name="terminalCode"
                                                                        value="#{terminalItem.TerminalC}"/>
                                                         <af:serverListener type="terminalCodeClicked"
                                                                       method="#{pageFlowScope.yardPlanControllerManagedBean.processTerminalCodeClicked}"/>
                                                     </af:activeOutputText>
                                            </af:panelGroupLayout>
    </af:iterator>
    
    

    Managed bean:

    private List terminalCodeList = new ArrayList();
    ....
    public void processTerminalCodeClicked(ClientEvent clientEvent) {
          String terminalCode = (String)clientEvent.getParameters().get("terminalCode");
          Boolean terminalCodeChecked = (Boolean)clientEvent.getParameters().get("terminalCodeChecked");
    
          if(!terminalCodeChecked.booleanValue()&& terminalCodeList.contains(terminalCode)){
              terminalCodeList.remove(terminalCode);
          } else if(terminalCodeChecked.booleanValue() && !terminalCodeList.contains(terminalCode)){
              terminalCodeList.add(terminalCode);
          }
          if(terminalCodeList!=null && !terminalCodeList.isEmpty()){
             setValueToSession("currentTerminalCodeList", terminalCodeList);
          }else{
               FacesContext ctx2 = FacesContext.getCurrentInstance();
               FacesMessage msg2 = new FacesMessage(FacesMessage.SEVERITY_ERROR,"no terminal is selected!", "Please at least select one terminal!");
               ctx2.addMessage(null, msg2);
          }
    }
    
    

    I managed to reslove parts of the problem and the selected state of the output text can be kept now.

    Remember the State selected in the list in bean managed, trigger refreshing of the page layout group containing all the output text and selected status of the output is determined by inlineStyle = "#{pageFlowScope.yardPlanControllerManagedBean.terminalInlineStyle"} "

    JSF page:

    
                function processTerminalCodeClicked(event){
                   var source = event.getSource();
                   var terminalCode = source.getProperty("terminalCode");
                   var abbrTerminalM = source.getProperty("abbrTerminalM");
                   var isChecked;
                   if(source.getInlineStyleProperty("background-color")!=""){// selected
                      //source.setInlineStyleProperty("background-color","");
                      isChecked = false;
                   }else{// not selected
                      //source.setInlineStyleProperty("background-color","#94ff94");
                      isChecked = true;
                   }
                    AdfCustomEvent.queue(source, "terminalCodeClicked",  {'terminalCode' : terminalCode, 'abbrTerminalM': abbrTerminalM, 'terminalCodeChecked' : isChecked},  false);
                }
    
    
    
     
      
        
        
        
        
       
     
    
    

    Managed bean:

      private List abbrTerminalMList = new ArrayList();
    
        public void processTerminalCodeClicked(ClientEvent clientEvent) {
          String terminalCode = (String)clientEvent.getParameters().get("terminalCode");
          String abbrTerminalM = (String)clientEvent.getParameters().get("abbrTerminalM");
          Boolean terminalCodeChecked = (Boolean)clientEvent.getParameters().get("terminalCodeChecked");
          if(!terminalCodeChecked.booleanValue()&& terminalCodeList.contains(terminalCode)){
              if(terminalCodeList.size()>1){
                  terminalCodeList.remove(terminalCode);
                  abbrTerminalMList.remove(abbrTerminalM);
              }
          } else if(terminalCodeChecked.booleanValue() && !terminalCodeList.contains(terminalCode)){
              terminalCodeList.add(terminalCode);
              abbrTerminalMList.add(abbrTerminalM);
          }
         AdfFacesContext.getCurrentInstance().addPartialTarget(terminalsPanelGroupLayout);
        }
    
        public String getTerminalInlineStyle() {
            String inlineStyle = "cursor:pointer;";
            if(terminalActiveOutputText != null){
                String abbrTerminalM = terminalActiveOutputText.getValue();
                if(abbrTerminalM != null && abbrTerminalMList.contains(abbrTerminalM)){
                   inlineStyle = "cursor:pointer;background-color:#94ff94";
                }
            }
            return inlineStyle;
        }
    
  • Windows 8 CryptoAPI blocks Outlook when the private key is available on the highest security

    I posted on the Forum of office and I realized that the problem is not Outlook but Windows 8 CryptoAPI blocks Outlook while the same problem does not occur on Windows 7.

    Outlook on Windows 8 crashes and show no CryptoAPI for Private Key

    This occurs when the signature, encryption or decryption of an email with a digital certificate where the private key is secured by CryptoAPI of Microsoft Windows 8 on the highest setting. Requests for Outlook CryptoAPI for the key and accidents.

    This does not happen on Windows 7
    Follow this thread:
    http://social.technet.Microsoft.com/forums/en/Outlook/thread/f543b04d-D510-4444-B803-1759f6c312c8

    FIX:
    http://support.Microsoft.com/kb/2813237

    Hello

    I see Windows 8 CryptoAPI accidents Microsoft Office Outlook 2013 when the private key is available on the higher security settings.

    I suggest that you post the same question in the TechNet Forums at the link below:

    http://social.technet.Microsoft.com/forums/en-us/category/w8itpro

    Please get back to us if you have any other questions about windows.

  • Each launch I get a download message block as when the first one I tried to download this file

    I tried to download this file some time ago and obtained the deadlock as on the picture message (quick translation is "blocked, probably contains a virus or other spy software"). After that each launch of Firefox, I get the same message. Cookes cleaning does not help. Also, I can't upload picture here. Or can? At the time of typing this animation download question plays infinitely

    OK, thank you all for the asking. I closed all tabs and still got the message and I have such file as sessionstore.js in my browser profile directory, only the backups to it - sessionstore.bak and folder sessionstore-backups.
    But now I just want to remove this object (Yes, I get another) to download history and pannals messages. So I'm confused - I think that, if she (any file download) has been blocked, then browser should remove them.

  • Blocking browser, preventing the closure of the site

    I recently came across this site: http://politie.nl.id169787298-7128265115. * .com /.

    It seems that the site average scam, but this one is different. It locks the browser. Cannot close the tab, the browser can't be closed either. How this will produce-firefox is supposed to be safe?

    The only way to close using taskmanager.

    Edit: removed the link for direct access to the malicious site. (philipp)

    Hello IIDR, open a new tab and enter Subject: config in the address bar (confirm the opinion). in there, search for the preference named javascript.enabled and double-click it in order to change its value to false. Then, it should immediately be possible to close the site scam in question. then return the preference javascript.enabled...

  • How can you make Firefox the default browser when the normal route does not work?

    Im trying entirely chrome once a friend showed how my firefox got his act together. However I can't for the life of me set it as default browser. I tried the 'make firefox the default browser' button in firefox, making that opens the windows default programs Panel. Whenever I try to use the Panel she simply sets the Protocol http for every night, which is not yet installed! ( http://puu.sh/2vJHM ) I think that a possible solution would be to change the registry manually, but I don't know where to start.

    Thank you for your help, but I managed to fix it by myself. The registry key for the associations of html and URLs of firefox have been corrupted so I scoured their in regedit (at HKEY_CLASSES_ROOT\FirefoxHTML and HKEY_CLASSES_ROOT\FirefoxURL) and them deleted entirely, then redid them by clicking on the make default firefox button in the options.

  • How to prevent the login page in the same browser when the user is already authenticated

    Hello

    I use Jdev 11.1.1.6 with ADF implemented in my application security.

    I have Login.jspx that redirects the user to Home.jspx on a successful authentication. The user can either enter the URL of the Home Page or Login.

    Please consider the following scenarios:

    (a) the user is not authenticated in the current browser session

    (a.1) if the user enters the URL of the home page and the login page is displayed and redirected to the homepage on authentication

    (a.2) if the user enters the login page URL, then the login page is displayed and redirected to the homepage on authentication

    (b) the user is already authenticated in the current browser session, a new tab opens and

    (b.1) if the user enters the URL of the homepage then it shows directly the (already authenticated) Homepage

    (b.2) if the user enters Login URL then connect a page appears - This is the issue, it should either user to the homepage or invalidate the existing session and let users to proceed again.

    How do I get there? Any help is appreciated.

    Thank you

    JAI

    Hello

    the authentication check must be in a phase listener or servlet filter. If you use a phase listener and the homepage and login have a link associated with the ADF (PageDef file) then in the phase AFTER RESTORE_VIEW, you can use AdfContext.getCurrent () .getSecurityContext () .isAuthenticated () to tell if a user is authenticated or not.

    Frank

  • Image resources not being cached by the browser in the Application of the ADF

    Fusion Middleware Version: 11.1.1.5

    WebLogic: 10.3.5.0

    JDeveloper Build: Build JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013

    Project: Custom Portal Application WebCenter integrated with ADF custom workflows. Oracle Access Manager 11.1.1.5 used for authentication.

    Within our application WebCenter portal, see static ADF resources served by the servlet "resources" being cached by the browser as WebLogic sends us a header Cache-Control 'Public', as well as a directive expires at a later date. This works perfectly but we do not see this with static content in-app.

    In contrast to resources under < context_root > /afr / * images directly in the application are returned to the browser without header a Cache-Control, so some browsers are asking the image whenever the page is loaded. We have thousands of users, so it's originally a large number of unnecessary applications.

    Resources (images) are in a directory called 'images' in the folder 'public_html '.

    How can we ensure that WebLogic/ADF sends a "Public" Cache-Control directive in the browser when the resources are being requested?

    Any help much appreciated.

    Thank you

    Hello

    Please make sure that the images are uploaded through the servlet by reference or resource direct public_html/subfolder in the configurations of your image. Alternatively, you can put your images in a JAR file as shown here

    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/86-images-from-jar-427953.PDF

    Frank

  • Trigger to run the query when the value of LOV is selected

    HI guys,.

    I have a form in which I have 2 fields in Master and 4 fields in detail, showing all on the same canvas.
    I put a "execute_query" in when_new_form_instance trigger so that when I open the form it is pre - filled.
    The fields get the values LOVs. I want to run the master block query when the user selects a value in LOV, then in what trigger should I put it.
    I tried in 'when_validate_item' and 'when_list_changed' triggers, but it showed an error.
    So, what should I do?

    Concerning

    Ranjan

    user8664136 wrote:
    I want to run the master block query when the user selects a value of LOV

    If master block (header) is based on the table, using LOV without pressing enter_query firstly, update existing record.
    Here's my version (Andreas, sorry, I used your code :))

    TO KEY-LISTVAL:

    DECLARE
         tm TIMER:=FIND_TIMER('TM_QUERY');
    BEGIN
      IF ID_NULL(tm) THEN
        tm:=CREATE_TIMER('TM_QUERY', 1, NO_REPEAT);
      END IF;
      ENTER_QUERY;
    END;
    

    In WHEN-TIMER-EXPIRED:

    IF SHOW_LOV('LOV') THEN
     EXECUTE_QUERY;
    END IF;
    
  • How to block all the videos and ads on all the site as how it is when it shows the gray screen when the flash player needs to be updated

    Hi there please help me. I didn't have this problem until two days ago when the browser updated itself. I have the youtube video downloader add on and always use it. I'm on a data plan and it used to block videos and add ads which I like, but now is not because of the update, I came back to the old version, but it did not help and I downloaded the flash but block it does not work. It makes the slow loading of pages and uses a large amount of data that I tried many things like all the plugins of switching to add it on the menu to activate ever and it doesn't quite work. Before it used to show the gray screen, where it says "the flash player is out of date" on videos and commercials, but he does not do this because of the update so please help me to do it again.

    I solved. On the firefox support page they will give you information about the HTML5 player and they say there that firefox uses it only 38 version before so I'm 36 version and it worked in blocking it as before.

    So its all sort and if everyone wants to do the same thing go to https://ftp.mozilla.org/pub/firefox/releases/ and all previous versions will be there.

  • TRYING TO PLAY THE GAME "PANZER GENERAL 2, WHEN THE GAME STARTS TO RUN THE BROWSER CRASHES.

    Original title: papabob68

    have windows 7-

    I'M PLAYING THE GAME "PANZER GENERAL 2, WHEN THE GAME STARTS TO RUN THE BROWSER CRASHES.

    After that, I have to go to master to stop and start again... I have read all the post I can find and I updated the driver and reset the display and SO ON, SO ON, AND...

    I played this game on windows xp and I have done everything but put A BULLET in it and I think about IT!

    I'd be willing to by a new game made for windows 7 but does...

    MANY OF THE POST TALK ABOUT A 64-BIT SYSTEM, BUT MINED IS A 32-BIT, SO THERE HAS NOT BEEN TWO MANY ANSWERS...

    "HELP!" @!@!

    PAPABOB68

    "I updated the driver and reset the display and SO ON, SO ON, AND ON...". »

    It is better to translate 'SO ON'... to something specific, or you can read suggestions for

    have you tried things once again.

    -Include your brand of processor graphics and model as well.

    -The best place for the hotfixes to vintage games is usually on a specific to this game fan site,

    or the developer forums, but...

    "but mine is 32 bits"

    (Assuming you are using the disk depending on the version of the game.)

    -A 32-bit Windows can be an advantage with some games of this vintage (release date of 97) as

    always use a 16-bit Installer, which will run on 32-bit but not 64-bit of Windows.

    Apart from that, there should be no difference between the OS versions for compatibility.

    -However, prior to version 2000 games (and some newer), may have other

    questions that make them run poorly. Audio and color are two common problems.

    -The camera may result from a problem with earlier versions of Open GL, Direct 3D.

    DirectPlay and Glide3D (gone, but not forgotten) can be a problem sometimes too?

    These questions sometimes have patches on based fan sites.

    -Some 97 games maybe still based back that requires using the window BACK, an emulator "BACK."

    Good old games sells some vintage games with DRM (copy of code protection) removed, and installs

    with BACK box automatically.

    They have Panzer General 2 for $10 USD, but if you expect one of their frequent sales you should be

    able to pick up for US $5-$ or less.

    http://www.Gog.com/

    [ EDIT: just watched add it, and it seems to be a DirectX game 9] It must have been updated DX9

    for the downloadable version.

    It can been Direct3D when released.  DX 9 was not released before 2002

    -All on the theme of DirectX. If you have not updated DirectX, you should do it.

    Win7 is not the most recent DX 9, 10 or 11 files when first installed.

    Download installer Web Runtime DirectX end-user of the official Microsoft Download Center ]     

    -You can also use D-Fend Reloaded, which is a user interface that reduces the learning curve for the DOS window.

    The download includes the box and a few BACK based games start practicing.

    D - Fend Reloaded: overview

    Finally, and above all by an effort... An important announcement for all users of the disk based games.

    -A new (since Win10) problems with the old disk based games comes from malicious software developed by MS - DRM blocking.

    If your disc games has a file called - secdrv.sys - on it, the game will be blocked by a

    Windows 'security update' - KB3086255-.

    I have more information about the blocking of the DRM, including how to work around this - here -

    .

  • Adding to my last question... To keep a background image in the center of the Web page when the browser is shrun

    How do do that?  What is the CSS that makes this work?

    Centers of the background, even when the browser window is smaller or the screen resolution is less, but the content remains stationary in the center of the page: www.signatureweddingsbyjenna.ca

    Hello Jules

    I think that Nancy replied to your question in the other thread.

    I have the site you give as an example, this is the CSS that applies to this image:

    {body
    background - image: URL("page_images/background.jpg");
    bottom-top position: center;
    background-repeat: repeat no.;

    }
    Then of course, it is applied as the context in which theelement, it is placed in the Center and on it and it does not repeat itself.  It is what keeps the central image on the page.  Also helps is that the page is a centered layout.  In the example page that you gave, they have this:
    #page, closure-blocks # {}
    margin-left: auto;
    margin-right: auto;
    Width: 1000px;

    }

    Set the width is important and defining the left/right margin as it means that the browser will allocate the rest of the available space at each margin evently between the two, or put content in the middle.  The only other thing you do is to set the content of the site to the center using
    text-align: center
    It is exlpained herefully.  The only other thing the site has done is put a bit of image information in another element to make it appear that the background image loops in the content.
    Martin
  • When I scroll a certain Web page, browser reloads the page upward, this happens even if I change the browser... Why? Help, please!

    When I scroll a certain Web page, browser reloads the page upward, this happens even if I change the browser... Why? Help, please!


  • Why you put "Open a new tab" on the right side of the browser, when you close a tab on the left and you type a new URL in the browser on the left?

    I changed my computer from XP to Windows 7 and migrated my FF browsers. But... now the tabs at the top of the page are all right (they were upper-front left - where I loved her)

    The most important is the "open a new tab" + - is on the right. But that is not sensible. Why you put "Open a new tab" on the extreme right of the browser, when you close a tab on the left and you type a new URL in the browser on the left?

    How can I put my "open a new tab" immediately to the right of 'Close tab' - as if it was before?

    Please advise?

    Try clicking on "Restore default settings" in the palette to customize to reset the toolbar customization.

    • Firefox '3-bar' menu button > customize
    • View > toolbars > customize

    You can attach a screenshot?

    • Use a type of compressed as PNG or JPG image to save the screenshot
    • Make sure you do not exceed the maximum size of 1 MB
  • When I try to synchronize my mobile browser for my browser of the computer, it says that my email address is already in use. Then when I tried to connect under this email address

    When I try to synchronize my mobile browser for my browser of the computer, it says that my email address is already in use. Then when I tried to sign in under that email address, it says the password or user name is incorrect. I have already reset the password and tried again, still without success.

    Close firefox, restart your phone and try out it...

Maybe you are looking for