Module 2 day 2: Windows adding and removing users, ben life as a cio Flashcards

1
Q

how to add a user in Windows

A

Go to computer management tool, local users and groups, users, right click, select new user.

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

in the new user screen, what does it need us to do?

A

set a username, full name, and password for the new user.

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

if you are setting up an account for a user, what do you do with their password?

A

set a default password, and then make the user change the password when they log in. Make sure the box for: user must change password at next log on: is checked

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

how do you remove a user?

A

go into computer management, local users and groups, users, right click on the user you want to remove, and select delete. click yes through the warning message

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

if you delete a user and make a new user with the same name, will the user still be able to access their old resources?

A

no

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

how do you create a new account, Andrea, in the Windows PowerShell CLI?

A

net user Andrea * /add

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

what command do we use in PowerShell to add a new user?

A

net

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

what PowerShell real command requires some scripting to use to make a new user account?

A

new-LocalUser

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

how do you modify net to add a new local user?

A

/add parameter

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

what does the /add parameter do to the net command?

A

instructs net to create the account

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

what does the asterisk with the net command format do?

A

it takes the place of a password so that you are prompted to enter a password.

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

What does the Get-LocalUser command do?

A

shows you a list of local users on the computer

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

what must you remember to do each time you make a new user account?

A

flag it as needing a password change.

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

how do you use the log on password change parameter? for Andrea’s account

A

net user andrea /logonpasswordchg:yes

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

how do you combine commands so you make a new account that requires a password change at the first login? Make an account like this for cesar

A

net user cesar pa5sw0rd /add /logonpasswordchg:yes

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

if you are setting up an account that requires the user to change their password, can you do the asterisk thing?

A

no.

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

how to remove user accounts in the PowerShell CLI? use net. remove Andrea’s account.

A

net user andrea /del

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

how do you remove a user’s account with Remove-LocalUser? remove Cesar.

A

Remove-LocalUser cesar

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

what commands can you use to remove users?

A

Remove-LocalUser and net

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

how do you add users in linux?

A

sudo useradd

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

add the user juan in your linux machine

A

sudo useradd juan

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

what does sudo useradd do?

A

sets up basic configurations for the new user and sets up a home directory

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

how can you combine the useradd command with the password command to make a user change their password on login?

A

passwd -e user

24
Q

how do you delete a user account?

A

sudo userdel

25
Q

delete juan’s account on linux

A

sudo userdel juan

26
Q

true or false: gps units don’t have user accounts

A

false. an OS needs a User account to run a device.

27
Q

for a mobile device, what do you call the initial account you used during setup?

A

the primary account

28
Q

on a mobile device, what account is used to create a user profile for you?

A

the primary account

29
Q

what is like your user account in a mobile device?

A

your user profile

30
Q

in a mobile device, what contains all your accounts, preferences, and apps?

A

your user profile

31
Q

in iOS and Android, what can the primary account be used for?

A

to synchronize settings and data to the cloud

32
Q

what happens when you replace a device or set up a new device with a primary account you have used before on a mobile device?

A

you can have the option to restore the data and apps if it was uploaded to the cloud.

33
Q

in iOS and Android, what can be signed into additional accounts?

A

user profile

34
Q

What kinds of accounts can you sign into on a mobile device?

A

email, social media, other

35
Q

what is SSO?

A

single sign on

36
Q

what does SSO mean?

A

instead of apps asking you for another user name and password, they will allow you to authenticate using an account you are already signed into.

37
Q

apps you sign into on a mobile device with SSO don’t have what, but you can let them use what?

A

credentials

38
Q

what should I never ask someone for when setting up their account?

A

their password

39
Q

what should I do if an end-user reveals the password to me?

A

encourage them to change the password

40
Q

how many user profiles do most mobile devices support?

A

one

41
Q

What do some Android devices support?

A

many user profiles

42
Q

what do most mobile devices not ask you to do when you want to use them?

A

re-enter your primary password

43
Q

what is good about the mobile device not requiring primary password each use?

A

convenience

44
Q

what is a con of a mobile device not wanting primary pass each time you use it?

A

anyone who gets the device will have access to your data, confidential, privileged systems access

45
Q

How does a Mobile OS usually protect data?

A

device password, pin, unlock pattern, fingerprint sensor, facial recognition, biometric data

46
Q

what is something unique to you, like a fingerprint, voice, or face called?

A

biometric data

47
Q

what are MDM policies?

A

mobile device management, used by organizations to protect your information by requiring devices to be locked.

48
Q

what are used to apply and enforce rules about how the device has to be configured and used?

A

MDM

49
Q

What are two ways you can set up an email account in the mail app onan iOS device?

A

automatically and manually

50
Q

what types of email providers can you set up automatically on iOS?

A

iCloud, Google, Microsoft exchange, Yahoo

51
Q

where do you find settings for mail accounts on iOS?

A

settings, mail, accounts

52
Q

how do you add Google or other account to phone Android?

A

settings, passwords and accounts/ users and accounts, add account

53
Q

remove account from Android:

A

settings, passwords/users and accounts, remove account

54
Q

on Android, on devices that allow many user profiles, what does a user profile include?

A

personal home screen, apps, settings, accounts, more.

55
Q

what types of user profiles on multi-user android devices?

A

user, guest, account, restricted profile (tablets only), Child user

56
Q

Who is Ben Fried?

A

Google CIO, and Vice President