Apple Script to launch app on remote mac
I am trying to launch an application on a remote mac using the apple script below. But it seems it will only work with signed applications. Is there anyway to get this to work with unsigned applications, in particular Apple Scripts saved as apps?
set remoteMachine to "eppc://user:password@computer"
tell application "Finder" of machine remoteMachine
open ("/Applications/textedit.app" as POSIX file as alias)
end tell
end tell
Thanks.
Wiz