I'd like to include launching Microsoft Remote Desktop and connecting to a specific defined session using applescript. I have exported the .rdp and double clicking on it works.
How can I do this?
I've tried
which fails with "the URL is not valid"
and
which fails with "Finder got an error: Handler can't handle objects of this class"
Is this possible?
How can I do this?
I've tried
Code:
set VB_Guest to "Windows"
set rdp to VB_Guest & ".rdp"
set VB_rdp to quoted form of rdp
tell application "Microsoft Remote Desktop"
open VB_rdp
end tell
and
Code:
set VB_Guest to "Windows"
set rdp to VB_Guest & ".rdp"
set VB_rdp to quoted form of rdp
tell application "Finder"
open VB_rdp
end tell
Is this possible?