admin tools Flashcards

1
Q

what command will start the add remove applications?

A

appwiz.cpl

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

what command will start the system properties control panel?

A

control.exe system

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

what command will start the system configuration tool to change boot up options and services started?

A

msconfig

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

what command will start the device manager?

A

hdwwiz.cpl

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

what command will start the display control panel?

A

desk.cpl

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

what command will start the internet explorer properties including security settings?

A

inetcpl.cpl

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

what command will start the network control panel?

A

ncpa.cpl

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

what command will show the windows version numbers?

A

winver

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

what command will show advanced system information?

A

msinfo32

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

what command will open a command window as administrator?

A

runas /noprofile /user:domain\administrator cmd

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

what command will start the DNS tool from the command line?

A

c:\windows\system32\dnsmgmt.msc

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

what is a powershell command example for looking up a dns record for a specfic host name?

A

Get-DnsServerResourceRecord

  • ZoneName “contoso.com”
  • Name “dc1”
  • RRType “A”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what powershell command will provide a listing of all DNS host entries for a zone?

A

Get-DnsServerResourceRecord -ZoneName “contoso.com” -RRType “A”

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

given an ip address, what powershell command would lookup the hostname in DNS?

A

given an ip address of 192.168.2.53

Get-DnsServerResourceRecord

  • zonename 2.168.192.in-addr.arpa
  • name 53
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

how do you bring up services from the command line?

A

services.msc

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

how do you bring up computer manager from the command line?

A

compmgmt.msc

17
Q

how do you find the correct command for starting a management tool?

A

dir c:/windows/system32/*.mmc

18
Q

how do you start the group policy editor from the command line?

A

gpedit.msc