Skip to main content
Solved

Notion install

  • June 23, 2020
  • 9 replies
  • 69 views

dmahase
Forum|alt.badge.img+3

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.

Best answer by ryan_ball

@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

9 replies

Forum|alt.badge.img+18
  • Contributor
  • 475 replies
  • June 24, 2020

@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


dmahase
Forum|alt.badge.img+3
  • Author
  • New Contributor
  • 7 replies
  • June 25, 2020

thanks for the response @ryan.ball !
unfortunately still no luck, giving me invalid install.
see here: https://streamable.com/cjq4k0


Forum|alt.badge.img+18
  • Contributor
  • 475 replies
  • June 25, 2020

What is the policy output?


Forum|alt.badge.img+18
  • Contributor
  • 475 replies
  • June 25, 2020

Are you setting Different permissions on the Applications folder?


Forum|alt.badge.img+18
  • Contributor
  • 475 replies
  • Answer
  • June 25, 2020

@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

dmahase
Forum|alt.badge.img+3
  • Author
  • New Contributor
  • 7 replies
  • June 25, 2020

@ryan.ball That fixed it, really appreciate it!


rluna
Forum|alt.badge.img+1
  • New Contributor
  • 4 replies
  • December 8, 2020

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

Forum|alt.badge.img+2

@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


Forum|alt.badge.img+3
  • New Contributor
  • 2 replies
  • October 21, 2022

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

Worked. Thanks :)