R Rolando Oct 6, 2003 #1 Is there a way to change computer names on several computers without having to go to each one individually. Maybe remotely?
Is there a way to change computer names on several computers without having to go to each one individually. Maybe remotely?
M Mark Ramey [MSFT] Oct 7, 2003 #2 This retrieved this from the online scripting center that can be found on the following link http://www.microsoft.com/technet/treeview/default.asp?url=/technet/scriptcenter/default.asp Set objNewOU = GetObject("LDAP://OU=Finance,DC=fabrikam,DC=com") Set objMoveComputer = objNewOU.MoveHere _ ("LDAP://CN=atl-pro-037,OU=Finance,DC=fabrikam,DC=com", "CN=atl-pro-003") Just change the paths to suit your needs.
This retrieved this from the online scripting center that can be found on the following link http://www.microsoft.com/technet/treeview/default.asp?url=/technet/scriptcenter/default.asp Set objNewOU = GetObject("LDAP://OU=Finance,DC=fabrikam,DC=com") Set objMoveComputer = objNewOU.MoveHere _ ("LDAP://CN=atl-pro-037,OU=Finance,DC=fabrikam,DC=com", "CN=atl-pro-003") Just change the paths to suit your needs.