Nikolas92 Posted November 29, 2016 Share Posted November 29, 2016 How to write output of this command line tool (http://silvercoders.com/en/products/doctotext/) to text file in autoit? This works in batch file: doctotext.exe --doc "%~1">>"%userprofile%\desktop\Text.txt" but i dont know what would be equivalent of this in autoit. anyone can help me? Link to comment Share on other sites More sharing options...
InunoTaishou Posted November 29, 2016 Share Posted November 29, 2016 ShellExecute("doctotext.exe", "--doc %~1 >> " & @UserProfileDir & "\desktop\Text.txt", Path to doctotext.exe) Should do it Nikolas92 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now