Posted on 09-18-2012 01:03 PM
Hi, I am a newbie to JSS.
We created some configuration profiles in JSS, and scoped them out to some mac minis running 10.7.4. We changed our mind on a few things and decided we didn't want those profiles anymore. So we un-scoped them and even deleted them from JSS (later) and they are still on the minis to this day. I can go on the client machine and into system prefs and remove them manually. Shouldn't they be removed when I removed the machines from scope?
Thanks!
Posted on 09-18-2012 02:38 PM
Depends on if they were applied to the User or the Device. Have you rebooted or recon'd since?
Posted on 09-18-2012 02:38 PM
Depends on if they were applied to the User or the Device. Have you rebooted or recon'd since?
Posted on 09-19-2012 05:37 AM
They were applied to the device (energy settings, login screen, etc).
Posted on 09-19-2012 02:57 PM
When you updated the Profile in the JSS, did you click on Distribute to All or Distribute to Newly Assigned Computers Only? Also have you rebooted the computers in question?
Posted on 10-10-2012 09:52 AM
Distribute to all computers.
Posted on 10-10-2012 01:34 PM
We see the same thing. You can update. You can add. You can never remove.
Posted on 04-06-2013 02:35 PM
We've been trying to find a way to remove a configuration profile that we recently deployed but decided to remove from the Macs. The profile was deployed using Casper (wrapped PKG with script to install), and some during imaging time (same PKG).
The usual command does not work for us, we get an error:
sudo profiles -R -F /tmp/profile.mobileconfig
Wierd, if we log on to the Mac, we are able to remove, we are prompted for admin rights when doing so.
Any idea why an installed profile could be so much trouble to uninstall?
The profile installs 3 certs and 1 Wi-Fi config.
Any input appreciated.
Don
Posted on 04-06-2013 02:45 PM
Which version of Casper are you guys running? I finally got our 8.62 to work with config profiles and found that it automatically sends a remove command when you "unscope" a computer from the profile.
Posted on 04-08-2013 07:31 AM
To confirm, are any of you that are experiencing this issue seeing any of your removal commands stuck in "pending" status in JSS -> Inventory -> Management History?
Configuration profile in "Pending" status?
https://jamfnation.jamfsoftware.com/discussion.html?id=4493
Posted on 04-08-2013 11:43 AM
I've seen that if we issue a sudo jamf enroll on an already enrolled Mac, it will REMOVE the MDM profile from the Mac. We have to issue the same command again to get the MDM profile back. Happens every time, without fail.
Posted on 07-01-2015 08:56 PM
you could unscope the computer or user from the scope tab, then update on client side with "sudo jamf removemdmprofile, sudo jamf mdm" or wait till it updates by itself automactically. then you will find the profile disappeared.
Posted on 07-01-2015 09:16 PM
@donmontalvo
-F requires the original install file to be present before you can remove it.
Use something like
WIFI_PROFILES=$(Profiles -Lv | awk '/attribute: name:/ && /PROFILENAME/,/attribute: profileIdentifier:/' | awk '/attribute: profileIdentifier:/ {print $4}')
This will return the identifier for the profile PROFILENAME from the list of profiles.
Then try something like
profiles -R -p "$WIFI_PROFILE"
To remove it based on the identifier.
It's also possible the identifier for a certain profile is identicle on all machines in which case you may be able to reference it directly.
Posted on 07-01-2015 11:38 PM
Hi Samuel, not sure which post you're responding to. Our command included the path to the profile which was present. This thread is over two years old, but I do remember that updating JSS fixed the problem for us. Apologies for not circling back with an update. Thanks, Don
Posted on 07-02-2015 02:09 PM
Sorry must have been tired at the end of the day... didn't notice the post date, just saw the thread near the top.
Posted on 07-02-2015 03:00 PM
LOL no worries that's a great bit of info you posted that'll help folks. Much appreciated. :)