Sunday, September 14, 2014

Windows Update failure: WindowsUpdate_000000FF WindowsUpdate_dt000

Update failure returning message:
   
    "WindowsUpdate_000000FF" "WindowsUpdate_dt000"
   
I got this message during of of the procedures of windows update when trying to install Microsoft.NET Framework 4.5.1 and 4.

>SOLUTION

Manual installation of each update that failed.
First, to download, identify the hotfix number shown on "windows update".
Usually it is a number like this: KB2894854.
Find and download by this number. Ex.:
search for:
  download KB2894854
or
  download microsoft KB2894854

After download, run the executables to install the hotfix.


>INSTALLED PACKAGES

For example, in my case I had to download and install each hotfix that windows' update refused to.
This is the hotfix list and the respectives URLs:
- Microsoft .NET Framework 4.5.1 = http://www.microsoft.com/pt-br/download/details.aspx?id=40779
http://www.microsoft.com/pt-br/download/details.aspx?id=41378
- KB970892 = http://www.microsoft.com/en-us/download/confirmation.aspx?id=42779
- KB2894854 = http://www.microsoft.com/pt-br/download/details.aspx?id=41378
- KB2898869 = http://www.microsoft.com/pt-br/download/details.aspx?id=41903
- KB2901126 = http://www.google.com.br/url?url=http://www.microsoft.com/pt-br/download/details.aspx%3Fid%3D41918&rct=j&q=&esrc=s&sa=U&ei=utYVVPnoMeOmigLK-4HoCw&ved=0CBQQFjAA&usg=AFQjCNFX685_-qZvmx3_HKq84SxCb_SaWA
- KB2972216 = http://www.microsoft.com/en-ie/download/details.aspx?id=44181





eclipse: java: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder" or Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder

  >PROBLEM Using Eclipse, you try to run a simple logging test using "org.slf4j.Logger" like the sample below: package Test; im...