Skip to main content

Posts

Code of start in CMD

 Code of START in CMD C:\Users\somet>start /? Starts a separate window to run a specified program or command. START ["title"] [/D path] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]       [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]       [/NODE <NUMA node>] [/AFFINITY <hex affinity mask>] [/WAIT] [/B]       [command/program] [parameters]     "title"     Title to display in the window title bar.     path        Starting directory.     B           Start the application without creating a new window. The                 application has ^C handling ignored. Unless the application                 enables ^C processing, ^Break is the only way to interrupt                 the application.   ...