admin tools Flashcards
what command will start the add remove applications?
appwiz.cpl
what command will start the system properties control panel?
control.exe system
what command will start the system configuration tool to change boot up options and services started?
msconfig
what command will start the device manager?
hdwwiz.cpl
what command will start the display control panel?
desk.cpl
what command will start the internet explorer properties including security settings?
inetcpl.cpl
what command will start the network control panel?
ncpa.cpl
what command will show the windows version numbers?
winver
what command will show advanced system information?
msinfo32
what command will open a command window as administrator?
runas /noprofile /user:domain\administrator cmd
what command will start the DNS tool from the command line?
c:\windows\system32\dnsmgmt.msc
what is a powershell command example for looking up a dns record for a specfic host name?
Get-DnsServerResourceRecord
- ZoneName “contoso.com”
- Name “dc1”
- RRType “A”
what powershell command will provide a listing of all DNS host entries for a zone?
Get-DnsServerResourceRecord -ZoneName “contoso.com” -RRType “A”
given an ip address, what powershell command would lookup the hostname in DNS?
given an ip address of 192.168.2.53
Get-DnsServerResourceRecord
- zonename 2.168.192.in-addr.arpa
- name 53
how do you bring up services from the command line?
services.msc