meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
windows:commandline:start [2026/06/11 13:39] titannetwindows:commandline:start [2026/06/11 15:41] (current) titannet
Line 42: Line 42:
  
 ^  ^^  ^ ^  ^^  ^
-| for /L %i in ([start],[step],[stop]) do [command] || Counting Loop | +''for /L %i in ([start],[step],[stop]) do [command]'' || Counting Loop | 
-| for /F %i in ([file-set]) do [command] || Iterate over file line by line |+''for /F %i in ([file-set]) do [command]'' || Iterate over file line by line |
 |  ||  | |  ||  |
  
 +===== System Info =====
  
 +
 +<code>
 +DATE Outputs or sets the current date DATE
 +TIME Displays or sets the system time TIME
 +DRIVERQUERY Displays the current state and properties of device drivers DRIVERQUERY
 +HOSTNAME Displays the name of the computer HOSTNAME
 +SYSTEMINFO Shows configuration information about your computer SYSTEMINFO
 +VER Displays the Windows version VER
 +GPRESULT Displays the currently applied group policies (RSoP) GPRESULT /R
 +GPUPDATE Updates group policies GPUPDATE /FORCE
 +</code>
  
 ===== Tools ===== ===== Tools =====
  
-==== Netstat ====+==== Network ====
  
 ^  ^^  ^ ^  ^^  ^
Line 58: Line 70:
 |  ||  | |  ||  |
  
 +
 +<code>
 +PCONFIG Shows information about network interfaces and IP configuration IPCONFIG /ALL
 +PING Sends ICMP requests to the target host to check its availability PING google.com
 +TRACERT Finds the network path for packets traveling to a destination TRACERT google.com
 +NSLOOKUP Finds the IP address for a resource name NSLOOKUP google.com
 +ROUTE Displays network route tables ROUTE PRINT
 +ARP Displays a table mapping IP addresses to physical (MAC) addresses ARP -A
 +NETSH Starts the network settings control program NETSH INTERFACE IP SHOW CONFIG
 +
 +</code>
  
 ==== Reg ==== ==== Reg ====