Jump to content

Uruchamianie programu plikiem wsadowym


Recommended Posts

Mam pliczek np. test.exe który się znajduje np. E:\testy tak że całość to E:\testy\test.exe

I ten pliczek ma rozpocząć działanie w E:\testy\xxx

Dla ułatwienia screen właściwości podobnego skrótu w załączniku.

post-38092-1320595389_thumb.jpg

Jak to wklepać do cmd?

post-38092-1320595413_thumb.jpg

Link to comment
Share on other sites

Spróbuj wykorzystać funkcję WinAPI, czyli:

ShellExecute(NULL, 'open', 'E:\\testy\\test.exe', nil, 'E:\\testy\\xxx', SW_NORMAL);

Żeby zadziałało musisz jeszcze na początku dołączyć:

#include <Shellapi.h>

Link to comment
Share on other sites

:D Dzięki, i kolejne piwo wiszę komuś ;).

     ShellExecute(NULL,
                     L"open",
                     L"thief2.exe",
                     NULL,
                     L"t2x",
                     0);

Tak dokładnie wpisać musiałem, a i też do Linkera dodać shell32.lib

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...