Windows Fundamentals Flashcards

(19 cards)

1
Q

verifying the identity of a user, system, or device to ensure they are who they say they are

A

authentication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

authentication type;
a password that is compared to a stored hash value

A

Password-based Authentication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

authentication type;
multiple factors (password, SMS code, biometrics, etc) for stronger security

A

Multi-Factor Authentication (MFA)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

authentication type;
Uses digital certificates and private keys for secure communication

A

Public Key Infrastructure (PKI)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

authentication type;
Allows third-party applications to access resources on behalf of a user without sharing credentials

A

OAuth

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

relies on domain accounts and challenge-response mechanisms;
now uses Kerberos, a negotiation-based system for enhanced security

A

Windows Authentication (NTLM)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

a profile used by end users within a network to determine their access level;
exist in Security Account Manager (SAM) or within the Domain Controller (DC)

A

user account

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

3 types of user accounts:
_____ account:
Purpose: Does not permit access to network resources.
Authentication: Managed by SAM.
Use Case: Utilized by workgroups.
_____ account:
Purpose: Provides access to network resources.
Authentication: Managed by the Domain Controller (DC).
Location: Resides in Active Directory (AD)
_____ account:
Purpose: Automatically created when the OS, Active Directory, or applications are loaded.
Use Case: Can exist in local or domain environments.

A

Local account
Domain account
Built-in account

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what 3 account types/roles does Windows have

A
  1. Standard
  2. Administrator
  3. Guest
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

creating, modifying, and deleting user accounts and groups within an operating system;
setting permissions, managing user roles, and ensuring secure access to resources;
Groups facilitate easier management of permissions for multiple users

A

user and group management

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

how to mange users/groups in a GUI

A

Control Panel > User Accounts > Manage User Accounts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the CLI command to create a
user;
domain user;
local group;
domain group

A

net user username password /add
net user username password /add /domain
net localgroup groupname /add
net localgroup groupname /add /domain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the PowerShell command to create a
local user;
local group

A

New-LocalUser –Name “username” –Password (ConvertTo-SecureString “Password12345!” –AsPlainText –Force)

New-LocalGroup –Name “groupname”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

collection of data stored on a computer or digital device

A

files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

defines how data is named, stored, organized, and accessed on a storage device;
OS uses this to manage files on the device

A

file system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Application Programs: Interact with the file system.
Logical File System: Manages file metadata and structure.
File-Organization Module: Organizes files into directories and manages data blocks.
Basic File System: Handles file storage and retrieval.
I/O Control: Manages input/output operations.
Devices: Physical hardware that stores data.

A

6 layers of a file system

17
Q

2 common file systems in Windows

A

FAT (File Allocation Table) & NTFS (New Technology File System)

18
Q

tracks file locations by mapping file names to their physical locations on the storage device;
old & was originally an 8-bit file system;
lacked data security features

19
Q

widely used in USB drives and other removable media that require larger storage capacities;
supports individual files larger than 4 GB;
can accomodate storage media sizes up to 256 TB