Sending FAX from VBScript

Joined
Oct 7, 2005
Messages
1
Reaction score
0
Hey

- I can send a FAX from my Windows XP client
- I can send a FAX from my Windows 2003 server
- I can print from the client through the shared fax-printer on my server

But have problems sending a fax from a client through a Windows 2003 FAX Service?
I get this exception "(null) The handle is invalid"

Below is my sample script, any suggestions wil be appriciated.
Tanks!

Set S = CreateObject("FaxServer.FaxServer")

S.Connect "SRV1"
Set D = S.CreateDocument("c:\test.txt")
D.FaxNumber = "33371122"
D.Send
S.Disconnect
 
Back
Top