├── README.md └── Run-Command.bat /README.md: -------------------------------------------------------------------------------- 1 | # RUN COMMAND WINDOW FROM BATCH FILE 2 | 3 | The run command window is one of the fastest and most efficient ways to directly access a multitude of Windows' functions, without sifting through the Control Panel or other menus. We have compiled for you a comprehensive list of 133 commands, confirmed to work in Windows 7, Windows 8, and Windows 10. 4 | 5 | ![image](https://user-images.githubusercontent.com/42666125/111258974-9d548600-8650-11eb-9111-1ee33bb94192.png) 6 | 7 | ![image](https://user-images.githubusercontent.com/42666125/111258986-a2193a00-8650-11eb-9c38-45f3d3ab46c1.png) 8 | 9 |
 @echo off  
 10 |  mode con: cols=106   
 11 |  title Run Command for windows 7,8 and 10  
 12 |  color 1f  
 13 |  :menu  
 14 |  cls  
 15 |  echo.  
 16 |  echo ========================================================================================================  
 17 |  echo = Run Command: A Complete List for Windows 7,8 and 10
 18 |  echo = By: BuanaNET SECURE, Sept 2019
 19 |  echo = fb.com/buananet.pangkalanbun
 20 |  echo ========================================================================================================  
 21 |  echo.  
 22 |  echo Select a task:  
 23 |  echo ==============  
 24 |  echo.  
 25 |  echo "01" Add Hardware Wizard                / hdwwiz  
 26 |  echo "02" Adding a new Device                / devicepairingwizard  
 27 |  echo "03" Advanced User Accounts              / azman.msc  
 28 |  echo "04" Advanced User Accounts              / netplwiz  
 29 |  echo "05" Backup and Restore                / sdclt  
 30 |  echo "06" Calculator                    / calc)  
 31 |  echo "07" Certificates                   / certmgr.msc  
 32 |  echo "08" Character Map                   / charmap  
 33 |  echo "09" ClearType Tuner                  / cttune  
 34 |  echo "10" Color Management                 / colorcpl  
 35 |  echo "11" Command Prompt                  / cmd  
 36 |  echo "12" Component Services                / comexp.msc  
 37 |  echo "13" Component Services                / dcomcnfg  
 38 |  echo "14" Computer Management                / compmgmt.msc  
 39 |  echo "15" Computer Management                / compmgmtlauncher  
 40 |  echo "16" Connect to a Projector              / displayswitch  
 41 |  echo "17" Control Panel                   / control  
 42 |  echo "18" Credential Backup Restore             / credwiz  
 43 |  echo "19" Data Execution Prevention             / systempropertiesdataexecutionprevention  
 44 |  echo "20" Date and Time                   / timedate.cpl  
 45 |  echo "21" Device Manager                  / hdwwiz.cpl  
 46 |  echo "22" Diagnostics Troubleshooting            / msdt  
 47 |  echo "23" Digitizer Calibration Tool            / tabcal  
 48 |  echo "24" DirectX Diagnostic Tool              / dxdiag  
 49 |  echo "25" Disk Cleanup                   / cleanmgr  
 50 |  echo "26" Disk Defragmenter                 / dfrgui  
 51 |  echo "27" Disk Management                  / diskmgmt.msc  
 52 |  echo "28" Display                      / dpiscaling  
 53 |  echo "29" Display Color Calibration             / dccw  
 54 |  echo "30" DPAPI Key Migration Wizard            / dpapimig  
 55 |  echo "31" Driver Verifier Manager              / verifier  
 56 |  echo "32" Ease of Access Center               / utilman  
 57 |  echo "33" Event Viewer                   / eventvwr.msc  
 58 |  echo "34" Fax Cover Page Editor               / fxscover  
 59 |  echo "35" Game Controllers                 / joy.cpl  
 60 |  echo "36" Getting Started                  / irprops.cpl  
 61 |  echo "37" IExpress Wizard                  / iexpress  
 62 |  echo "38" Internet Explorer                 / iexplore  
 63 |  echo "39" Internet Options                 / inetcpl.cpl  
 64 |  echo "40" Language Pack Installer              / lpksetup  
 65 |  echo "41" Local Users and Groups              / lusrmgr.msc  
 66 |  echo "42" Magnifier                     / magnify  
 67 |  echo "43" Malicious Software Removal Tool          / mrt  
 68 |  echo "44" Math Input Panel                 / mip  
 69 |  echo "45" Microsoft Management Console           / mmc  
 70 |  echo "46" Mouse                       / main.cpl  
 71 |  echo "47" NAP Client Configuration             / napclcfg.msc  
 72 |  echo "48" Narrator                     / narrator  
 73 |  echo "49" Network Connections                / ncpa.cpl  
 74 |  echo "50" New Scan Wizard                  / wiaacmgr  
 75 |  echo "51" Notepad                      / notepad  
 76 |  echo "52" ODBC Data Source Administrator          / odbcad32  
 77 |  echo "53" On-Screen Keyboard                / osk  
 78 |  echo "54" Open Documents Folder               / documents  
 79 |  echo "55" Open Downloads Folder               / downloads  
 80 |  echo "56" Open Favorites Folder               / favorites  
 81 |  echo "57" Open Pictures Folder               / pictures  
 82 |  echo "58" Open Recent Folder                / recent  
 83 |  echo "59" Open Videos folder                / videos  
 84 |  echo "60" Paint                       / mspaint  
 85 |  echo "61" Pen and Touch                   / tabletpc.cpl  
 86 |  echo "62" People Near Me                  / collab.cpl  
 87 |  echo "63" Performance Monitor                / perfmon.msc  
 88 |  echo "64" Performance Options                / systempropertiesperformance  
 89 |  echo "65" Phone and Modem                  / telephon.cpl  
 90 |  echo "66" Phone Dialer                   / dialer  
 91 |  echo "67" Power Options                   / powercfg.cpl  
 92 |  echo "68" Printer User Interface              / printui  
 93 |  echo "69" Private Character Editor             / eudcedit  
 94 |  echo "70" Problem Steps Recorder              / psr  
 95 |  echo "71" Programs and Features               / appwiz.cpl  
 96 |  echo "72" Region and Language                / intl.cpl  
 97 |  echo "73" Registry Editor                  / regedit  
 98 |  echo "74" Remote Access Phonebook              / rasphone  
 99 |  echo "75" Remote Desktop Connection             / mstsc  
