10 commands Windows 7 network administrators need to know
TipsMake.com - It can be said that the command line tool is still valid in the recent operating system versions. They help network administrators can perform checks and can troubleshoot system problems . In this tutorial we will show you 10 basic commands that can be performed on the command line tool in Windows 7.
1: System File Checker
Malware software often tries to replace core system files with other files that can take control of the system. System File Checker can be used to verify the integrity of Windows system files. If it finds any changes to a file, the file will be replaced. You can run System File Checker using the following command:
sfc / scannow
2: File Signature Verification
One way to verify the integrity of the system is to ensure that all system files are digitally signed. You can do this with the File Signature Verification tool. This tool is launched from the command line but uses the GUI interface. It will tell you which system file is signed with a digital signature and which file is not. As a rule, all system files will be signed, though there are some hardware vendors that do not implement this rule for their driver files. The command used to launch the File Signature Verification tool is:
sigverif
3: Driverquery
Incorrect device drivers may lead to some system problems. If you want to see which drivers are installed on your Windows 7 system, you can use the driverquery tool. This is a command line tool that provides information about the driver currently in use. The command has a syntax:
driverquery
If you need more information, you can append the parameter -v. Another option is –si, this parameter will help the tool display the signature information for the driver. This is the implementation syntax:
driverquery -v
-si driverquery
4: Nslookup
The nslookup tool can help you verify whether the current DNS domain resolution works properly. When running nslookup to check the host name, the tool will show you how the domain name is resolved as well as which DNS server is used during the lookup process. This tool is also extremely useful when troubleshooting problems related to DNS records that exist but are no longer true.
To use this tool, just enter nslookup command, then the host name you want to resolve. Here is a concrete example:
nslookup dc1.contoso.com
5: Ping
Ping is definitely one of the simplest of the diagnostic commands. It is used to verify TCP / IP connections at a basic level for a particular host. To use this command, you only need to enter the command, then the IP address of the host you want to test. Specific examples are as follows:
ping 192.168.1.1
It should be noted that this command only works if Internet Control Message Protocol (ICMP) traffic is allowed to communicate between two machines. If at some point the firewall blocks this traffic, the command execution process will fail.
6: Pathping
The Ping command can tell you whether two computers can communicate with each other over a TCP / IP connection, but if the ping command fails, you will not receive any information related to the cause. of error. This is where you need to use this Pathping utility.
Pathping is designed for environments where one or more routers exist between hosts. It sends a series of data to each router in the path to the destination host in an effort to determine whether the router still works or drops packets. At the simplest level, the syntax for pathping is quite similar to the syntax of the ping command (although there are some other switches that can be used). The basic implementation syntax is as follows:
pathping 192.168.1.1
7: Ipconfig
The ipconfig command is used to view or change the computer's IP address. For example, if you want to see the full IP configuration of your Windows 7 system, you can use the following command:
ipconfig / all
Assuming that the system has obtained its IP address from the DHCP server, you can then use the ipconfig command to release and refresh the IP address. The implementation process is as follows:
ipconfig / release
ipconfig / renew
Another interesting thing you can do with ipconfig is to delete the memory of the DNS resolver. This is useful when a system is resolving DNS addresses incorrectly. You can then delete DNS cache with this command:
ipconfig / flushdns
8: Repair-bde
If a hard disk is encrypted with BitLocker, you can restore the data using a utility called repair-bde. To use this command, you need to have another hard drive to burn all the restored data to it, as well as a BitLocker recovery key or recovery password. The basic syntax of this command is as follows:
repair-bde -rk | rp
You must specify the source, destination drive, and recovery key or recovery password, along with the path to the recovery key or recovery password. Here are two examples of how to use this utility:
repair-bde c: d: -rk e: recovery.bek
repair-bde c: d: -rp 111111-111111-111111111111-111111-111111
9: Tasklist
The tasklist command is designed to provide information about the tasks running on the Windows 7 system. At the most basic level, you can use the command with the following syntax:
tasklist
Although this command has numerous parameters attached, we only mention two important parameters. One of them is –m, this parameter will cause the tasklist to display all DLL modules that are related to certain tasks. Another parameter is –svc, which lists support services for each task. This is the syntax for executing the command:
tasklist -m
tasklist -svc
10: Taskkill
The taskkill command will end a task, either by name or process ID. The syntax of the command is simple, you just need to fill in the following -pid (process ID) or -im (image name) command and the name or process ID of the task you want to end. Here are two examples of how to execute the command:
taskkill -pid 4104
taskkill -im iexplore.exe
You should read it
- 10 useful commands in Windows you should know
- Driverquery command in Windows
- Sub-commands in nslookup Windows command (Part 3)
- Sub-commands in the nslookup Windows command (Part 1)
- Sub-commands in nslookup Windows command (Part 2)
- Use Pathping
- Steps to set up SFC shortcut on Windows 11
- How to run SFC (System File Checker) Offline?
- Nslookup command in Windows
- What is PING? How is PING Test?
- How to Set Administrator Password
- Things to know about a computer system administrator
Maybe you are interested
What to do when open command window here does not appear?
How to switch users on the Linux command line
How to fix Mac Homebrew error 'zsh: command not found: brew'
What is the Command key on Windows?
How to use read command in Linux
Basic Linux commands everyone needs to know - Operations on Linux are much faster