Remote Desktop Scripting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to script the setup of incoming connection and the deletion of the connection? My problem is that I have a DOS application that needs to use the modem and with Remote Desktop enable, it can not use it. My user is not computer literate and I want to create a batch/script that they can run prior to using the DOS application to release the modem and a batch/script to recreate the connection

The connection is required for work at home users. Thank you for any assistance
 
Alex Angelopolous has quite a bit on Terminal Services scripting at
http://dev.remotenetworktechnology.com/ts

Jeffrey Randow (Windows Net. & Smart Display MVP)
(e-mail address removed)

Please post all responses to the newsgroups for the benefit
of all USENET users. Messages sent via email may or may not
be answered depending on time availability....

Remote Networking Technology Support Site -
http://www.remotenetworktechnology.com
Windows XP Expert Zone - http://www.microsoft.com/windowsxp/expertzone
 
You may find this sufficient:

Prior to running the dos app:

Net stop remoteaccess

after:

Net start remoteaccess

This will stop RAS from answering the modem, which isn't precisely your
issue, but it is definitely worth trying.
 
Back
Top