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 Chriss Miller 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 lytus

  1. lytus

    Check for TimeStamp on a file

    Hi all, I am looking for an easy way to make sure a file has been updated in the last 10 minutes. Is there an easy way to do this without a lot of time manipulation in vbscript? Thanks.
  2. lytus

    Need to call an exe and pass parameters

    Hi All, I am trying to call a command line exe file and pass parameters to it. I assume a batch file would be the best way to do this, but how do I pass parameters from the vbscript to a batch file?
  3. lytus

    MOM Opinions

    Rudis, we have been forced down that same path, cheaper, management likes that. I hope we do not have the same problems you have had, but I have read in other places it is not the most stable of products. I have seen that 3rd party unix monitoring tool, I started laughing when I saw how it...
  4. lytus

    Monitor for file existence/timestamp

    Hi All, I am new to MOM 2005, still have it in development. I am wondering how I can monitor for if a file exists, and if it exists, has it been updated in the last half hour. If someone could point me in the right direction I would appreciate it.
  5. lytus

    xml.status question

    I have written a monitor that runs every 5 minutes and all it looks for is the xml.status return code. If I get a 200 back, the web site is fine, if I get anything else back, I send an alert to the webmasters. The problem I am having is with these objects. Set...
  6. lytus

    xmlhttp question

    Ok, all of this works, if I use the msxml2.xmlhttp.3.0 I get a 200 every time, the caching problem. If I use the: msxml2.serverxmlhttp.4.0 then it does not work for most sites. Any ideas? 'Set xml=CreateObject("Msxml2.SERVERXMLHTTP") 'Set xml=CreateObject("Msxml2.SERVERXMLHTTP.4.0") Set...
  7. lytus

    xmlhttp question

    Hi all, I am writing a script that pulls back the xml.status of a web site. I was originally using this: Set xml=CreateObject ("MSXML2.XMLHTTP.3.0") but I realized it caches the sites. Once the xml.status = 200 it would come back as 200 every time. Then I found a site that said if you are...
  8. lytus

    Question about xml responsetext

    Hi all, I was wondering how I can get this code to work on a page that you must login in order to get to it. I am getting this error C:\Scripts\returnstatus.vbs(8, 7) msxml3.dll: A security problem occurred. set xml=createobject("Microsoft.XMLHTTP") StartTime = now xml.Open "GET"...
  9. lytus

    error checking

    Thanks, I'll try that!
  10. lytus

    error checking

    Hi all, I have a disk monitor that runs on servers to check disk space, used, availabe, etc... On some servers however we are having drives go bad and my monitor just does an on error resume next, so it moves right on past and ignores them. I am trying to check if the drive is available, and...
  11. lytus

    synthetic transaction web monitor

    I am guessing by the response the either I am not asking my question clearly or it cannot be done. Does anyone have any further questions about what I am wanting to do?
  12. lytus

    Write to a web text form

    I guess from this respone it either can't be done or I am not stating my question clearly. Does anyone have questions about what I am wanting to do?
  13. lytus

    Write to a web text form

    Hi all, I want to write code to go to a page like google and write a string to the search engine and press enter, it is not for that purpose, i will be using it to log into web sites to verify it is all working correctly and send alerts if it is not, but that is just a generic example to explain...
  14. lytus

    synthetic transaction web monitor

    No, I want to write a monitor to verify all of this is working. Synthetic transaction monitoring.
  15. lytus

    synthetic transaction web monitor

    I want to go to a site to pay for something in the code, log in using a username and password, go to the next site, select items, go to the next site to pay, and so on, in the code. I will keep up with time to get from one site to another, if it fails, where it fails. Right now we have nothing...

Part and Inventory Search

Back
Top