# Wednesday, 29 October 2008
:: Fixes problem with client machines not showing up on the server due to imaging method

reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v AccountDomainSid /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v PingID /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientId /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientIDValidation /f
cls
@echo Triggering detection after resetting WSUS client identity
net stop wuauserv
net start wuauserv
wuauclt /resetauthorization /detectnow

See: http://www.wsuswiki.com/ClientFAQ and http://support.microsoft.com/?scid=kb%3Ben-us%3B903262&x=13&y=11

(AccountDomainSid and PingID weren't listed) SusClientIDValidation is new to WSUS v3.

Wednesday, 29 October 2008 16:54:23 (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
# Saturday, 23 February 2008

After DS restore WSUS, SQL Reporting Services and SSEE failed to start.

For SSEE first extract ssee_10.msi from WSUSSetup*.msi\wYukon and then run the following command:

msiexec /i ssee_10.msi CALLERID=OCSetup.exe REINSTALL=ALL RINSTALLMODE=omus /qn REBOOT=ReallySupress /l*v c:\ssee_repair.log

Update Services (WSUS) wouldn't reinstall complaining about a lack of .NET Framework 2.0 and .NET Framework 2.0 wouldn't reinstall due to "... incompatible with a previously installed one" (ie NET2.0 SP1).  Solution is to change/repair from add/remove programs and reboot.

Reporting services is fixed by this, too.

Finally, for any EVENT IDs 1309s to run %WINDOWS%\Microsoft.NET\Framework\V2.0.50727\aspnet_regiis.exe -i

sql | sbs | wsus
Saturday, 23 February 2008 18:55:57 (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
# Sunday, 21 October 2007

osql -E -S SBS\MICROSOFT##SSEE

sp_configure 'show advanced options', 1
reconfigure
go

sp_configure 'max server memory', 256
reconfigure
go

exit

Sunday, 21 October 2007 12:16:53 (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  |  Trackback
# Thursday, 17 May 2007

Can't install Service Pack (or some/all other updates) directly, from Windows Update or by WSUS.  See http://support.microsoft.com/default.aspx?scid=kb;en-us;822798 for solutions.

This worked for me:

create batch file (catroot2.cmd)

net stop cryptsvc
ren %systemroot%\System32\Catroot2 oldcatroot2
net start cryptsvc
cd %systemroot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE}
del /Q tmp*.cat
exit

Then delete all tmp*.cat files from %systemroot%\system32\CatRoot\{F750E6C3-38EE-11D1-85E5-00C04FC295EE} (or add to batch file, as above)

win | 2003 | sbs | xp | wsus
Thursday, 17 May 2007 15:32:34 (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  |  Trackback
# Thursday, 11 January 2007

This can be updated automatically (by Microsoft Update, WSUS, etc) by adding the following registry key:

HKLM\SOFTWARE\Microsoft\Exchange
DWORD: ContentFilterState
Value: 1

Restart the SMTP service after.

Thursday, 11 January 2007 10:11:10 (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback