2.1.5 ‐ Windows Command Line Tools - Zach-ATK/reading-notes GitHub Wiki
5. Windows Command Line Tools:
Begin with a statement addressing why this topic matters as it relates to what you are studying in this module.
Professor Messer: Microsoft Command Line Tools – CompTIA A+ 220-1002 – 1.4
The video titled "Microsoft Command Line Tools – CompTIA A+ 220-1002 – 1.4" discusses various command-line utilities that are important for managing and troubleshooting Windows systems. Providing a comprehensive overview of these command-line tools and their usage.
Prompt Questions:
Answer each and every question or prompt presented in the assignment above.
1. How can you list the files in the current directory using the command prompt?
- the 'dir' (directory) command*
2. How might the “sfc” command and the “gpupdate” command help in troubleshooting on Windows?
- The 'sfc' command (specifically 'sfc /scannow' looks for file corrupt files, installation packets, and to ensure your system's operation
- The 'gpupdate' (group policy update) command updates the group policy settings in Windows, helping with login/permissions/group policy issues.*
3. What advantages does the “robocopy” command offer over the “xcopy” command, and why is it useful for file transfers in certain situations?
- The 'robocopy' (robust file copy) has a few advantages, mostly two factors, A) the copy is more reliable, B) it allows you to resume the file copy if interrupted (such as with intermittent internet).*
4. Think about any real-life scenarios from your cultural context where the use of command line tools could be beneficial. Describe one such scenario and explain how a specific command line tool would help address the situation.
- I once used a small program to help with a computer repair course. I don't think the program would work anymore but I think it went like this:
script for boot-disk and command prompt initialization
echo off
format C:\
Y
echo on
shutdown /t 300
have fun! When I took computer repair, spinning drives were still widespread, as well as corruption. Instead of manually formatting HDDs, this tool allowed the class just to plug in and boot. The computer would automatically shut down after, if it needed to, and we were done - ready for a fresh OS install.