.Exe fájl futtatása a parancssorból

Tartalomjegyzék:

.Exe fájl futtatása a parancssorból
.Exe fájl futtatása a parancssorból

Videó: .Exe fájl futtatása a parancssorból

Videó: .Exe fájl futtatása a parancssorból
Videó: TINY HOUSE in the Woods: TOUR of a TINY CONTAINER HOME in ONTARIO, Canada - YouTube 2024, Lehet
Anonim
Legtöbbször a programaink ugyanúgy működnek, mint ahogyan nekünk szükségük van, de egyszer csak egy időben van olyan, ami kevésbé együttműködő, és olyan módon keresi a módját, hogy megszüntesse a "hozzáállás" problémáját. A mai SuperUser Q & A hozzászólás néhány nagyszerű javaslatot tartalmaz, hogy segítsen egy frusztrált olvasónak megkapni az általa szükséges eredményeket.
Legtöbbször a programaink ugyanúgy működnek, mint ahogyan nekünk szükségük van, de egyszer csak egy időben van olyan, ami kevésbé együttműködő, és olyan módon keresi a módját, hogy megszüntesse a "hozzáállás" problémáját. A mai SuperUser Q & A hozzászólás néhány nagyszerű javaslatot tartalmaz, hogy segítsen egy frusztrált olvasónak megkapni az általa szükséges eredményeket.

A mai Kérdések és válaszok munkamenetét a SuperUser - a Stack Exchange, a Q & A weboldalak közösség által irányított csoportosulásának részlegével - köszönheti.

A kérdés

A SuperUser olvasó user418119 azt szeretné megtalálni a módját, hogy a programablakot nyitva tartsa elég hosszú ideig az eredmények megjelenítéséhez:

I am trying to run an iteration program. Whenever I click on it, it opens then terminates. When I open the input text file using the program, the iteration completes, then the window instantly closes. How can I:

1. Run it so that the window does not close (and I can see my results)

Or

2. Manage to do the same thing via Command Prompt

I am not super familiar with doing stuff via Command Prompt.

Van mód arra, hogy a user418119 programablakja nyitva maradjon elég hosszú ideig ahhoz, hogy megnézze az eredményeket?

A válasz

A SuperUser-munkatársak, a mg30rg, a misha256 és a Ranayna, válaszolnak nekünk. Először, mg30rg:

You can create a batch file (.bat) containing two lines. The first one is your application’s command line and the second one is “PAUSE”. It will keep the Command Prompt window open until you press a key or close it using the “X” button. The advantage of this solution is that you can have a separate shortcut to the.bat file so that you can either start your program with or without pausing at the finish.

Ezt követte a misha256 válasz:

This will leave the Command Prompt window open even after MyApp.exe terminates:

cmd /K “C:SomeFolderMyApp.exe”

You can create a shortcut with the above. This solution works with all console programs and does not require you to go through Command Prompt every time or modify the original.exe file (which you usually cannot).

Incidentally, the /K switch has been around since NT days.

És végső válaszunk Ranayna-tól:

Another way which is quite useful if the path to the.exe file is a complicated one: Open a Command Prompt window and just drag the.exe file into the window. The full path to the.exe file will be pasted into the Command Prompt window and you just have to press Enter. There is no need to cd into any paths.

Van valami a magyarázathoz? Hangzik ki a megjegyzésekben. Szeretne többet válaszolni a többi technikus-tudós Stack Exchange felhasználóiról? Nézze meg a teljes vitafonalat itt.

Ajánlott: