1. Start -> Run -> tsadmin
2. This is going to depend upon your logging setup, if you have Success/Fail Security logging turned on for logins, and sufficient space in your Security Event Viewer (as well as an appropriate backup) then you can see it in the Security Log. Did you have an...
From a security perspective, it would be a whole lot less likely that two users would have the same First Initial/Last Name combination than the other way around....although I work in a HIPAA regulated env, so we have to use employee numbers...LOL
I just tested bertieuk's function, and it worked beautifully for me. I think you just need to make sure that the computer you run the script from is xp/2k3, it doesn't matter what the servers are.
Thanks bertieuk! I'm stealing this! LOL
-e
add this to the function I gave you earlier, change the paths of the input/output variables, and feed it a list of computer names in a text file, 1 to a line...it should output the data you need:
dim strInputPath, strOutputPath, strStatus
dim objFSO, objTextIn, objTextOut
strInputPath =...
Use a ping test via a shell:
Here's a quick and dirty function I wrote to do this, returns TRUE if the machine responds, FALSE if it doesn't...
function fPingTest( strComputer )
dim objShell,objPing
dim strPingOut, flag
set objShell =...
http://computerperformance.co.uk/Logon/code/code_800A0046.htm
check to make sure you have the appropriate permissions, i.e. permission to use scripts...
Also, if you're expecting the move to happen, the logging on user will have to have rights to move the computer accounts into the appropriate OU, unless you're running a script with elevated priviledges, which is unadvisable, I think....
If you have a list of your machines, you could (slow as...
i found this:
http://www.rlmueller.net/NameTranslateFAQ.htm
' Constants for the NameTranslate object.
Const ADS_NAME_INITTYPE_GC = 3
Const ADS_NAME_TYPE_NT4 = 3
Const ADS_NAME_TYPE_GUID = 7
' Specify the NetBIOS name of the domain.
strNetBIOSDomain = "MyDomain"
' Specify the GUID name of...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.