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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top