Changes between Version 4 and Version 5 of jazz/macOS


Ignore:
Timestamp:
Jul 10, 2024, 3:04:59 PM (4 months ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/macOS

    v4 v5  
    6262sudo purge
    6363}}}
     64
     65== dscl ==
     66
     67* Making a user account an administrator on Mac (Terminal)
     68* https://teamdynamix.umich.edu/TDClient/47/LSAPortal/KB/ArticleDet?ID=1981
     69
     701. SSH into computer, or find and add it to Apple Remote Desktop.
     712. Run the following command:
     72{{{
     73dscl . -append /Groups/admin GroupMembership username
     74}}}
     75
     76* Please note: An alternative method is to use the following command, but it will only work on Macs bound to Active Directory (not common)
     77{{{
     78dseditgroup -o edit -a username -t user admin
     79}}}