Hello Everybody,
i am using a exe file to push some software to clients..
now i am using a bat file with some parameters like:
psexec.exe \\hostname -u etrust - p etrust01 \\hostname\c$\notes.exe
My question: its possible to run this exe with my parameters without uing a bat file or dos?
If yes it would be very nice..
Thnanks a lot for a answer 
Im trying like this:
void MainWindow::startpsexec()
{
list << "\\\\stchps426 " << "-u " << "etrust " << "-p " << "etrust01 " << "-i " << "\\\\stchps426\\c$\\notes.exe";
process.execute("psexec.exe", list);
void MainWindow::startpsexec()
{
QStringList list;
list << "\\\\stchps426 " << "-u " << "etrust " << "-p " << "etrust01 " << "-i " << "\\\\stchps426\\c$\\notes.exe";
QProcess process;
process.execute("psexec.exe", list);
To copy to clipboard, switch view to plain text mode
but is not working
Bookmarks