Fundamentals 2

Cards (29)

  •  System Configuration utility (MSConfig):
    • Is for advanced troubleshooting, and its main purpose is to help diagnose startup issues. 
    • There are several methods to launch System Configuration. One method is from the Start Menu.
    Note: You need local administrator rights to open this utility. 
    The utility has five tabs across the top. Below are the names for each tab. We will briefly cover each tab in this task. 
    1. General
    2. Boot
    3. Services
    4. Startup
    5. Tools
  • System Configuration:
    • In the General tab, we can select what devices and services for Windows to load upon boot. The options are: Normal, Diagnostic, or Selective. 
    • In the Boot tab, we can define various boot options for the Operating System. 
    • The Services tab lists all services configured for the system regardless of their state (running or stopped). A service is a special type of application that runs in the background.  
    • In the Startup tab, you won't see anything interesting in the attached VM. 
  • System Configuration Startup:
    • As you can see, Microsoft advises using Task Manager (taskmgr) to manage (enable/disable) startup items. The System Configuration utility is NOT a startup management program. 
    • There is a list of various utilities (tools) in the Tools tab that we can run to configure the operating system further. There is a brief description of each tool to provide some insight into what the tool is for. 
    • Notice the Selected command section. The information in this textbox will change per tool.
  • What command will open the Control Panel? (The answer is  the name of .exe, not the full path)
    • control.exe
  • User Account Control (UAC)
    • The UAC settings can be changed or even turned off entirely (not recommended).
    • You can move the slider to see how the setting will change the UAC settings and Microsoft's stance on the setting.
  • Computer Management:
    The Computer Management (compmgmt) utility has three primary sections: System ToolsStorage, and Services and Applications
  • Computer Management:
    System Tools
    • Let's start with Task Scheduler. Per Microsoft, with Task Scheduler, we can create and manage common tasks that our computer will carry out automatically at the times we specify.
    • A task can run an application, a script, etc., and tasks can be configured to run at any point. A task can run at log in or at log off. Tasks can also be configured to run on a specific schedule, for example, every five mins.
    • To create a basic task, click on Create Basic Task under Actions (right pane).
  • Computer Management: System Tools:
    Event Viewer.
    • Event Viewer allows us to view events that have occurred on the computer. These records of events can be seen as an audit trail that can be used to understand the activity of the computer system. This information is often used to diagnose problems and investigate actions executed on the system. 
  • Computer Management: System Tools:
    Event Viewer.
    Event Viewer has three panes.
    • The pane on the left provides a hierarchical tree listing of the event log providers. (as shown in the image above)
    • The pane in the middle will display a general overview and summary of the events specific to a selected provider.
    • The pane on the right is the actions pane.
  • Computer Management: System Tools:
    Event Viewer.
    • There are five types of events that can be logged:
  • Computer Management: System Tools:
    Event Viewer:
    • The standard logs are visible under Windows Logs:
  • Computer Management: System Tools:
    Shared Folders
    • Is where you will see a complete list of shares and folders shared that others can connect to. 
    • Under Shares, are the default share of Windows, C$, and default remote administration shares created by Windows, such as ADMIN$. 
    • right-click on a folder to view its properties, such as Permissions (who can access the shared resource). 
    • Under Sessions, you will see a list of users who are currently connected to the shares
  • Computer Management: System Tools:
    Performance, you'll see a utility called Performance Monitor (perfmon):
    • Perfmon is used to view performance data either in real-time or from a log file. This utility is useful for troubleshooting performance issues on a computer system, whether local or remote. 
  • Computer Management: System Tools:
    • Device Manager: allows us to view and configure the hardware, such as disabling any hardware attached to the computer.
    • Storage: Under Storage is Windows Server Backup and Disk Management.
    Disk Management is a system utility in Windows that enables you to perform advanced storage tasks.  Some tasks are:
    • Set up a new drive
    • Extend a partition
    • Shrink a partition
    • Assign or change a drive letter (ex. E:) 
  • Computer Management: Services and Applications:
    • A service is a special type of application that runs in the background. Here you can do more than enable and disable a service, such as view the Properties for the service. 
    • WMI Control configures and controls the Windows Management Instrumentation (WMI) service.
  • Per Wikipedia, "WMI allows scripting languages (such as VBScript or Windows PowerShell) to manage Microsoft Windows personal computers and servers, both locally and remotely. Microsoft also provides a command-line interface to WMI called Windows Management Instrumentation Command-line (WMIC)."
    Note: The WMIC tool is deprecated in Windows 10, version 21H1. Windows PowerShell supersedes this tool for WMI. 
  • What is the System Information (msinfo32) tool?
    • Per Microsoft, "Windows includes a tool called Microsoft System Information (Msinfo32.exe).  This tool gathers information about your computer and displays a comprehensive view of your hardware, system components, and software environment, which you can use to diagnose computer issues."
    • The  information in System Summary is divided into three sections:
    • Hardware Resources
    • Components
    • Software Environment
  • System Information:
    • System Summary will display general technical specifications for the computer, such as processor brand and model.
    • The information displayed in Hardware Resources is not for the average computer user.
    • Under Components, you can see specific information about the hardware devices installed on the computer. Some sections don't show any information, but some sections do, such as Display and Input.
  • System Information:
    • In the Software Environment section, you can see information about software baked into the operating system and software you have installed. Other details are visible in this section as well, such as the Environment Variables and Network Connections. 
    • Environment variables store information about the operating system environment. This information includes details such as the operating system path, the number of processors used by the operating system, and the location of temporary folders.
  • System Information: Software Environment:
    • The environment variables store data that is used by the operating system and other programs. For example, the WINDIR environment variable contains the location of the Windows installation directory. Programs can query the value of this variable to determine where Windows operating system files are located.
    • Click on Environment Variables to see the assigned values for the virtual machine.
  • System Information: Software Environment:
    • Another method to view environment variables is Control Panel > System and Security > System > Advanced system settings > Environment Variables OR Settings > System > About > system info > Advanced system settings > Environment Variables.
  • System Configuration: Resource Monitor:
    • Resource Monitor displays per-process and aggregate CPU, memory, disk, and network usage information, in addition to providing details about which processes are using individual file handles and modules. Advanced filtering allows users to isolate the data related to one or more processes (either applications or services), start, stop, pause, and resume services, and close unresponsive applications from the user interface.
  • System Configuration: Resource Monitor(resmon):
    • Resource Monitor also includes a process analysis feature that can help identify deadlocked processes and file locking conflicts so that the user can attempt to resolve the conflict instead of closing an application and potentially losing data.
    • This utility is geared primarily to advanced users who need to perform advanced troubleshooting on the computer system.
    • In the Overview tab, Resmon has four sections:
    • CPU
    • Disk
    • Network
    • Memory
  • Command Prompt
    • The command "hostname" will output the computer name.
    • The command "whoami" will output the name of the logged-in user.
    • A command used often is "ipconfig". This command will show the network address settings for the computer.
    • A  command to retrieve the help manual for a command is /?.
    For example, to see the help manual for ipconfig, you can use the following command: ipconfig /?
  • Command Prompt:
    Note: To clear the command prompt screen, the command is cls. 
    • The next command is netstat. Per the help manual, this command will display protocol statistics and current TCP/IP network connections. 
    • The structure tells us the netstat command can be run alone or with parameters, such as -a,  -b,  -e, etc. 
    When any of the parameters are appended to the root command, netstat in this case, the output changes. Play with a few to see for yourself. 
    The net command is primarily used to manage network resources. This command supports sub-commands.
  • Command Prompt:
    • If you type net without a sub-command, the output will show the syntax for the root command showing a few of the sub-commands you can use.
    • For the net command, to display the help manual /? will not work. In this case, you need to use different syntax, which is net help.
    • So, if you wish to see the help information for net user , the command is net help user. 
    • You can use the same command to view the help information for other useful net sub-commands, such as localgroup, use, share, and session. 
  • Registry Editor:
    The Windows Registry (per Microsoft) is a central hierarchical database used to store information necessary to configure the system for one or more users, applications, and hardware devices.
    The registry contains information that Windows continually references during operation, such as:
    • Profiles for each user
    • Applications installed on the computer and the types of documents that each can create
    • Property sheet settings for folders and application icons
    • What hardware exists on the system
    • The ports that are being used.
  • Registry Editor
    • Warning: The registry is for advanced computer users. Making changes to the registry can affect normal computer operations. 
    • There are various ways to view/edit the registry. One way is to use the Registry Editor (regedit).
  • What is the command to open the Registry Editor? (The answer is the name of the .exe file, not the full path)
    • regedt32.exe