Tag Archives: Windows Server 2003

Changing the Maximum Number of Computers a User Can Join to the Domain -CodeIdol

Changing the Maximum Number of Computers a User Can Join to the Domain -CodeIdol.

About the Windows Registry

About the Registry Windows.

Dont be afraid of DNS Scavenging. Just be patient. – Microsoft Enterprise Networking Team – Site Home – TechNet Blogs

Dont be afraid of DNS Scavenging. Just be patient. – Microsoft Enterprise Networking Team – Site Home – TechNet Blogs.

“The Permissions for This GPO in the SYSVOL Folder Are Inconsistent with Those in Active Directory” Message When You Run GPMC

"The Permissions for This GPO in the SYSVOL Folder Are Inconsistent with Those in Active Directory" Message When You Run GPMC.

Troubleshooting File Replication Service – Windows 2003 Server R2

Today I found out – through troubles with GPOs – that 2 servers in a site are not replicating sysvol.

Used gpotool to confirm it’s a FRS issue. I recently copied some GPOs to this domain and GpoTool reported:

This article help me immensely

Troubleshooting File Replication Service.

List scheduled tasks on Windows 2003/XP using schtasks into CSV

schtasks /query /s server1 /fo CSV

Fix: failed to connect to local computer because wmi initialization failure

On Windows Server 2003 I get this message: “failed to connect to local computer because wmi initialization failure”

To fix this condition, put this into a batch file and run it locally on the server

@echo on
cd /d c:\temp
if not exist %windir%\system32\wbem goto TryInstall
cd /d %windir%\system32\wbem
net stop winmgmt
winmgmt /kill
if exist Rep_bak rd Rep_bak /s /q
rename Repository Rep_bak
for %%i in (*.dll) do RegSvr32 -s %%i
for %%i in (*.exe) do call :FixSrv %%i
for %%i in (*.mof,*.mfl) do Mofcomp %%i
net start winmgmt
goto End

:FixSrv
if /I (%1) == (wbemcntl.exe) goto SkipSrv
if /I (%1) == (wbemtest.exe) goto SkipSrv
if /I (%1) == (mofcomp.exe) goto SkipSrv
%1 /RegServer

:SkipSrv
goto End

:TryInstall
if not exist wmicore.exe goto End
wmicore /s
net start winmgmt
:End

To The Point

Anything about Technology and Business

PowerScripting Podcast

Shownotes and links for the PowerScripting Podcast, a podcast to help people learn Windows Powershell

Learn Powershell | Achieve More

What is this Powershell of which you speak?