Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by EnochL

  1. EnochL

    Script to view/report all security settings on a folder's files?

    I use DumpSec for this sort of thing.. http://somarsoft.com/ I think its free, also....always a plus!
  2. EnochL

    Editing e-mails and old username shows up

    What exactly do you mean by "edits" an email, is she looking at old emails, composing new emails, or replying/forwarding?
  3. EnochL

    Windows 2003 Audit Questions

    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...
  4. EnochL

    App blows out Terminal Server

    Add/Remove Programs does place the TS into install mode...
  5. EnochL

    account naming convention question

    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
  6. EnochL

    Remote machines...

    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
  7. EnochL

    Remote machines...

    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 =...
  8. EnochL

    Remote machines...

    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 =...
  9. EnochL

    VBScript error: permission denied

    http://computerperformance.co.uk/Logon/code/code_800A0046.htm check to make sure you have the appropriate permissions, i.e. permission to use scripts...
  10. EnochL

    Move computer object according to IP address

    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...
  11. EnochL

    Resolve GUID to friendly user name

    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...

Part and Inventory Search

Back
Top