Thursday, March 25, 2010
Took me quite some time to figure out the problems this client was having:
- couldn’t see properties of users in Active Directory Users and Computers
- couldn’t see properties of events in the eventviewer
- couldn’t move icons on the desktop
- certain software wasn’t functioning
All came down to one simple solution:
regsvr32 %systemroot%\system32\ole32.dll
Microsoft KB 926932
Tuesday, March 16, 2010
Run from prompt:
for /f "tokens=*" %a in ('dir /b *.dll') do regsvr32 /s %a
Remember: when running from a batchfile %a becomes %%a
Friday, March 12, 2010
Running around 300 servers in small environments (meaning: only one 2003 server as domain controller and file/print/exchange) lead me to the following tweaks:
@echo off
echo "This server has 1 GB or more of physical memory"
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager" /v HeapDeCommitFreeBlockThreshold /t REG_DWORD /d 262144 /f
echo "This server is running Windows 2003"
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" /v SystemPages /t REG_DWORD /d 0 /f
echo "This server is a domain controller - faster shutdown"
reg add "HKLM\SYSTEM\CurrentControlSet\Control" /v WaitToKillServiceTimeout /t REG_SZ /d 20000 /f