| |
goofs
Posts: 4
Score: 0
Joined: 12/17/2006
Status: offline
|
I'm new to scripting and I need to write a script that will do the following. 1. Check to see if a mdb file exists in a users profile. 2. If it doesn't exist. Copy the mdb file to the users profile. Then launch database program. 3. If it does exist. Then launch database program. I think found out how to copy a file. Dim objFso Set objFso = WScript.CreateObject("Scripting.FileSystemObject") objFso.CopyFile "\\network\program\place.mdb", "C:\documents and settings\%profile%", "False" Most of the If Then Else examples that I have seen have to do with numbers. Thanks in Advance
|
|