I misread a setting and now I can send a command without asking permission. It works pretty well. The solution (that is still a work in progress) that works is to have a cmd/batch file that accepts and file parameter (a PDF file) and then moves it to the user's C:\ drive and then uses the client's default PDF viewer to view it. Here is the windows script that works:
Code:
@echo off
move %1 \\tsclient\c\lmxprint.pdf
"C:\Program Files (x86)\2X\ApplicationServer\2XRemoteExec.exe" cmd /c "start c:\lmxprint.pdf"
This of course is called from FileMaker on the Terminal Server and the script lives on the Terminal Server.
The only drawback is getting the PDF reader open in the Foreground. Plus I need to make sure all of the users are on 10.5 and I have a few 10.1 users that the autoupdate does NOT work for for some reason. (Once they were on 10.5, they seem to update without an issue.)
-Scott