Group Creating and Management - Foren-Ken/tech-journal GitHub Wiki

Windows AD DS:

How to make groups (can contain elements like users)

  1. Access the AD and select "Active Directory Users and Computers"
  2. Select a GPO and right click, from here, choose "New" then "Group".
  3. Create a group name, type, and scope.
  4. Select group in the same window, right click, and choose "properties"
  5. Go to the "Members" tab and add members to the group.

How to make policy:

  1. Access "Group Policy Management" often from Tool tab up top (Windows Server 2019).
  2. Right click a GPO and select "Create a GPO in this domain, and Link it here..". Create the name and save.
  3. Click off the GPO, then click back on it to access.
  4. Security filtering makes it to the policy affects certain groups. Predefined groups can be selected instead of naming every individual user.
  5. Right click the policy in the "group policy management" window and press "Edit..."
  6. From the new menu, policies can be set for either users selected or for computers selected.

LINUX

How to create users:
adduser [name]
passwd [name]

How to create and add people to groups
groupadd [group name]
usermod -aG [groupname] [name]

How to change group of stuff:
chgrp [group name] [file/directory]

How to change permissions:
chmod g/u/o[permissions to - or +] [file or directory]
chown [name] [file/directory]

⚠️ **GitHub.com Fallback** ⚠️