That does it.
Main Topics
Browse All TopicsI am using this vbscript to copy files form one local drive to a network drive:
Dim objFSO:Set objFSO=CreateObject("Scrip
Dim objFolder:Set objFolder=objFSO.GetFolder
For Each file In objFolder.Files
If Right(file.Name,7) = "_15.dat" Then objFSO.CopyFile file.path, "T:\remote_data\"
Next
How can I add "error handling" to the code. If there is an error I would like to write to the event-viewer, and prevent the code from crashing.
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sorry, the error logging would be incorrect there...
Use this version instead...
const SUCCESS = 0
const WARNING = 2
On Error Resume Next
Dim objFSO:Set objFSO=CreateObject("Scrip
Dim objShell:Set objShell = Wscript.CreateObject("Wscr
Dim objFolder:Set objFolder=objFSO.GetFolder
For Each file In objFolder.Files
If Right(file.Name,7) = "_15.dat" Then
objFSO.CopyFile file.path, "T:\remote_data\"
If Err.Number=0 Then
objShell.LogEvent SUCCESS, file.path & " copied successuflly."
Else
objShell.LogEvent WARNING, file.path & " failed to copy."
End IF
Next
Business Accounts
Answer for Membership
by: sirbountyPosted on 2007-04-02 at 15:00:52ID: 18839944
Something like this would log successful copies...
ting.FileS ystemObjec t") ipt.Shell" ) ("C:\local _data\")
Const EVENT_SUCCESS = 0
On Error Resume Next
Dim objFSO:Set objFSO=CreateObject("Scrip
Dim objShell:Set objShell = Wscript.CreateObject("Wscr
Dim objFolder:Set objFolder=objFSO.GetFolder
For Each file In objFolder.Files
If Right(file.Name,7) = "_15.dat" Then
objFSO.CopyFile file.path, "T:\remote_data\"
If Err.Number=0 Then
objShell.LogEvent EVENT_SUCCESS, file.path & " copied successuflly."
Else
objShell.LogEvent Err.Number, file.path & " failed to copy."
End If
Next