Skip to main content

Hello,

we are using the support app https://marketplace.jamf.com/details/support-app/
Trying to click on "Remote Support" ends with an error because of missing permissions.
Our config looks like this - TeamViewer QS ist already installed:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CustomColor</key>
<string>#506d85</string>
<key>FirstRowLinkLeft</key>
<string>com.teamviewer.TeamViewerQS</string>
<key>FirstRowLinkRight</key>
<string>com.jamfsoftware.selfservice.mac</string>
<key>FirstRowSubtitleLeft</key>
<string>Share your screen</string>

Any solutions for this problem? Thank you!

So...what happens if you double-click TeamViewer QS on the Mac?

ie, does it work as it should otherwise?


So...what happens if you double-click TeamViewer QS on the Mac?

ie, does it work as it should otherwise?


The app is working fine if i open it manually. I also checked the permissions. I can´t explain why i can´t open the app via support app...


Looks like there is a copy of TeamViewer QS anywhere where your user is not allowed to launch it from. Maybe in the downloads folder?


Hello,

the app is in the correct folder /Applications

But i saw that something went wrong with permissions, if i install the app clean from downloading and installing the dmg manual, it works. So i wrote a script for it, now it works:

rm -r /Applications/TeamViewer Quick Support.app
curl -L https://download.teamviewer.com/download/TeamViewerQS.dmg > /private/var/tmp/TeamViewerQS.dmg
hdiutil attach /private/var/tmp/TeamViewerQS.dmg
cp -R /Volumes/TeamViewerQS/TeamViewerQS.app /Applications
hdiutil unmount /Volumes/TeamViewerQS
rm -rf /private/var/tmp/TeamViewerQS.dmg
open /Applications/TeamViewerQS.app