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 wOOdy-Soft 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 Calz

  1. Calz

    Multiple CPU

    With Multiple CPUs does 2k3 start a new process on the next free available cpu? Got a server that runs quite a few scripts, mostly vbs etc, what it's calling is not multi threaded so it can't split the load between the processors but will 2k3 start each script process on the next available free...
  2. Calz

    Multiple match

    I had to tweak it a bit for what I wanted ultimately but all working, thanks :o)
  3. Calz

    Multiple match

    Thanks but with both od those I get... awk: syntax error near line 1 awk: bailing out near line 1
  4. Calz

    Multiple match

    Thanks, it achieves the same result in my file but doesn't solve the initial problem.
  5. Calz

    Multiple match

    Can anyone help, bit of a noob to awk so strugling here This is a netbackup command that produces an output with many fields, we ignore the first 3 lines, I'm trying to ignore field $12 of "ABC" "DEF" "GHI" and produce a count but in the case of DEF I also need to ignore anything that starts...
  6. Calz

    Volume pool change

    Can I change the volume pool of a tape on 6.0mp4 via the java gui to a different pool without effecting what's on the tape? We have some tapes marked as backup but are actually month end so just want to swiych them over, all the images on it are correct just the wrong volume pool.
  7. Calz

    Script help

    Need help with a script that runs in a weird order... Part of:- Set InFile = Fso.OpenTextFile(".\input.txt", 1, True) Set OutFile = Fso.OpenTextFile(".\output.txt", 2, True) ServerCount=0 Do While InFile.atendofline <> true CurLine = InFile.ReadLine If InStr(CurLine,"") Then...
  8. Calz

    Services 'log on as'

    In the end I wrote a script that makes use of the PSService utility.
  9. Calz

    Services 'log on as'

    In a similar vein to my other query, Is there a script/app/util that will trawl through a list of servers provided and tell me what service is starting using what user i.e. the 'log on as'?
  10. Calz

    AD Account in use

    Hmmm kind of in the right direction... but more in AD. For example there's a user container with 20 accounts in it, out of those 20 15 may be used for service accounts so they never actually logon as in get a profile etc but they are used for resource permissioning. I'm trying to find out when...
  11. Calz

    AD Account in use

    Is there a way to see if a user account in AD is being used? I'm looking at service accounts so they're not directly logged on with.
  12. Calz

    Error reporting

    As simple as that :) Thanks.
  13. Calz

    Error reporting

    I have the following within a script which has been tweaked a bit for here Sub install_app Wscript.Echo (err.number) strAppCmd = c:\windows\notepad.exe call objShell.Run (strAppCMD, 7, True) Wscript.Echo (err.number) End Sub I get 0 then 0 but If I rename notepad the script bombs out...
  14. Calz

    Local groups &amp; local members?

    More of an audit to make sure the correct groups are on each server and no ones made themself a local admin etc.
  15. Calz

    Local groups &amp; local members?

    Does anyone have a script that given a list of servers will list the local groups and all the members of each group?

Part and Inventory Search

Back
Top