> I want to install the printer on the client that calls the script.
Ah...
> The VBS will run on the server but connect to the WMI service on the
> client.
That's not possible... Server-side script cannot *UNDER ANY CIRCUMSTANCES*
interact directly with the client due to the disconnected nature of the web.
Server-side script can send client-side script down to the client, but
that's all...
> Just a thought - will the security surrounding HTTP actually prevent
> this from happening? While the script itself doesn't use HTTP, I
> wonder if the fact that it has been called from HTTP will prevent
> execution.
Security will certainly be your main problem here...

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
mike - 24 Aug 2007 04:50 GMT
I was hoping this wouldn't be the case but it does make sense.
Looks like Remote WMI is the way to go here.
Thanks Mark.
Mike