Find and print out all hidden files. Use the -iname switch for case insensitive matching.
find / -name ".*" -print -xdev
find / -size +10M -print
Find files larger than 10 megabytes on a system.
find / -nouser -o -nogroup
Find files that do not have an owner or a group.
find / -iname "*.*" -mtime -7
Find all files modified in the past week. The -iname switch permits case insensitive matches.
netsh firewall show allowedprogram
Show programs allowed through Windows Firewall for the Domain and Standard profiles.
msconfig.exe
Launch the Windows System Configuration Utility gui from the Start > Run prompt. This gui tool allows you to change startup and boot options.
tasklist /svc
Shows the Image, PID, and services that are currently running.
route print
Check your Windows routing table for issues.
wmic startup list full
Use wmic to display full details of Windows start up processes.

Recent comments
1 year 5 weeks ago
1 year 5 weeks ago