Hi all,
I am doing a lot of development with WinPE at the moment so I am limited to using VBScript unless I want to start coding in C++.
I'd like to build some sort of remote debugging solution such that log entries that would have normally been written to the HDD can be written to the network/remote host.
My initial thought was to use a webservice and call the webservice via a vbscript to send logging information to a remote host. My initial attempt at this proved too much work and there was a performance impact on the scripts while waiting for the logging to
happen.
I then thought about using Kiwi Klog syslog tools to send syslog messages to a remote host but this also proved troublesome and had a performance impact.
So does anyone else have any other ideas?? How can I send logging information over the network via vbscript to a remote host??? Ideally I'd like a simple .net Console app on the remote host that shows the logging in real-time.
Thanks in advance!