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!

Search results for query: *

  • Users: Finnerbahce
  • Content: Threads
  • Order by date
  1. 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
  2. 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.
  3. 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?
  4. 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
  5. 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