Posted on 10-05-2022 02:03 PM
Hi, I am trying to create the Nexthink package in jamf pro need to deploy 200+ MacBooks and am unable to create the yet not found any steps related to this. I got only a profile from the Nexthink site
can anyone guide or share the step for Nexthink collector deployment?
Thanks
Posted on 10-06-2022 05:43 AM
You need to use Composer to create the package.
Looking at the script it doesn't look like there's a need to cd to the Nexthink directory but it's working so I'm not going to change it :)
Postinstall
#!/bin/bash
cd /private/tmp/Nexthink
hdiutil mount /private/tmp/Nexthink/Nexthink_Collector_22.6.2.10_10.15-12.dmg -nobrowse
sudo /Volumes/Nexthink_Collector_22.6.2.10\ OSX\ 10.15\ -\ 12/csi.app/Contents/MacOS/csi -address [your engine].us.nexthink.cloud -tcp_port 443 -key /private/tmp/Nexthink/customer_key.txt -engage enable -data_over_tcp enable -use_assignment enable -ra_execution_policy signed_trusted_or_nexthink
hdiutil detach /Volumes/Nexthink_Collector_22.6.2.10\ OSX\ 10.15\ -\ 12/ -force
#Cleaning up
rm -rf /private/tmp/Nexthink/
Posted on 06-08-2023 10:01 AM
If I copy the .dmg file under /tmp file and drag into my composer then it doesnt show me the entire path that .dmg is under /tmp. And after clicking on convert to source taking some time and opening all four files under .dmg, if I close that window and build as .pkg and manually run on my mac, it is saying incompatible on this device, any idea?
Posted on 07-19-2024 08:17 AM
Confirmed working. Thanks!
Posted on 06-09-2023 01:02 PM
I followed the steps above and just changed the Nexthink version to the one I'm installing, but it doesn't install. I see the folder show up in the tmp directory, it then mounts the dmg, the tmp folder goes away, but it doesn't install.
Posted on 06-09-2023 01:13 PM
Is your path to csi.app correct? I think this would be the most likely place for an error.
You can try running the individual pieces of the script in terminal using sudo to see what the issue is.
Posted on 06-12-2023 09:26 AM
Looks like my path was a little different and I also had an extra space. It looks like it's installed. Is the nexthink service nxtsvc supposed to show up under Full Disk Access when you upload the mobileconfig?
Posted on 06-12-2023 09:43 AM
Full disk access permissions don't show up in the macOS GUI when they're enabled via config profile. This is my experience anyway.
Posted on 06-13-2023 09:12 AM
Sounds good. Has anybody created config profiles for the browser extensions? The steps online are pretty vague. I went to the below site and tried doing a copy and paste, but Jamf doesn't like the format of it.
Posted on 06-13-2023 09:25 AM
I don't use them this but should probably work (Chrome as an example):
<?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>ExtensionSettings</key>
<dict>
<key>miinajhilmmkpdoaimnoncdiliaejpdk</key>
<dict>
<key>installation_mode</key>
<string>force_installed</string>
<key>update_url</key>
<string>https://clients2.google.com/service/update2/crx</string>
</dict>
</dict>
</dict>
</plist>