08-09-2021 06:30 AM - edited 08-09-2021 06:30 AM
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!
Solved! Go to Solution.
Posted on 08-10-2021 04:49 AM
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
Posted on 08-09-2021 11:18 AM
So...what happens if you double-click TeamViewer QS on the Mac?
ie, does it work as it should otherwise?
Posted on 08-10-2021 02:06 AM
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...
Posted on 08-10-2021 04:44 AM
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?
Posted on 08-10-2021 04:49 AM
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