Showing posts with label Windows 2003. Show all posts
Showing posts with label Windows 2003. Show all posts

Requesting Hotfixes from Microsoft the Easy Way


Have you ever noticed that many of the hotfixes listed in the Microsoft Help and Support knowledge base aren't actually available for download unless you contact support? What you might not know is that there is a secret form on the MS site that allows you to fill out a request for that specific hotfix… it's just not easily accessible.

Click here for more info

Read Users' Comments (0)

Install Windows Server 2003 Adminpak on Vista

Per Microsoft, copy the following text into a text file and rename the extension “.cmd” and you’ll have yourself a cmd file that you can pass around:
***********************************
@echo off

REM RegisterAdminPak.cmd
REM (c) 2006 Microsoft Corporation. All rights reserved.

set filelist=adprop.dll azroles.dll azroleui.dll ccfg95.dll
set filelist=%filelist% certadm.dll certmmc.dll certpdef.dll certtmpl.dll
set filelist=%filelist% certxds.dll cladmwiz.dll clcfgsrv.dll clnetrex.dll
set filelist=%filelist% cluadmex.dll cluadmmc.dll cmproxy.dll cmroute.dll
set filelist=%filelist% cmutoa.dll cnet16.dll debugex.dll dfscore.dll
set filelist=%filelist% dfsgui.dll dhcpsnap.dll dnsmgr.dll domadmin.dll
set filelist=%filelist% dsadmin.dll dsuiwiz.dll imadmui.dll lrwizdll.dll
set filelist=%filelist% mprsnap.dll msclus.dll mstsmhst.dll mstsmmc.dll
set filelist=%filelist% nntpadm.dll nntpapi.dll nntpsnap.dll ntdsbsrv.dll
set filelist=%filelist% ntfrsapi.dll rasuser.dll rigpsnap.dll rsadmin.dll
set filelist=%filelist% rscommon.dll rsconn.dll rsengps.dll rsjob.dll
set filelist=%filelist% rsservps.dll rsshell.dll rssubps.dll rtrfiltr.dll
set filelist=%filelist% schmmgmt.dll tapisnap.dll tsuserex.dll vsstskex.dll
set filelist=%filelist% w95inf16.dll w95inf32.dll winsevnt.dll winsmon.dll
set filelist=%filelist% winsrpc.dll winssnap.dll ws03res.dll

for %%i in (%filelist%) do (
echo Registering %%i …
regsvr32 /s %%i
)

echo.
Echo Command Completed
*********************************


Microsoft KB Link

Read Users' Comments (0)

Windows 2003: Mind Your Users


Use AcctInfo.DLL to reset passwords and find the last good logon for users on your Windows 2003 systems.

Question: How can I find out the last time that the user's password was set and the last good logon on our Windows 2003 domain?

Answer: The easiest way to find out such additional account information is to install the acctinfo.dll that's part of Windows Server 2003 Resource Kit. When you install acctinfo.dll, it extends the functionality of custom Microsoft Management Consoles (MMCs) by adding a tab to the user account Properties in Active Directory Users and Computers (ADUC) console.


http://mcpmag.com/columns/article.asp?EditorialsID=1050

Read Users' Comments (0)

To authorize a DHCP server via CMD

To authorize a DHCP server in Active Directory:

netsh dhcp add server

Where:

  - is the DNS domain name of the DHCP server.
- is the IP address the the DHCP server.
Example:

netsh dhcp add server jsi001.jsiinc.com 216.144.1.25

To unauthorize a DHCP server in Active Directory:

netsh dhcp delete server

To list the authorized DHCP servers in the Active Directory:

Netsh dhcp show server

For additional help:

netsh dhcp add /?

netsh dhcp show /?

netsh dhcp delete /?

Read Users' Comments (0)

Command Line Hack for: "Terminal Server Has Exceeded the Maximum Number of Allowed Connections"

If you've worked on a network with Windows servers, you've encountered this error message at least 37,000 times:

"The terminal server has exceeded the maximum number of allowed connections. The system can not log you on. The system has reached its licensed logon limit. Please try again later."

Follow the instructions here

Read Users' Comments (0)

Active Directory Tips and Tricks


This page contains a collection of Windows 2000 and Windows Server 2003 Active Directory related articles, tips & tricks, whitepapers, useful tools and more.

http://www.petri.co.il/ad.htm

Read Users' Comments (0)