By default, users can only add 10 workstations to the domain before loosing their delegation
If you may need to increase this:
http://support.microsoft.com/kb/243327/en-us
The guilty attribute is ms-DS-MachineAccountQuota
Why "Lord of The Ping" ? It's a bit complicated, but yes it's a mix of a famous movie and Networking's most famous command.
By default, users can only add 10 workstations to the domain before loosing their delegation
If you may need to increase this:
http://support.microsoft.com/kb/243327/en-us
The guilty attribute is ms-DS-MachineAccountQuota
Hello,
many people asked on newsgroup how to migrate from a printer server to another, without manual intervention off course.
1/Migrate drivers and declared printer with print migrator from Microsoft:
2/
Use the following simple vbscript. Jut replace MYNEWPRINTERSERVER with the new print server name.
You may call it with cscript to not send popup, or remove wscript.echo to not warn user.
The best way is during logon script
The new print server must be already online and ready, as it removes the current printer and map again on the new print server
You can download here:
http://gollum123.free.fr/printermigrator.vbs
here is the code source:
----------------------------------------------
On Error Resume Next
Function GetDefaultPrinter()
sRegVal = "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows\Device"
sDefault = ""
On Error Resume Next
sDefault = objShell.RegRead(sRegVal)
sDefault = Left(sDefault ,InStr(sDefault, ",") - 1)
On Error Goto 0
GetDefaultPrinter = sDefault
End Function
Set objNetwork = CreateObject ("Wscript.Network")
Set objShell = CreateObject ("WScript.Shell")
Set objFSO = CreateObject ("Scripting.FileSystemObject")
LogonServer = objShell.ExpandEnvironmentStrings("%logonserver%")
UserName = objShell.ExpandEnvironmentStrings("%username%")
strComputer = "."
PrintServer = "MYNEWPRINTERSERVER"
PrintServer = LCase (PrintServer)
Err.Clear
Set objWMIService = GetObject("winmgmts:" & _
"{impersonationLevel=Impersonate}!\\" & strComputer & "\root\cimv2")
If Err.Number Then
wscript.echo ("Error : " & Err.Number & ": " & Err.Description & VbCrLf)
Err.Clear
Else
ImpDefault = GetDefaultPrinter
Set colInstalledPrinters = objWMIService.ExecQuery _
("SELECT * FROM Win32_Printer")
For Each objPrinter in colInstalledPrinters
PrinterArray = Split (objPrinter.Name , "\")
If (LCase(objPrinter.ServerName) <> "") and (LCase(objPrinter.ServerName) <> "\\" & PrintServer) then
objNetwork.AddWindowsPrinterConnection "\\" & PrintServer & "\" & PrinterArray(3)
If Err.Number Then
wscript.echo ("Error : " & Err.Number & ": " & Err.Description & VbCrLf)
Err.Clear
End If
If ImpDefault = objPrinter.Name then
objNetwork.SetDefaultPrinter ("\\" & PrintServer & "\" & PrinterArray(3))
End If
objNetwork.RemovePrinterConnection objPrinter.Name
End If
Next
End If
-------------------
BDD 2007 & co are evolving, keep your mind up to date!
http://www.deploymentforum.com/
As for Operating System, you can have the great Excel file that contains all settings that can be set from GPO on office 2003.
Download the Office 2003 Service Pack 3 Administrative Template (ADM), OPAs, and Explain Text Update:
It contains Office 2003 Group Policies.xls
If you need to enable the remote desktop, you can set fDenyTSConnections to 0
HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server
The same job can be done through GPO with "Allow users to connect remotely using Terminal Services"
hello folks,
many guys come to Microsoft newsgroups with AD related problems.
Many of them could be avoided by following these advices:
Hope it helps,
Process Explorer has been updated, it mainly adds compatibility with Windows Vista.
http://www.microsoft.com/technet/sysinternals/utilities/processexplorer.mspx
While first of all that doesn't sound accurate, you must set the key as DFS:
How to configure DFS to use fully qualified domain names in referrals
http://support.microsoft.com/kb/244380/en-us
You must set this key before creating the DFS.