Jump to content

Microsoft releases massive Slow Boot / Slow Login Hotfix Rollup (KB2775511)


Recommended Posts

Posted
I'm happy to look at a before/after or help. My contact information is on the blog.

:-) thanks. For me things are mostly going well, I've got many of the earlier wmi, user profile, csc and tcpip hotfixes on my user's machines.

 

We do still see CSC related TMP files getting orphaned on the fileserver on a daily basis. I'll see whether the frequency is reduced after the update.

 

I'll also hold fire on TMG etc. While I do have the tools to actually test against a snapshot of my production environment (VEEAM rocks) I don't have it configured quite right :(

Posted
Could you share those settings as I need those but could not find where to set it. Look slike I may have to keep an eye on this update progerss for it to work though!
  • 2 weeks later...
  • 2 weeks later...
Posted

ok,

So I install this rollup on the W7 clients and 2008R2 servers and then have to configure the registry settings correct?

 

The registry keys for these hotfixes are not configured by the enterprise hotfix rollup installer. Therefore, these hotfixes are not enabled by default after you install the hotfix rollup. To enable these two hotfixes, there are two options:

Posted
Difficult to say really. Logon speeds in the networks I setup are pretty decent anyway. I think the switches you have installed make a big difference, but it's nice to know Microsoft have officially addressed issues identified in some networks. I'd still recommend installing it on workstations and servers.
  • 4 weeks later...
  • 2 months later...
Posted
So... if we have server 2012 DCs do we just install the hot fix on the workstations? Is there a 2012 version for the DCs?

 

The monthly Windows Server 2012 update rollups are the equivalents. You should deploy them as part of your monthly security update cycle, though they are not security updates in themselves.

  • 2 weeks later...
Posted

Thanks psydii

 

We did have occasional students losing thier whole home drive which bugged us no end, this could be the reason!

Posted
What is the command line to install silently at machine startup?

 

This is the command line i use in sccm for deploying update files manually:

wusa.exe "updatenamehere.msu" /quiet /norestart

  • 4 weeks later...
Posted

Don't use sccm here so have to resort to vbs in the machine startup script. Had this running for a few weeks now without any problems

If NOT objFSO.FileExists("C:\Windows\KB2732673.log") Then
objFSO.CreateTextFile("C:\Windows\KB2732673.log")
iReturn = objShell.Run("\\server\software_install$\Patches\Windows6.1-KB2732673-v4-x86.msu /quiet /norestart", 1, TRUE)

  • 4 months later...
Posted
Don't use sccm here so have to resort to vbs in the machine startup script. Had this running for a few weeks now without any problems

If NOT objFSO.FileExists("C:\Windows\KB2732673.log") Then
objFSO.CreateTextFile("C:\Windows\KB2732673.log")
iReturn = objShell.Run("\\server\software_install$\Patches\Windows6.1-KB2732673-v4-x86.msu /quiet /norestart", 1, TRUE)

 

Is this the whole script mate? expected END here?

Posted
Don't use sccm here so have to resort to vbs in the machine startup script. Had this running for a few weeks now without any problems

If NOT objFSO.FileExists("C:\Windows\KB2732673.log") Then
objFSO.CreateTextFile("C:\Windows\KB2732673.log")
iReturn = objShell.Run("\\server\software_install$\Patches\Windows6.1-KB2732673-v4-x86.msu /quiet /norestart", 1, TRUE)

 

Is this the whole script mate? expected END here?

Posted

The following PowerShell script will install a hotfix if it isn't already installed.

 

if (!(Get-Hotfix -Id KB2732673 -ErrorAction SilentlyContinue)) { 
   Start-Process -Wait -FilePath "$env:SystemRoot\System32\wusa.exe" -ArgumentList "\\Server\Share\Windows6.1-KB2732673-v4-x86.msu /quiet /norestart" 
}

  • 2 months later...
  • 4 weeks later...
  • 5 months later...
  • 1 year later...
Posted

You know I never got round to deploying this, I've just added it into my updated W7 image but haven't installed it on my DCs yet.

 

I know I've asked this before but did it speed up logins? Did it help with the random login issues etc?

 

Not sure if it's worth me bothering that's all.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...