pcjunki 3 Posted November 20, 2015 i'm having issue calling an exe with some parameters.I've downloaded winlogonview from www.nirsoft.net/utils/windows_log_on_times_view.htmlthe parameters i'm passing to winlogonview.exe is /source 2 /server computer125my autoit script is$pc = 'computer125' ShellExecute("\\server487\share\winlogonview\winlogonview.exe /source 2 /server " & $pc) any clues or ideas? Share this post Link to post Share on other sites
Jos 2,164 Posted November 20, 2015 The parameters should go into the 2nd parameter of ShellExecute(). Check the helpfile for details.Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
pcjunki 3 Posted November 20, 2015 gotcha, changed it and it worked, thanks! Share this post Link to post Share on other sites