Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
485 views
in Technique[技术] by (71.8m points)

autoit - How to launch an Outlook template file?

How can I launch an "Outlook File Template" -file (.oft) using AutoIt?

I saved the .oft file to my downloads folder and want AutoIt to open it like as if double-clicking it in Windows Explorer. FileOpen() did not work; I want the .oft file to be opened in Microsoft Outlook in full screen.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I want the .oft file to be opened in Microsoft Outlook in full screen.

As per Documentation - Function Reference - ShellExecute():

Runs an external program using the ShellExecute API.

Example:

#include <AutoItConstants.au3>

ShellExecute("C:UsersusernameDownloadsfilename.oft", "", "", $SHEX_OPEN, @SW_MAXIMIZE)

Or simply ShellExecute("C:UsersusernameDownloadsfilename.oft").


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...