100 |  echo "76" Resource Monitor                 / resmon  
101 |  echo "77" SAM Lock Tool                   / syskey  
102 |  echo "78" Screen Resolution                 / desk.cpl  
103 |  echo "79" Services                     / services.msc  
104 |  echo "80" Set Program Access Computers Default       / computerdefaults  
105 |  echo "81" Share Creation Wizard               / shrpubw  
106 |  echo "82" Shared Folder Wizard               / shrpubw  
107 |  echo "83" Shared Folders                  / fsmgmt.msc  
108 |  echo "84" Snipping Tool                   / snippingtool  
109 |  echo "85" Sound                       / mmsys.cpl  
110 |  echo "86" Sound recorder                  / soundrecorder  
111 |  echo "87" SQL Server Client Network Utilites        / cliconfg  
112 |  echo "88" Sticky Notes                   / stikynot  
113 |  echo "89" Sync Center                    / mobsync  
114 |  echo "90" System Configuration               / msconfig  
115 |  echo "91" System Configuration Editor            / sysedit  
116 |  echo "92" System Information                / msinfo32  
117 |  echo "93" System Properties                 / sysdm.cpl  
118 |  echo "94" System Properties (Advanced Tab)         / systempropertiesadvanced  
119 |  echo "95" System Properties (Hardware Tab)         / systempropertieshardware  
120 |  echo "96" System Properties(Remote Tab)           / systempropertiesremote  
121 |  echo "97" System Properties (System Protection Tab     / systempropertiesprotection  
122 |  echo "98" System Restore                  / rstrui  
123 |  echo "99" Task Manager                   / taskmgr  
124 |  echo "100" Task Scheduler                  / taskschd.msc  
125 |  echo "101" Taskbar and Start Menu              / control.exe /name Microsoft.TaskbarandStartMenu  
126 |  echo "102" Troubleshooting                  / control.exe /name Microsoft.Troubleshooting  
127 |  echo "103" Trusted Platform Module (TPM)           / tpm.msc  
128 |  echo "104" User Account Control Settings           / useraccountcontrolsettings  
129 |  echo "105" User Accounts                   / control.exe /name Microsoft.UserAccounts  
130 |  echo "106" Utility Manager                  / utilman  
131 |  echo "107" Version Reporter Applet              / winver  
132 |  echo "108" Volume Mixer                   / sndvol  
133 |  echo "109" Windows Action Center               / wscui.cpl  
134 |  echo "110" Windows Activation Client             / slui  
135 |  echo "111" Windows Anytime Upgrade              / WindowsAnytimeUpgradeui  
136 |  echo "112" Windows Anytime Upgrade Results          / windowsanytimeupgraderesults  
137 |  echo "113" Windows Disc Image Burning Tool          / isoburn  
138 |  echo "114" Windows DVD Maker                 / dvdmaker  
139 |  echo "115" Windows Easy Transfer               / migwiz  
140 |  echo "116" Windows Explorer                 / explorer  
141 |  echo "117" Windows Fax and Scan               / wfs  
142 |  echo "118" Windows Features                 / optionalfeatures  
143 |  echo "119" Windows Firewall                 / firewall.cpl  
144 |  echo "120" Windows Journal                  / journal  
145 |  echo "121" Windows Media Player               / wmplayer  
146 |  echo "122" Windows Memory Diagnostic Scheduler       / mdsched  
147 |  echo "123" Windows Mobility Center              / mblctr  
148 |  echo "124" Windows PowerShell                / powershell  
149 |  echo "125" Windows PowerShell ISE              / powershell_ise  
150 |  echo "126" Windows Remote Assistance             / msra  
151 |  echo "127" Windows Repair Disc                / recdisc  
152 |  echo "128" Windows Script Host                / wscript  
153 |  echo "129" Windows Update                  / wuapp  
154 |  echo "130" Windows Update Standalone Installer        / wusa  
155 |  echo "131" WMI Management                  / wmimgmt.msc  
156 |  echo "132" WordPad                      / write  
157 |  echo "133" XPS Viewer                    / xpsrchvw  
158 |  echo.  
159 |  echo "0" Exit This Program  
160 |  echo.  
161 |  set /p run-cmd=Type option:  
162 |  if "%run-cmd%"=="01" hdwwiz  
163 |  if "%run-cmd%"=="02" devicepairingwizard  
164 |  if "%run-cmd%"=="03" azman.msc  
165 |  if "%run-cmd%"=="04" netplwiz  
166 |  if "%run-cmd%"=="05" sdclt  
167 |  if "%run-cmd%"=="06" calc  
168 |  if "%run-cmd%"=="07" certmgr.msc  
169 |  if "%run-cmd%"=="08" charmap  
170 |  if "%run-cmd%"=="09" cttune  
171 |  if "%run-cmd%"=="10" colorcpl  
172 |  if "%run-cmd%"=="11" cmd  
173 |  if "%run-cmd%"=="12" comexp.msc  
174 |  if "%run-cmd%"=="13" dcomcnfg  
175 |  if "%run-cmd%"=="14" compmgmt.msc  
176 |  if "%run-cmd%"=="15" compmgmtlauncher  
177 |  if "%run-cmd%"=="16" displayswitch  
178 |  if "%run-cmd%"=="17" control  
179 |  if "%run-cmd%"=="18" credwiz  
180 |  if "%run-cmd%"=="19" systempropertiesdataexecutionprevention  
181 |  if "%run-cmd%"=="20" timedate.cpl  
182 |  if "%run-cmd%"=="21" hdwwiz.cpl  
183 |  if "%run-cmd%"=="22" msdt  
184 |  if "%run-cmd%"=="23" tabcal  
185 |  if "%run-cmd%"=="24" dxdiag  
186 |  if "%run-cmd%"=="25" cleanmgr  
187 |  if "%run-cmd%"=="26" dfrgui  
188 |  if "%run-cmd%"=="27" diskmgmt.msc  
189 |  if "%run-cmd%"=="28" dpiscaling  
190 |  if "%run-cmd%"=="29" dccw  
191 |  if "%run-cmd%"=="30" dpapimig  
192 |  if "%run-cmd%"=="31" verifier  
193 |  if "%run-cmd%"=="32" utilman  
194 |  if "%run-cmd%"=="33" eventvwr.msc  
195 |  if "%run-cmd%"=="34" fxscover  
196 |  if "%run-cmd%"=="35" joy.cpl  
197 |  if "%run-cmd%"=="36" irprops.cpl  
198 |  if "%run-cmd%"=="37" iexpress  
199 |  if "%run-cmd%"=="38" iexplore  
200 |  if "%run-cmd%"=="39" inetcpl.cpl  
201 |  if "%run-cmd%"=="40" lpksetup  
202 |  if "%run-cmd%"=="41" lusrmgr.msc  
203 |  if "%run-cmd%"=="42" magnify  
204 |  if "%run-cmd%"=="43" mrt  
205 |  if "%run-cmd%"=="44" mip  
206 |  if "%run-cmd%"=="45" mmc  
207 |  if "%run-cmd%"=="46" main.cpl  
208 |  if "%run-cmd%"=="47" napclcfg.msc  
209 |  if "%run-cmd%"=="48" narrator  
210 |  if "%run-cmd%"=="49" ncpa.cpl  
211 |  if "%run-cmd%"=="50" wiaacmgr  
212 |  if "%run-cmd%"=="51" notepad  
213 |  if "%run-cmd%"=="52" odbcad32  
214 |  if "%run-cmd%"=="53" osk  
215 |  if "%run-cmd%"=="54" documents  
216 |  if "%run-cmd%"=="55" downloads  
217 |  if "%run-cmd%"=="56" favorites  
218 |  if "%run-cmd%"=="57" pictures  
219 |  if "%run-cmd%"=="58" recent  
220 |  if "%run-cmd%"=="59" videos  
221 |  if "%run-cmd%"=="60" mspaint  
222 |  if "%run-cmd%"=="61" tabletpc.cpl  
223 |  if "%run-cmd%"=="62" collab.cpl  
224 |  if "%run-cmd%"=="63" perfmon.msc  
225 |  if "%run-cmd%"=="64" systempropertiesperformance  
226 |  if "%run-cmd%"=="65" telephon.cpl  
227 |  if "%run-cmd%"=="66" dialer  
228 |  if "%run-cmd%"=="67" powercfg.cpl  
229 |  if "%run-cmd%"=="68" printui  
230 |  if "%run-cmd%"=="69" eudcedit  
231 |  if "%run-cmd%"=="70" psr  
232 |  if "%run-cmd%"=="71" appwiz.cpl  
233 |  if "%run-cmd%"=="72" intl.cpl  
234 |  if "%run-cmd%"=="73" regedit  
235 |  if "%run-cmd%"=="74" rasphone  
236 |  if "%run-cmd%"=="75" mstsc  
237 |  if "%run-cmd%"=="76" resmon  
238 |  if "%run-cmd%"=="77" syskey  
239 |  if "%run-cmd%"=="78" desk.cpl  
240 |  if "%run-cmd%"=="79" services.msc  
241 |  if "%run-cmd%"=="80" computerdefaults  
242 |  if "%run-cmd%"=="81" shrpubw  
243 |  if "%run-cmd%"=="82" shrpubw  
244 |  if "%run-cmd%"=="83" fsmgmt.msc  
245 |  if "%run-cmd%"=="84" snippingtool  
246 |  if "%run-cmd%"=="85" mmsys.cpl  
247 |  if "%run-cmd%"=="86" soundrecorder  
248 |  if "%run-cmd%"=="87" cliconfg  
249 |  if "%run-cmd%"=="88" stikynot  
250 |  if "%run-cmd%"=="89" mobsync  
251 |  if "%run-cmd%"=="90" msconfig  
252 |  if "%run-cmd%"=="91" sysedit  
253 |  if "%run-cmd%"=="92" msinfo32  
254 |  if "%run-cmd%"=="93" sysdm.cpl  
255 |  if "%run-cmd%"=="94" systempropertiesadvanced  
256 |  if "%run-cmd%"=="95" systempropertieshardware  
257 |  if "%run-cmd%"=="96" systempropertiesremote  
258 |  if "%run-cmd%"=="97" systempropertiesprotection  
259 |  if "%run-cmd%"=="98" rstrui  
260 |  if "%run-cmd%"=="99" taskmgr  
261 |  if "%run-cmd%"=="100" taskschd.msc  
262 |  if "%run-cmd%"=="101" control.exe /name Microsoft.TaskbarandStartMenu  
263 |  if "%run-cmd%"=="102" control.exe /name Microsoft.Troubleshooting  
264 |  if "%run-cmd%"=="103" tpm.msc  
265 |  if "%run-cmd%"=="104" useraccountcontrolsettings  
266 |  if "%run-cmd%"=="105" control.exe /name Microsoft.UserAccounts  
267 |  if "%run-cmd%"=="106" utilman  
268 |  if "%run-cmd%"=="107" winver  
269 |  if "%run-cmd%"=="108" sndvol  
270 |  if "%run-cmd%"=="109" wscui.cpl  
271 |  if "%run-cmd%"=="110" slui  
272 |  if "%run-cmd%"=="111" WindowsAnytimeUpgradeui  
273 |  if "%run-cmd%"=="112" windowsanytimeupgraderesults  
274 |  if "%run-cmd%"=="113" isoburn  
275 |  if "%run-cmd%"=="114" dvdmaker  
276 |  if "%run-cmd%"=="115" migwiz  
277 |  if "%run-cmd%"=="116" explorer  
278 |  if "%run-cmd%"=="117" wfs  
279 |  if "%run-cmd%"=="118" optionalfeatures  
280 |  if "%run-cmd%"=="119" firewall.cpl  
281 |  if "%run-cmd%"=="120" journal  
282 |  if "%run-cmd%"=="121" wmplayer  
283 |  if "%run-cmd%"=="122" mdsched  
284 |  if "%run-cmd%"=="123" mblctr  
285 |  if "%run-cmd%"=="124" powershell  
286 |  if "%run-cmd%"=="125" powershell_ise  
287 |  if "%run-cmd%"=="126" msra  
288 |  if "%run-cmd%"=="127" recdisc  
289 |  if "%run-cmd%"=="128" wscript  
290 |  if "%run-cmd%"=="129" wuapp  
291 |  if "%run-cmd%"=="130" wusa  
292 |  if "%run-cmd%"=="131" wmimgmt.msc  
293 |  if "%run-cmd%"=="132" write  
294 |  if "%run-cmd%"=="133" xpsrchvwr  
295 |  if "%run-cmd%"=="0" exit  
296 |  goto menu  
297 |  Pause  
298 |  goto menu  
299 | 
300 | 301 | ## License
302 | [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 303 | ![License: CC0-1.0](https://img.shields.io/badge/License-CC0_1.0-lightgrey.svg) 304 | -------------------------------------------------------------------------------- /Run-Command.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | mode con: cols=106 3 | title Run Command for windows 7,8 and 10 4 | color 1f 5 | :menu 6 | cls 7 | echo. 8 | echo ======================================================================================================== 9 | echo = = 10 | echo = Run Command: A Complete List for Windows 7,8 and 10 = 11 | echo = By: BuanaNET SECURE, Sept 2019 = 12 | echo = fb.com/buananet.pbun = 13 | echo = = 14 | echo ======================================================================================================== 15 | echo. 16 | echo Select a task: 17 | echo ============== 18 | echo. 19 | echo "01" Add Hardware Wizard / hdwwiz 20 | echo "02" Adding a new Device / devicepairingwizard 21 | echo "03" Advanced User Accounts / azman.msc 22 | echo "04" Advanced User Accounts / netplwiz 23 | echo "05" Backup and Restore / sdclt 24 | echo "06" Calculator / calc) 25 | echo "07" Certificates / certmgr.msc 26 | echo "08" Character Map / charmap 27 | echo "09" ClearType Tuner / cttune 28 | echo "10" Color Management / colorcpl 29 | echo "11" Command Prompt / cmd 30 | echo "12" Component Services / comexp.msc 31 | echo "13" Component Services / dcomcnfg 32 | echo "14" Computer Management / compmgmt.msc 33 | echo "15" Computer Management / compmgmtlauncher 34 | echo "16" Connect to a Projector / displayswitch 35 | echo "17" Control Panel / control 36 | echo "18" Credential Backup Restore / credwiz 37 | echo "19" Data Execution Prevention / systempropertiesdataexecutionprevention 38 | echo "20" Date and Time / timedate.cpl 39 | echo "21" Device Manager / hdwwiz.cpl 40 | echo "22" Diagnostics Troubleshooting / msdt 41 | echo "23" Digitizer Calibration Tool / tabcal 42 | echo "24" DirectX Diagnostic Tool / dxdiag 43 | echo "25" Disk Cleanup / cleanmgr 44 | echo "26" Disk Defragmenter / dfrgui 45 | echo "27" Disk Management / diskmgmt.msc 46 | echo "28" Display / dpiscaling 47 | echo "29" Display Color Calibration / dccw 48 | echo "30" DPAPI Key Migration Wizard / dpapimig 49 | echo "31" Driver Verifier Manager / verifier 50 | echo "32" Ease of Access Center / utilman 51 | echo "33" Event Viewer / eventvwr.msc 52 | echo "34" Fax Cover Page Editor / fxscover 53 | echo "35" Game Controllers / joy.cpl 54 | echo "36" Getting Started / irprops.cpl 55 | echo "37" IExpress Wizard / iexpress 56 | echo "38" Internet Explorer / iexplore 57 | echo "39" Internet Options / inetcpl.cpl 58 | echo "40" Language Pack Installer / lpksetup 59 | echo "41" Local Users and Groups / lusrmgr.msc 60 | echo "42" Magnifier / magnify 61 | echo "43" Malicious Software Removal Tool / mrt 62 | echo "44" Math Input Panel / mip 63 | echo "45" Microsoft Management Console / mmc 64 | echo "46" Mouse / main.cpl 65 | echo "47" NAP Client Configuration / napclcfg.msc 66 | echo "48" Narrator / narrator 67 | echo "49" Network Connections / ncpa.cpl 68 | echo "50" New Scan Wizard / wiaacmgr 69 | echo "51" Notepad / notepad 70 | echo "52" ODBC Data Source Administrator / odbcad32 71 | echo "53" On-Screen Keyboard / osk 72 | echo "54" Open Documents Folder / documents 73 | echo "55" Open Downloads Folder / downloads 74 | echo "56" Open Favorites Folder / favorites 75 | echo "57" Open Pictures Folder / pictures 76 | echo "58" Open Recent Folder / recent 77 | echo "59" Open Videos folder / videos 78 | echo "60" Paint / mspaint 79 | echo "61" Pen and Touch / tabletpc.cpl 80 | echo "62" People Near Me / collab.cpl 81 | echo "63" Performance Monitor / perfmon.msc 82 | echo "64" Performance Options / systempropertiesperformance 83 | echo "65" Phone and Modem / telephon.cpl 84 | echo "66" Phone Dialer / dialer 85 | echo "67" Power Options / powercfg.cpl 86 | echo "68" Printer User Interface / printui 87 | echo "69" Private Character Editor / eudcedit 88 | echo "70" Problem Steps Recorder / psr 89 | echo "71" Programs and Features / appwiz.cpl 90 | echo "72" Region and Language / intl.cpl 91 | echo "73" Registry Editor / regedit 92 | echo "74" Remote Access Phonebook / rasphone 93 | echo "75" Remote Desktop Connection / mstsc 94 | echo "76" Resource Monitor / resmon 95 | echo "77" SAM Lock Tool / syskey 96 | echo "78" Screen Resolution / desk.cpl 97 | echo "79" Services / services.msc 98 | echo "80" Set Program Access Computers Default / computerdefaults 99 | echo "81" Share Creation Wizard / shrpubw 100 | echo "82" Shared Folder Wizard / shrpubw 101 | echo "83" Shared Folders / fsmgmt.msc 102 | echo "84" Snipping Tool / snippingtool 103 | echo "85" Sound / mmsys.cpl 104 | echo "86" Sound recorder / soundrecorder 105 | echo "87" SQL Server Client Network Utilites / cliconfg 106 | echo "88" Sticky Notes / stikynot 107 | echo "89" Sync Center / mobsync 108 | echo "90" System Configuration / msconfig 109 | echo "91" System Configuration Editor / sysedit 110 | echo "92" System Information / msinfo32 111 | echo "93" System Properties / sysdm.cpl 112 | echo "94" System Properties (Advanced Tab) / systempropertiesadvanced 113 | echo "95" System Properties (Hardware Tab) / systempropertieshardware 114 | echo "96" System Properties(Remote Tab) / systempropertiesremote 115 | echo "97" System Properties (System Protection Tab / systempropertiesprotection 116 | echo "98" System Restore / rstrui 117 | echo "99" Task Manager / taskmgr 118 | echo "100" Task Scheduler / taskschd.msc 119 | echo "101" Taskbar and Start Menu / control.exe /name Microsoft.TaskbarandStartMenu 120 | echo "102" Troubleshooting / control.exe /name Microsoft.Troubleshooting 121 | echo "103" Trusted Platform Module (TPM) / tpm.msc 122 | echo "104" User Account Control Settings / useraccountcontrolsettings 123 | echo "105" User Accounts / control.exe /name Microsoft.UserAccounts 124 | echo "106" Utility Manager / utilman 125 | echo "107" Version Reporter Applet / winver 126 | echo "108" Volume Mixer / sndvol 127 | echo "109" Windows Action Center / wscui.cpl 128 | echo "110" Windows Activation Client / slui 129 | echo "111" Windows Anytime Upgrade / WindowsAnytimeUpgradeui 130 | echo "112" Windows Anytime Upgrade Results / windowsanytimeupgraderesults 131 | echo "113" Windows Disc Image Burning Tool / isoburn 132 | echo "114" Windows DVD Maker / dvdmaker 133 | echo "115" Windows Easy Transfer / migwiz 134 | echo "116" Windows Explorer / explorer 135 | echo "117" Windows Fax and Scan / wfs 136 | echo "118" Windows Features / optionalfeatures 137 | echo "119" Windows Firewall / firewall.cpl 138 | echo "120" Windows Journal / journal 139 | echo "121" Windows Media Player / wmplayer 140 | echo "122" Windows Memory Diagnostic Scheduler / mdsched 141 | echo "123" Windows Mobility Center / mblctr 142 | echo "124" Windows PowerShell / powershell 143 | echo "125" Windows PowerShell ISE / powershell_ise 144 | echo "126" Windows Remote Assistance / msra 145 | echo "127" Windows Repair Disc / recdisc 146 | echo "128" Windows Script Host / wscript 147 | echo "129" Windows Update / wuapp 148 | echo "130" Windows Update Standalone Installer / wusa 149 | echo "131" WMI Management / wmimgmt.msc 150 | echo "132" WordPad / write 151 | echo "133" XPS Viewer / xpsrchvw 152 | echo. 153 | echo "0" Exit This Program 154 | echo. 155 | set /p run-cmd=Type option: 156 | if "%run-cmd%"=="01" hdwwiz 157 | if "%run-cmd%"=="02" devicepairingwizard 158 | if "%run-cmd%"=="03" azman.msc 159 | if "%run-cmd%"=="04" netplwiz 160 | if "%run-cmd%"=="05" sdclt 161 | if "%run-cmd%"=="06" calc 162 | if "%run-cmd%"=="07" certmgr.msc 163 | if "%run-cmd%"=="08" charmap 164 | if "%run-cmd%"=="09" cttune 165 | if "%run-cmd%"=="10" colorcpl 166 | if "%run-cmd%"=="11" cmd 167 | if "%run-cmd%"=="12" comexp.msc 168 | if "%run-cmd%"=="13" dcomcnfg 169 | if "%run-cmd%"=="14" compmgmt.msc 170 | if "%run-cmd%"=="15" compmgmtlauncher 171 | if "%run-cmd%"=="16" displayswitch 172 | if "%run-cmd%"=="17" control 173 | if "%run-cmd%"=="18" credwiz 174 | if "%run-cmd%"=="19" systempropertiesdataexecutionprevention 175 | if "%run-cmd%"=="20" timedate.cpl 176 | if "%run-cmd%"=="21" hdwwiz.cpl 177 | if "%run-cmd%"=="22" msdt 178 | if "%run-cmd%"=="23" tabcal 179 | if "%run-cmd%"=="24" dxdiag 180 | if "%run-cmd%"=="25" cleanmgr 181 | if "%run-cmd%"=="26" dfrgui 182 | if "%run-cmd%"=="27" diskmgmt.msc 183 | if "%run-cmd%"=="28" dpiscaling 184 | if "%run-cmd%"=="29" dccw 185 | if "%run-cmd%"=="30" dpapimig 186 | if "%run-cmd%"=="31" verifier 187 | if "%run-cmd%"=="32" utilman 188 | if "%run-cmd%"=="33" eventvwr.msc 189 | if "%run-cmd%"=="34" fxscover 190 | if "%run-cmd%"=="35" joy.cpl 191 | if "%run-cmd%"=="36" irprops.cpl 192 | if "%run-cmd%"=="37" iexpress 193 | if "%run-cmd%"=="38" iexplore 194 | if "%run-cmd%"=="39" inetcpl.cpl 195 | if "%run-cmd%"=="40" lpksetup 196 | if "%run-cmd%"=="41" lusrmgr.msc 197 | if "%run-cmd%"=="42" magnify 198 | if "%run-cmd%"=="43" mrt 199 | if "%run-cmd%"=="44" mip 200 | if "%run-cmd%"=="45" mmc 201 | if "%run-cmd%"=="46" main.cpl 202 | if "%run-cmd%"=="47" napclcfg.msc 203 | if "%run-cmd%"=="48" narrator 204 | if "%run-cmd%"=="49" ncpa.cpl 205 | if "%run-cmd%"=="50" wiaacmgr 206 | if "%run-cmd%"=="51" notepad 207 | if "%run-cmd%"=="52" odbcad32 208 | if "%run-cmd%"=="53" osk 209 | if "%run-cmd%"=="54" documents 210 | if "%run-cmd%"=="55" downloads 211 | if "%run-cmd%"=="56" favorites 212 | if "%run-cmd%"=="57" pictures 213 | if "%run-cmd%"=="58" recent 214 | if "%run-cmd%"=="59" videos 215 | if "%run-cmd%"=="60" mspaint 216 | if "%run-cmd%"=="61" tabletpc.cpl 217 | if "%run-cmd%"=="62" collab.cpl 218 | if "%run-cmd%"=="63" perfmon.msc 219 | if "%run-cmd%"=="64" systempropertiesperformance 220 | if "%run-cmd%"=="65" telephon.cpl 221 | if "%run-cmd%"=="66" dialer 222 | if "%run-cmd%"=="67" powercfg.cpl 223 | if "%run-cmd%"=="68" printui 224 | if "%run-cmd%"=="69" eudcedit 225 | if "%run-cmd%"=="70" psr 226 | if "%run-cmd%"=="71" appwiz.cpl 227 | if "%run-cmd%"=="72" intl.cpl 228 | if "%run-cmd%"=="73" regedit 229 | if "%run-cmd%"=="74" rasphone 230 | if "%run-cmd%"=="75" mstsc 231 | if "%run-cmd%"=="76" resmon 232 | if "%run-cmd%"=="77" syskey 233 | if "%run-cmd%"=="78" desk.cpl 234 | if "%run-cmd%"=="79" services.msc 235 | if "%run-cmd%"=="80" computerdefaults 236 | if "%run-cmd%"=="81" shrpubw 237 | if "%run-cmd%"=="82" shrpubw 238 | if "%run-cmd%"=="83" fsmgmt.msc 239 | if "%run-cmd%"=="84" snippingtool 240 | if "%run-cmd%"=="85" mmsys.cpl 241 | if "%run-cmd%"=="86" soundrecorder 242 | if "%run-cmd%"=="87" cliconfg 243 | if "%run-cmd%"=="88" stikynot 244 | if "%run-cmd%"=="89" mobsync 245 | if "%run-cmd%"=="90" msconfig 246 | if "%run-cmd%"=="91" sysedit 247 | if "%run-cmd%"=="92" msinfo32 248 | if "%run-cmd%"=="93" sysdm.cpl 249 | if "%run-cmd%"=="94" systempropertiesadvanced 250 | if "%run-cmd%"=="95" systempropertieshardware 251 | if "%run-cmd%"=="96" systempropertiesremote 252 | if "%run-cmd%"=="97" systempropertiesprotection 253 | if "%run-cmd%"=="98" rstrui 254 | if "%run-cmd%"=="99" taskmgr 255 | if "%run-cmd%"=="100" taskschd.msc 256 | if "%run-cmd%"=="101" control.exe /name Microsoft.TaskbarandStartMenu 257 | if "%run-cmd%"=="102" control.exe /name Microsoft.Troubleshooting 258 | if "%run-cmd%"=="103" tpm.msc 259 | if "%run-cmd%"=="104" useraccountcontrolsettings 260 | if "%run-cmd%"=="105" control.exe /name Microsoft.UserAccounts 261 | if "%run-cmd%"=="106" utilman 262 | if "%run-cmd%"=="107" winver 263 | if "%run-cmd%"=="108" sndvol 264 | if "%run-cmd%"=="109" wscui.cpl 265 | if "%run-cmd%"=="110" slui 266 | if "%run-cmd%"=="111" WindowsAnytimeUpgradeui 267 | if "%run-cmd%"=="112" windowsanytimeupgraderesults 268 | if "%run-cmd%"=="113" isoburn 269 | if "%run-cmd%"=="114" dvdmaker 270 | if "%run-cmd%"=="115" migwiz 271 | if "%run-cmd%"=="116" explorer 272 | if "%run-cmd%"=="117" wfs 273 | if "%run-cmd%"=="118" optionalfeatures 274 | if "%run-cmd%"=="119" firewall.cpl 275 | if "%run-cmd%"=="120" journal 276 | if "%run-cmd%"=="121" wmplayer 277 | if "%run-cmd%"=="122" mdsched 278 | if "%run-cmd%"=="123" mblctr 279 | if "%run-cmd%"=="124" powershell 280 | if "%run-cmd%"=="125" powershell_ise 281 | if "%run-cmd%"=="126" msra 282 | if "%run-cmd%"=="127" recdisc 283 | if "%run-cmd%"=="128" wscript 284 | if "%run-cmd%"=="129" wuapp 285 | if "%run-cmd%"=="130" wusa 286 | if "%run-cmd%"=="131" wmimgmt.msc 287 | if "%run-cmd%"=="132" write 288 | if "%run-cmd%"=="133" xpsrchvwr 289 | if "%run-cmd%"=="0" exit 290 | goto menu 291 | Pause 292 | goto menu 293 | --------------------------------------------------------------------------------