Skip to main content

Windows commands for technicians


Common Windows commands that technicians should know.

appwiz.cpl
ncpa.cpl
timedate.cpl
resmon.exe
taskmgr.exe
compmgmt.msc
devmgmt.msc
diskmgmt.msc
taskschd.msc
wf.msc
dsa.msc
lusrmgr
perfmon /rel
shutdown -s -f -t 60 : Force shutdown in 60 seconds
shutdown -r -f -t 60 : Force restart in 60 seconds

Open Programs and Features

appwiz.cpl

Open Computer Management

compmgmt.msc

Open Time and Date Setting

timedate.cpl

Open Device Manager

devmgmt.msc

Open Network Connections

ncpa.cpl

Open Disk Management

diskmgt.msc

Open DNS Manager

dnsmgmt.msc

Open Active Directory Users and Computers

dsa.msc

Open Local Users and Groups

lursmgr

Open Resource Monitor

resmon.exe

Open Task Scheduler

taskschd.msc

Open Windows Firewall

wf.msc

Open Task Manager

taskmgr.exe

Open Reliability Monitor

Quick review computer's reliability and problems history

perfmon /rel

List all shared folder on remote computer

net view \\IP_ADDRESS /all

Remote support tools

Microsoft Quick Assistant: Windows + CTRL + Q

Ultraviewer

Popular posts from this blog

MySQL: Notes

Ways to check MySQL version mysql --version mysql -V dpkg -l 'mysql-sever' mysql -u root -p How to check MySQL version: mysql --version Database folder On Microsoft Windows, by default, MySQL save databases in this folder: %ProgramData%\MySQL\MySQL Server 5.5\data Check databases' size SELECT table_schema AS "Database name", SUM(data_length + index_length) / 1024 / 1024 AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema; Export database schema $ mysqldump -u root -p --no-data wordpress1001 > c:\backup\schema-wordpress1001.sql Enter password: **************** Create a dedicated user to backup databases Give credit to: http://www.fromdual.com/privileges-of-mysql-backup-user-for-mysqldump Create dedicated mysql user and grant privileges to run backup $ mysql -u root -p CREATE USER 'backupdb'@'localhost' IDENTIFIED BY 'passwordhere'; GRANT SELECT,SHOW VIEW,RELOAD,REPLICATION CLIENT...

nmap - The Network Mapper

WARNING : It is ILLEGAL to scan hosts without permission.

Linux command: grep - Global Regular Expression Print

grep command grep, egrep, fgrep, rgrep - print lines matching a pattern