Posted on 06-23-2020 03:31 PM
Anyone deployed Notion app successfully?
I'm trying to place the app in self service so a non-admin user can install since it requires moving the app to the users application folder.
After running from a few test machines the app installs successfully from self service but fails to open saying its not installed properly.
So far i've built the installer from composer by DMG and PKG and made sure root and wheel are selected.
Solved! Go to Solution.
Posted on 06-25-2020 11:20 AM
@dmahase Looks like the user has to have a non-standard level of access to the app (for non-admin users).
Try this in the files/processes > run command section of the Notion install policy:
chmod -R 775 /Applications/Notion.app
Posted on 06-24-2020 03:13 PM
@dmahase You can use install-update-app-in-dmg to do this. With the install-update-app-in-dmg.sh script as a payload in a Jamf Pro policy, you can set the following parameters to install or update the app if already installed:
- Parameter 4: curl -A "Mozilla/5.0 (Macintosh; Intel Mac OS X)" https://www.notion.so/desktop/mac/download -s -L -I -o /dev/null -w '%{url_effective}'
- Parameter 5: Notion.app
- Parameter 6: CFBundleShortVersionString
- Parameter 7: true
Posted on 06-25-2020 10:44 AM
thanks for the response @ryan.ball !
unfortunately still no luck, giving me invalid install.
see here: https://streamable.com/cjq4k0
Posted on 06-25-2020 11:07 AM
What is the policy output?
Posted on 06-25-2020 11:12 AM
Are you setting Different permissions on the Applications folder?
Posted on 06-25-2020 11:20 AM
@dmahase Looks like the user has to have a non-standard level of access to the app (for non-admin users).
Try this in the files/processes > run command section of the Notion install policy:
chmod -R 775 /Applications/Notion.app
Posted on 06-25-2020 12:06 PM
@ryan.ball That fixed it, really appreciate it!
Posted on 12-08-2020 01:50 PM
I'd suggest this as an alternative payload for the run command section
chown -R :staff /Applications/Notion.app && chmod -R 775 /Applications/Notion.app
Posted on 10-21-2022 07:25 AM
Worked. Thanks :)
Posted on 05-07-2021 06:50 AM
@ryan.ball Just came to say thanks so much for posting this! It was a great help after tearing my hair out trying to create a pkg for Notion yesterday