new kb972036 received update

I received kb972036 still what I must not according to my system, I have two
KB972036 updated... Do I need to uninstall the first kb972036 and is anyway I can say
If I have good update on my computer vista ultimate?

Hi wm_s

There is a solution to check whether or not the KB972036 update that is already installed on the computer is the last update.

I. Windows Vista Application compatibility updates are delivered by using the automatic update feature in Windows Vista. You probably already have the update installed August 2009. To verify that this update has already been installed, visit the Windows Update (http://windowsupdate.microsoft.com) Web site, and then click view update history.

If you find that the update is old, please uninstall the update by following these steps.

1. click on start and then click Control Panel.

2. click on uninstall a program under section programs.

3. in the list of tasks in the left navigation area, click View installed updates.

4. click on update for Microsoft Windows (KB972036) and then click on uninstall.

5. click Yes when you are prompted to confirm the uninstall.

Note If you are prompted to confirm or the administrator password, click Yes to confirm, or type the administrator password.

Restart the system when prompted.

II. you can also hide the update if he is invited again. In the Windows Update window, click View available updates, right-click on the update and click Hide.

III. try this step to clear the history of update.

1. open the prompt in elevated mode [run as Administrator].

2. try to run these commands at the command prompt.

a. C:\WINDOWS\SYSTEM32\services.msc

b. you will get the services window. Stop the following services with a right click on the service by clicking on stop.

i. background Intelligent Transfer Service.

II. Cryptographic Service.

III. Windows Update Service.

c. once that you stopped these services, please return to the command prompt.

Ren catroot2 catroot2.old C:\WINDOWS\SYSTEM32\

C:\WINDOWS\SYSTEM32\CD...

C:\WINDOWS\ren c:\Windows\SoftwareDistribution softwaredistribution.old

 
 
d. Once you have renamed folders, please restart the services that you stopped.

i. background Intelligent Transfer Service.

II. Cryptographic Service.

III. Windows Update Service.

e. now close the two windows; Services and command prompt.

f. open Windows Update and then click Find updates. If it is offered again, hide the update.

Good luck wm_s

Tags: Windows

Similar Questions

  • The new Windows XP Update site is broken. Can someone check?

    The new Windows XP Update site is broken. Can someone check and confirm?

    http://update.Microsoft.com/microsoftupdate/v6/muoptdefault.aspx?ReturnUrl=http://update.Microsoft.com/microsoftupdate&ln=en-us&muopt=6

    Hello

    The description of the problem seems a little unclear and I wish I had a better understanding before you start working on it. I would really appreciate if you could answer the following questions:

    1. what exactly is the problem you are experiencing in your computer?

    2. your computer installed with Service Pack 3 is?

    3. you receive an error code or message?

    4. have you made any recent hardware or exchange of software on your computer before the show?

    Please provide us with more information on the specific question to help you to fix as soon as possible.

    Your response is very important for us to ensure a proper resolution. Please get back to us with the information above to help you accordingly.

  • LocationListener does not receive updates when BrowserField 2 renders in 6.0

    I have an application that calls a mobile web site using BrowserField 2.  The application needs make the current GPS position to the mobile website with each request to the site.

    I used code MultipleFixDemo to get a LocationListener job.  Everything worked very well in the Simulator and all manual updates of location were received by the LocationListener in the application.

    I changed the display to include a component BrowserField 2 and the LocationListener does not update the location of the Simulator.

    Y at - it something I need to do something different when the user interface includes the BrowserField.  Can I have some kind of thread problem?  I only tested on OS 6.0 in the Simulator.  I don't have access to a real device.

    In the code below, I have two defined screens.

    If the pushScreen (new MultipleFixScreen() is uncommented and the pushScreen (new BrowserFieldScreen() is commented out, the LocationListener receives updates.)

    If the pushScreen (newMultpleFixScreen () is commented out and the pushScreen (new BrowserFieldScreen() is uncommented, the LocationListener gets no updates.)

    Here is my code:

    public class MultipleFixDemo extends UiApplication
    {
        private double longitude;
        private double latitude;
        BlackBerryLocationProvider myProvider;
    
        public static void main(String[] args)
        {
            new MultipleFixDemo().enterEventDispatcher();
        }
    
        public MultipleFixDemo()
        {
            startLocationUpdate();
    
            pushScreen(new BrowserFieldScreen());
            //pushScreen(new MultipleFixScreen());
        }
    
       private void startLocationUpdate()
        {
            try
            {
                BlackBerryCriteria myCriteria = new BlackBerryCriteria();
                myCriteria.enableGeolocationWithGPS(BlackBerryCriteria.FASTEST_FIX_PREFERRED);
                try
                {
                    myProvider = (BlackBerryLocationProvider)LocationProvider.getInstance(myCriteria);
    
                    if ( myProvider == null )
                    {
                        Runnable showUnsupportedDialog = new Runnable()
                        {
                            public void run() {
                                Dialog.alert("Location service unsupported, exiting...");
                                System.exit( 1 );
                            }
                        };
                        invokeLater( showUnsupportedDialog );
                    }
                    else
                    {
                        myProvider.setLocationListener(new LocationListenerImpl(), 2, -1, -1);
    
                    }
                }
                catch (LocationException le)
                {
                    System.err.println("Failed to retrieve a location provider");
                    System.err.println(le);
                    System.exit(0);
                }
            }
            catch (UnsupportedOperationException ue)
            {
                System.err.println("Require mode is unavailable");
                System.err.println(ue);
                System.exit(0);
            }
            return;
        }
    
        private class LocationListenerImpl implements LocationListener
        {
            public void locationUpdated(LocationProvider provider, Location location)
            {
                System.out.println("update location called");
                if(location.isValid())
                {
                    longitude = location.getQualifiedCoordinates().getLongitude();
                    latitude = location.getQualifiedCoordinates().getLatitude();
                    float altitude = location.getQualifiedCoordinates().getAltitude();
    
                    StringBuffer sb = new StringBuffer();
                    sb.append("Longitude: ");
                    sb.append(longitude);
                    sb.append("\n");
                    sb.append("Latitude: ");
                    sb.append(latitude);
                    sb.append("\n");
                    sb.append("Altitude: ");
                    sb.append(altitude);
                    sb.append(" m");
                    System.out.println("!!!!!!!Location update: " + sb.toString());
                    //MultipleFixDemo.this.updateLocationScreen(sb.toString());
                }
            }
    
            public void providerStateChanged(LocationProvider provider, int newState)
            {
                System.out.println("providerStateChanged called");
                // Not implemented
            }
        }
    
        class BrowserFieldScreen extends MainScreen
        {
            private BrowserField _browserField;
            private boolean _documentLoaded = false;
            private BrowserFieldRequest _request;
    
            /**
             * Creates a new BrowserFieldScreen object
             * @param request The URI of the content to display in this BrowserFieldScreen
             * @param enableScriptMenu True if a context menu is to be created for this BrowserFieldScreen instance, false otherwise
             */
            public BrowserFieldScreen()
            {
                super(Screen.HORIZONTAL_SCROLL | DEFAULT_CLOSE | DEFAULT_MENU);
                BrowserFieldRequest request = new BrowserFieldRequest("http://www.google.com");
    
                BrowserFieldConfig config = new BrowserFieldConfig();
                _browserField = new BrowserField(config);
                _browserField.addListener(new DemoBrowserListener());
                add(_browserField);
                _request = request;
            }    
    
            /**
             * @see Screen#onUiEngineAttached(boolean)
             */
            protected void onUiEngineAttached(boolean attached)
            {
                if(attached)
                {
                    try
                    {
                        _browserField.requestContent(_request);
                    }
                    catch(Exception e)
                    {
                        deleteAll();
                        add(new LabelField("ERROR:\n\n"));
                        add(new LabelField(e.getMessage()));
                    }
                }
            }
    
            /**
             * Returns this screen's BrowserField object
             * @return This screen's BrowserField object
             */
            public BrowserField getBrowserField()
            {
                return _browserField;
            }
    
            /**
             * A class to listen for BrowserField events
             */
            private class DemoBrowserListener extends BrowserFieldListener
            {
                /**
                 * @see BrowserFieldListener#documentCreated(BrowserField, ScriptEngine, Document)
                 */
                public void documentLoaded(BrowserField browserField, Document document)
                {
                    _documentLoaded = true;
                }
            }
        }
        private final static class MultipleFixScreen extends MainScreen
        {
            MultipleFixScreen()
            {
                super(DEFAULT_CLOSE | DEFAULT_MENU);
    
                RichTextField instructions = new RichTextField("Waiting for location update...",Field.NON_FOCUSABLE);
                this.add(instructions);
            }
        }
    }
    

    Any suggestions would be greatly appreciated.

    Thank you

    Jackie

    This is a limitation of the BrowserField.  The BrowserField also recorded a LocationListener that is use to power the GPS updates via JavaScript to pages it restores.  This LocationListener / that your application has already registered (given that the application can only record 1).

    There are two ways you can work around this problem.  You can save your LocationListener again after posting the BrowserField.  Note that if you take this approach methods JavaScript GPS won't within your BrowserField.

    The second approach is to poll for updates location, instead of using a LocationListener.  It should continue to work after posting a BrowserField.

  • I have not received update iOS 10?

    I use iPad Mini 2 (retina) and I have not yet received updated iOS 10? Is not iOS 10 now? I don't understand

    Hello

    If you live in the United Kingdom, it, s one another at 8 o'clock some time after 18:00

    See you soon

    Brian

  • I can record is more than all of the new bookmarks after update to Firefox 40.0.2. I have over 1000 bookmarks and also use xMarks.

    I can record is more than all of the new bookmarks after update to Firefox 40.0.2.
    I have over 1000 bookmarks and also use xMarks.
    I tried to remove 5 bookmarks and save a new bookmark, but it does not work.
    When I click on the bookmark star, stars in the bookmarks folder jumps, but does not record, it does not offer the possibility of filing in the subfolder right it me and the star is not awarded (there should be one filled with stars when the Web site is updated bookmark)

    Thank you for your help. I tried the maintenance of places without success. I have disabled xMarks, but it made no difference, I couldn't save all new bookmarks. I went on the site help above and deleted the "places.sqlite" file and recreates a new file, but it didn't work. I uninstalled Firefox full using IOBit Uninstaller and reinstalled, but I found this program does not delete the profile folder (used to have a checked during uninstall of Firefox, but it seems to have disappeared in the latest versions). The problem persisted.

    Finally, I took a screenshot of all my addons. Then, I uninstalled Firefox again, then delete the entire folder profiles (located very usefully described in the second link above https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file )
    I reinstalled Firefox, reinstalled xMarks and connected and transferred all my favorites, I reinstalled all my previous addons and ALTO - it now everything works perfectly!

    Thank you for your help

  • Why what I receive update alerts, but, when I check, I said I use the latest version of FF?

    Why what I receive update alerts, but, when I check, I said I use the latest version of FF?

    Try to repair disk permissions:

  • Keep losing the customization of controls after the new start or updates [firefox 24/25/26] 'customize navigation as bookmarks, back buttons and reload '.

    Since the 24 FF and also in the 25 & 26 it keeps losing the customization of controls after new impetus or updates.

    I always do this: 'Customizing the navigation like back, home, bookmarks, & reload buttons' - http://mzl.la/LqHj2n.

    When I updated from 23-24/25/26 or have a crash FF in one of these versions, the customization is default return. I do not have to repeat this every time!

    What is your operating system?

    You can check the problems caused by a corrupt localstore.rdf file.

  • What's new in the update of the BIOS v2.00 for Satellite L505-144

    What's new in the update of the BIOS v2.00 for Satellite l505-144

    Thank you

    Hi mate

    As much as I know European Toshiba driver page does provide no details what has been changed in the BIOS.
    But I found some details on the Toshiba U.S. page.
    It seems that Fn + N + 1/2/3/4 function of debugging has been removed in 2.0 BIOS to avoid the abnormal behavior of the keyboard.

    Welcome them

  • Still haven't received update information is correct? Post here.

    Still haven't received update, all information is correct.

    • I'm hijacking your thread to make it the official thread "not yet".

  • cannot receive updates from microsoft

    I can't receive updates of microsoft when well even my m3201 pc is set up to do this.

    Any help from the community would be much appreciated.

    I thought that the best way to restore the windows updates and do a system restore from the date that the updates have been installed successfully. This fix worked great for my system and now I have received all the necessary updates for windows Vista 64-bit.

    Spend a day of great system!

  • Window update: feedback from users - Suggestion of a new method of Update window

    Hello

    I would like to provide feedback on the method under the window OS update.

    I think it takes a lot of resources to update the window if the software must be reinstalled due to the change in disk hard of the PC or other reasons.

    It is expensive and takes time to download hours and hours of updates and service pack. The PC must be restarted over and over again, it takes a lot of time to do the job.

    I think the Update window should be more effective in the enemy better future customer satisfaction.

    Is is possible for Member States to change the current method of Update window?

    Maybe a well-designed Download Manager can be implemented.

    First of all, let check all necessary updates to the current operating system, let the Download Manager download all updates to an appointment. After that, the download manager should be able to decide what updates should be installed in the correct order. Let the Download Manager unzip and install the update at a time. The download manager should be able to reboot over and over again during this process without requiring the user to give directions.

    To reduce download time and cost, I would suggest that all the updates is in Zip file that could reduce the size of the file.

    To reduce the time to update for the whole process, I suggest this new design of the BONE that require less restarting the computer during the cumulative update.

    I believe that, with this new method of updating the window and change in operating system design, it could bring about greater efficiency of work at home and at work.

    Thank you

    Low

    Hello

    You can see the following link.

    http://connect.Microsoft.com/

  • HyperBowl will not start in XP SP3 / cannot install Windows update KB924867 (service pack is newer than the update...)

    original title: hyperbowl will not start in XP SP3 / cannot install KB924867

    Hello

    I just reinstalled windows XP and done all the updates. I then reinstalled hyperbowl 3d and it will not open up. Now it used to be that if you ran the update:

    Update for Windows XP (KB924867) http://www.microsoft.com/download/en/details.aspx?DisplayLang=en&id=6446

    It would solve this problem (see http://hyperbowl3d.com/oldsupport.html).

    I downloaded the update, and it says:

    "Setup has detected that the version of Service Pack for this system is newer than the update you are applying"

    So I can't install the update. Is it possible to reinstall this hotfix without remove SP3 or is there another work around, I can use?

    Thanks in advance!

    Welcome & thank you for your comments.

  • I can't install new programs or update of the 'old'. Win XP SP 3

    I can't install new programs or update my 'old'.  No matter when I try to either I get "the component you are trying to use is on a network unavailable resource.  Click OK to try again or enter a different path to the folder that contains the TCMain.msi installation package, (or whatever the program, I'm trying to install/upgrade to date) in the box below.  I can't install/update anything.  Any ideas?

    Is the file to install on your computer or on a shared drive?

    You can try a system restore or Fix It on the following links:

    http://support.Microsoft.com/kb/306084
    http://support.Microsoft.com/mats/Program_Install_and_Uninstall

  • Google Chrome message "this computer will stop soon receive updates of Google Chrome for Windows Vista and Windows XP.

    Is someone can you please tell me when Google Chrome will stop supporting 2007 Service Pack 2 for Windows Vista Home

    Go Mary

    I posted a substitution for Vista and XP operating systems. Please follow my instructions in this thread, or switch to Mozilla Firefox or Opera browser:

    http://www.MSFN.org/Board/topic/175099-instructions-Google-chrome-end-of-support-VistaXp/

    I always highly recommend to switch to Mozilla Firefox, Opera, or one of many other supported browsers.

    While my dose turns off the message, you will NO longer receive updates of Google Chrome.

    Given that Microsoft will support Vista at least a year, I don't understand Google dropping support early reasoning.

  • Windows Media Center sports and News will not update.

    Sports news will not update... The internet connection test is ok.

    Doesn't make sure that no firewall or internet security tries to block.

    You can post here: -.

    https://connect.Microsoft.com/site1145/feedback

    Note: You need to sign in to submit a question of data quality.

Maybe you are looking for

  • Is it possible to use an apple for iPad 2 ID?

    I already have an iPad and has recently replaced the son with a mini iPad iPad.  Now, I have an additional iPad and thought that I could keep it for myself.  Is it possible to have 2 iPads using the same identifier apple and password?  Thank you.

  • Satellite Pro A120 - LCD black screen - Fine on external monitor - fine

    Hi, I have a headache with a Toshiba Satellite Pro A120 mojor. The screen began to move to the blackout at random times and happens more and more. It is not serious if WJayindows has loaded or if I enter the bios, boot from the CD or leave it sitting

  • The problem of satellite L510

    I have a toshiba satellite L510 Model # PSLQ0A-030003 and have problems with the load. I plug it into an outlet and it shows that it does not load then I plug it into an outlet different and it will show that he is in charge. Turn it on and place the

  • No sound on Qosmio F20

    Hello I am unable to hear any sound from my F20. I tried all the drivers and that you can find no problem.Its a soundmax driver. Help?

  • Picture on TV is black & white

    I have connected my Toshiba laptop to my TV on the TV out (S-Video) connection to SCART. I have now bought a new TV that is HD LCD, but when connecting, the screen is black & white. I have looked everywhere and tried all possible combinations, but ob