Lesson 2 - Managing Windows Flashcards
(99 cards)
What is devmgmt.msc?
Device Manager allows you to view and edit the properties of installed hardware
What is diskmgmt.msc?
Disk Management is a console related to initializing, partitioning, and formatting disk drives (HDDs, SSDs, and optical drives)
What are the three volumes you can find on Disk 0 that is holding the OS?
- The system volume contains the files used to boot the OS. Uses a boot system called extensible firmware interface (EFI).
- The boot volume contains the operating system files and is usually allocated the drive letter C:
- Recovery partitions contain tools to repair a damaged installation &/or return the computer to its factory state.
What is initializing disks?
If you add an unformatted HDD, SSD, or thumb drive, you will be prompted to initialize it. You can choose whether to use the master boot record (MBR) or Globally Unique ID (GUID) Partition Table (GPT) partition style for the new disk. MBR and GPT refer to the way the partition information is stored on the disk
What is partitioning?
Each disk must be configured with at least one partition. You can create a new partition by right-clicking on an area of unpartitioned space. A wizard will prompt you to choose how much of the unallocated space to use and to select a file system.
What is formatting?
A new partition must be written with a file system - typically NTFS - to allow Windows to write and read files. The simpler FAT32 file system might be used for small, removable drives. You can also reformat existing partitions. This will delete all files from the volume. Along with the file system type, you can choose a volume label and allocation unit size
What is repartitioning?
Existing partitions can be expanded if there is unpartitioned space. Partitions can also be removed or shrunk to make space available
What is configuring dynamic disks?
If there is more than one disk available, a new dynamic volume can be configured. Dynamic volumes use multiple devices to implement some type of software RAID redundancy, such as mirroring. Now the feature is called Storage Spaces
What are the three main problems of file storage?
- Fragmentation: on a hard disk, ideally each file would be saved in contiguous clusters on the disk. In practice, over time as files grow, they become fragmented across non-contiguous clusters, reducing read performance.
- Capacity: It reduces over time. If the boot volume has less that 20% free space, performance can be impaired. When space drops below 200 MB, a Low Disk Space warning is generated.
- Damage: Hard disk operations are physically intensive, and the platters of the disk are easy to damage, especially if there is a power cut. If the disk does not recognize that a sector is damaged, files can become corrupted. SSDs can suffer from degradation of the memory circuitry, resulting in bad blocks, and can be damaged by impacts, overheating, and electrical issues.
What is dfrgui.exe?
Defragment and Optimize Drives tool runs various operations to speed up the performance of HDDs and SSDs
What does dfrgui.exe do on HDDs?
Defragmenting rewrites file data so that it occupies contiguous clusters, reducing the amount of time the controller has to seek over the disk to read a file
What does dfrgui.exe do on SSDs?
Data is stored in units called blocks that are not directly managed by the OS. The drive controller determines how blocks are used according to wear-leveling routines to minimize degradation of the solid-state cell. The main purpose of the optimizer tool is to instruct the controller to run a TRIM operation. TRIM is a provess by which the controller identifies data that the OS has marked as deletable and can then tag corresponding blocks as writable. The optimizer does perform a type of defragmentation operation on an SSD if it hold the OS and the system protection feature Volume Shadow Copy service is enabled
What is cleanmgr.exe?
The Disk Clean-up tool tracks files that can be safely erased to reclaim disk space. These files include ones deleted but still available in the Recycle Bin and various temporary files and caches. The tool can be run in administrator mode using the Clean up system files option to reclaim data from caches such as Windows Update and Defender
What is tasksch.msc?
The Task Scheduler runs commands and scripts automatically. Tasks can be run once at a future date or time or according to a recurring schedule. A task can be a simple application process or a batch file or script
What is lusrmgr.msc?
The Local Users and Groups console provides an advanced interface for creating, modifying, disabling, and deleting user accounts.
What is certmgr.msc?
The Certificate Manager console shows which certificates have been installed and provides a mechanism for requesting and importing new certificates
What are the certificates found in the Personal folder?
The Personal folder stores the certificates that have been issued to the user account. User certificates can be used for tasks such as authenticating to a network access server, encrypting data, and adding a digital signature to a document or message to prove its authenticity.
What are the certificates found in the Trusted Root Certification Authorities?
Trusted Root Certification Authorities contains a superset of the certificates of all issuers that are trusted, including Microsoft’s CA root, local enterprise CAs and third-party CAs. Most of these certificates are managed via Windows Update
What are the certificates found in the 3rd party Root CA?
Third-party Root Certification Authority contains trusted issuers from providers other than Microsoft or a local enterprise
What is gpedit.msc?
The Group Policy editor is a console related to configuring detailed user and system registry settings via policies. It provides a more robust means of configuring many of the Windows settings than editing the registry directly.
What is secpol.msc?
The Local Security Policy editor can be used to modify security settings specifically
What is regedit.exe?
The Registry Editor is a tool for making direct edits to the registry database, such as adding or modifying keys or values. The Registry Editor ca be used to make backups of the registry
What is the registry?
In the Windows registry, a key is analogous to a folder on the file system. Keys are used to group like settings together in a hierarchy that is logical to navigate
What is HKEY_USERS?
HKEY_USERS is a root key in the registry that is a database includes settings that apply to individual user profiles, such as desktop personalization. HKEY_CURRENT_USER is a subset of HKEY_USERS with the settings for logged in user.