Skip to main content

Windows RUN Shortcuts Command

Windows RUN  Shortcuts Command

-------------------------------------------------------------------------------------------
Control Panel                                     Program Shortcuts
control                                                Control Panel
control desktop                                   Display Properties (Personalization)
control color                                       Personalization - Color and Appearance
control folders                                    Folders Properties
control keyboard                               Keyboard Properties
control mouse                                   Mouse Properties
control netconnections                     Network Properties
control printers                                 Printers Folders
control userpasswords                      Manager current User Account
control userpasswords2                    Manager all User Accounts
control update                                  Windows Update
control admintools                          Administrative Tools
control schedtasks                          Scheduled Tasks
appwiz.cpl                                      Application Wizard (Program and Features)
powercfg.cpl                                  Power Configuration
timedate.cpl                                   Date and Time Properties
desk.cpl                                          Display - Screen Resolution
intl.cpl                                            Regional Settings (International)
mmsys.cpl                                      Sound Properties (Multimedia System Settings)
inetcpl.cpl                                       Internet Properties (Internet Control Panel)
wscui.cpl                                         Security Center(Windows Security Center UI)
sysdm.cpl                                        System Properties
utilman                                            Ease of Access Utility Manager
firewall.cpl                                     Windows Firewall
minus3.                                                Commonly used Windows Tools
explorer                                               Windows Explorer
regedit                                                 Registry Editor
services.msc                                      Windows Services (local)
taskmgr                                                Task Manager
msconfig                                              System Configuration Utility
mstsc                                                    Remote Desktop (Microsoft Terminal Services Client)
logoff                                                    Log Off Windows (without confirmation!)
shutdown                                           Shuts Down Windows (don't try unless you are ready to shutdown)
--------------------------------------------------
Microsoft System Configurations
--------------------------------------------------
               
devmgmt.msc                                   Device Management
eventvwr.msc                                   Event Viewer
compmgmt.msc                               Computer Management including System Tools, Storage,
         Services and Appliations
diskmgmt.msc                                   Disk Partition Manager
dcomcnfg                                            Component Services (Detailed Component Configuration)
gpedit.msc                                          Group Policy Editor
secpol.msc                                          Local Security Policy Settings
lusrmgr.msc                                       Local User and Groups
perfmon.msc                                     Performance Monitor
fsmgmt.msc                                      Shared Folders (File Sharing Management)
---------------------------------
 Other Windows Tools
---------------------------------
shrpubw                          Create a shared folder Wizard
dxdiag                             Direct X Troubleshooter
cleanmgr                         Clean Manager - Disk Cleanup Utility
clipbrd                             Clipboard Viewer (not available after Windows XP)
msiexec                           Windows Installer Details
magnify                           Windows Magnifier
osk                                   On Screen Keyboard
msinfo32                          System Information
sndvol                              Volume Control
winver                              Windows Version ( shows your windows version )
comp                                Compare Files
ftp                                    MS-Dos FTP
label                                Volume Serial Number for C:
fsquirt                              Bluetooth Transfer Wizard
verifier                             Driver Verifier Utility
migwiz                            Migration Wizard - Files and Settings Transfer Tool
sigverif                           File Signature Verification Tool
fonts                               Fonts
joy.cpl                            Game Controllers
mrt                                 Malicious Software Removal Tool
eudcedit                         Private Characters Editor

Comments

Popular posts from this blog

O Level Practical Queestion Paper (MS-OFFICE, MSDOS, MS-EXCEL, ICT Resources)

MSDOS 1. Write command to display all files having extension ‘jpg’. 2. Write command to display all files of all types starting with letter ‘m’. 3. Write command to display all files having names up to ten characters with second last letter as ‘n’, e.g. intelligent. 4. Write a command to copy the file mars of type exe from the directory ‘space’ of drive U to another directory “universe” in drive S. 5. Write a command to delete the directory as well as the files of the directory ‘world’ on drive E. 6. Write command to display all file names on the disk in drive A and having an extension of no more than two characters.   7. Write command to copy all the files beginning with ‘m’ and whose file names has a ‘txt’ extension from drive A to the ‘\document’ directory on drive C. 8. Write set of commands to create a subdirectory of the root directory called ‘exercise’, and then move into it 9. Perform the following tasks using DOS commands in the DOS sh...

IICS College 15th August Celebration Day

IICS COLLEGE  15th August Celebration Day

Learn Programming in UNIX

Q: - Write a program to input two numbers and add them?             gedit add.sh             clear             echo “enter two numbers:”             read a             read b             sum=`expr$a+$b`             echo $sum Syntax for if-else:- (1)          if test condition             then                 ---------                 --...