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 Rhinorhino 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 Finnerbahce

  1. Finnerbahce

    Auto Email

    Can anyone help on this one?
  2. Finnerbahce

    What's wrong here?

    Ok, well what does happen is that it creates a folder. It doesn't create a text file though within the folder.
  3. Finnerbahce

    What's wrong here?

    slog = "c:\log\" & Year(date) & "_" & Month(date) if Not fso.FolderExists(slog) then fso.CreateFolder(slog) slog = slog & "\Test" & Right("0" & Day(Date), 2) & Right("0" & Month(Date), 2) & Year(Date) & ".log" set logfile=fso.opentextfile(slog,8,true) It's giving me a permission denied error
  4. Finnerbahce

    Run for an hour and exit

    And where would this go in my script? P.S. Thanks to NetNodeMan for the code.
  5. Finnerbahce

    Run for an hour and exit

    How can i get a vbs script to run for an hour and exit. It's currently running every two minutes but I want it to run every two minutes for one hour.
  6. Finnerbahce

    New Week, New folder

    That sounds lovely keybrdcowboy but unfortunately I'm no a programmer. this is a part of my program I'm not too bothered about to be honest. My current setup writes my output to a file as is. I just wanted to organise it. I'm a complete novice at this stuff so unfortunately what's there is...
  7. Finnerbahce

    New Week, New folder

    I realise this is my third thread but I decided to split all threads so that it would be easier when others want to search
  8. Finnerbahce

    New Week, New folder

    My program creates a log which increments daily. How do I create the log so that it'll create a folder for that week and then put the daily files for that week in that folder and the same for month and year?
  9. Finnerbahce

    Incremental Log Sent Via Email

    I can send a log via email but I have an incremental log that needs to be mailed. How do I send the last txt file that was changed via automatic mail? Thanks
  10. Finnerbahce

    Auto Email

    This is my current code. How can I change this for a while statement? Also, am I better off hard coding my instuctions or is it the same thing as just calling other vb scripts?
  11. Finnerbahce

    Auto Email

    OK Scratch that. I got this working. Now........ My vbscript tests an internet page. What I want to do is after 5 failures I want a mail to be sent. How can I wrap my code with the 5 failures thingy?
  12. Finnerbahce

    Auto Email

    Hi, I need to set up a script to send an auto email when x amount of errors occur on a web checker. I have the web checker running but now want to incorporate my email into it. I'm a novice but found markdmac's advice below very handy. I have a few questions though...

Part and Inventory Search

Back
Top