Group Creating and Management - Foren-Ken/tech-journal GitHub Wiki
How to make groups (can contain elements like users)
- Access the AD and select "Active Directory Users and Computers"
- Select a GPO and right click, from here, choose "New" then "Group".
- Create a group name, type, and scope.
- Select group in the same window, right click, and choose "properties"
- Go to the "Members" tab and add members to the group.
How to make policy:
- Access "Group Policy Management" often from Tool tab up top (Windows Server 2019).
- Right click a GPO and select "Create a GPO in this domain, and Link it here..". Create the name and save.
- Click off the GPO, then click back on it to access.
- Security filtering makes it to the policy affects certain groups. Predefined groups can be selected instead of naming every individual user.
- Right click the policy in the "group policy management" window and press "Edit..."
- From the new menu, policies can be set for either users selected or for computers selected.
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]