olympus Posted February 9, 2012 Posted February 9, 2012 How do I pause a command prompt window that is generated using @ComSpec after it has finished executing the DOS command? For example: Run(@ComSpec " /c regedit.exe") After opening the RegEdit window, the black CMD window will automatically close. How do I make it pause? Thank you!
Xenobiologist Posted February 9, 2012 Posted February 9, 2012 Run(@ComSpec & " /k regedit.exe") /k = keep /c = close Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
water Posted February 9, 2012 Posted February 9, 2012 Append a "Pause" statement. DOS allows to concatenate commands. I'm not 100% sure but tryRun(@ComSpec " /c regedit.exe & Pause") My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
olympus Posted February 9, 2012 Author Posted February 9, 2012 Run(@ComSpec & " /k regedit.exe") /k = keep /c = close Append a "Pause" statement. DOS allows to concatenate commands. I'm not 100% sure but tryRun(@ComSpec " /c regedit.exe & Pause") Thank you! I'll try both suggestion. Didn't know the /c parameter meant 'close' haha.
olympus Posted February 9, 2012 Author Posted February 9, 2012 Both method works! The difference: With the /k parameter, the window is closed by pressing by 'X' button. With the 'Pause' added, any key can be pressed to close the window. Thank you Xeno and water!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now