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 derfloh 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 fAisha

  1. fAisha

    Do something on computer via using FQDN name

    No, it will be without dot. There's one network adapter. But I found a mistake: FQDN is case - sensitive, becaust when I imporive it, everything works perfectly :)
  2. fAisha

    Do something on computer via using FQDN name

    I wrote something like it. It works, but wscript.echo return 2 message "Something is wrong". Script don't want do process my loop. Anybody know how to do it? :( On Error Resume Next Dim ComputerName Const wbemFlagReturnImmediately = &h10 Const wbemFlagForwardOnly = &h20 strComputer = "."...
  3. fAisha

    Do something on computer via using FQDN name

    I have the script who check something. I need give my colleagues the possibility to run script on the computer, which name he write in Message Box. So i have a conception: Give FQDN name to script And do my script. Any idea how to realize it?
  4. fAisha

    Problem with writing to file

    It works :D Thanks :) Improved code below. Maybe it helps someone :) Set objFSO = CreateObject("Scripting.FileSystemObject") thisday = Right(Year(Date),2) & Right("0" & Month(Date),2) & Right("0" & Day(Date),2) Set objfile = objFSO.CreateTextFile("C:\ParserIIS\ex" & thisday & ".txt") Set...
  5. fAisha

    Problem with writing to file

    Any Questions: It's possible to firstly create file date-based name and later write information to this? How it should be doing?
  6. fAisha

    Problem with writing to file

    Yes! Thank you so much!!! :D
  7. fAisha

    Problem with writing to file

    Hi Guys, I have a problem. I wolud like to write a script meet requirements: Script must parse logfile for string ">>ZIP", create new text file with date-based name and copy every line which contains string "Connector". HELP, PLEASE!!! I wrote script to parse logfile. I wrote script to create...

Part and Inventory Search

Back
Top