vb Code:
Module CPASU_SPC
Sub Main()
Console.Title = "MOARW Programs"
Console.WriteLine("Begin Application" & vbLf) 'Writes text to console in a new line
Console.Beep()
Console.ReadLine()
Dim objFSO
Dim CPASU_Journal, vSharePoint, fsoSource, fsoDest
objFSO = CreateObject("Scripting.FileSystemObject")
CPASU_Journal = "C:\Users\**\Documents\Team docs\JMP Analysis\HTML"
vSharePoint = "http://moss.****/sites/***/***/Shared Documents"
fsoSource = CPASU_Journal & "\gfx\image1.png"
fsoDest = vSharePoint & "/image1.png"
objFSO.CopyFile(fsoSource, fsoDest)
Kill(fsoSource)
End Sub
End Module