Sam Posted October 27, 2020 Share Posted October 27, 2020 Hi, I've spent some time looking in this forum and searching the web to find out what to code in my AutoIt script to start the Windows 10 OneNote app. I can start OneNote 2016 from the script, but lately it is having login problems. Whereas the OneNote app works fine. Can someone tell me what to code for ShellExecute or Run? Thanks! Link to comment Share on other sites More sharing options...
caramen Posted October 27, 2020 Share Posted October 27, 2020 (edited) You mean that ? Example() Func Example() ShellExecute("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\OneNote 2016") EndFunc ;==>Example If you need to click on the Sign In button then you will need UIAutomation. You could check my signature. Also, you could if I'm not false just send enter to Sign In. Edited October 27, 2020 by caramen My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
seadoggie01 Posted October 27, 2020 Share Posted October 27, 2020 Not sure from your question if you're trying to start OneNote 2016 or the OneNote app. If you're looking for the OneNote app then... It's a UWP app (might stand for Unholy Wreck of a Program). You can't just find the executable file and run it. Instead, you can: Associate the "onenote:" protocol handler with OneNote (not 2016)... (I did it by using the below once and selecting "Always run with this program") The colon is important, otherwise it will find onenote.exe from your PATH. Use it like: ShellExecute("onenote:") ; Or Run(@ComSpec & " /c start onenote:") Use this mess, but it will only ever bring up OneNote (not 2016) as far as I can tell: ShellExecute("explorer.exe", "shell:AppsFolder\Microsoft.Office.OneNote_8wekyb3d8bbwe!microsoft.onenoteim") ; Or Run("explorer.exe shell:AppsFolder\Microsoft.Office.OneNote_8wekyb3d8bbwe!microsoft.onenoteim") All my code provided is Public Domain... but it may not work. Use it, change it, break it, whatever you want. Spoiler My Humble Contributions:Personal Function Documentation - A personal HelpFile for your functionsAcro.au3 UDF - Automating Acrobat ProToDo Finder - Find #ToDo: lines in your scriptsUI-SimpleWrappers UDF - Use UI Automation more Simply-erKeePass UDF - Automate KeePass, a password managerInputBoxes - Simple Input boxes for various variable types Link to comment Share on other sites More sharing options...
Sam Posted October 28, 2020 Author Share Posted October 28, 2020 Sorry for the confusion. I need to start the OneNote app, not OneNote 2016. Thanks for the code for the OneNote app! Link to comment Share on other sites More sharing options...
GeYang Posted March 2, 2021 Share Posted March 2, 2021 I want to help you , But it's hard for me. OneNote works fine, which has been my major note taking app for years. I prefer handwritten notes to typing, so I connected my XP-Pen digital tablet to my laptop to use with OneNote. seadoggie01 1 Link to comment Share on other sites More sharing options...
Somerset Posted March 2, 2021 Share Posted March 2, 2021 1 hour ago, GeYang said: I want to help you , But it's hard for me. OneNote works fine, which has been my major note taking app for years. I prefer handwritten notes to typing, so I connected my XP-Pen digital tablet to my laptop to use with OneNote. You trying to help, or be a spam ad message? Link to comment Share on other sites More sharing options...
water Posted March 2, 2021 Share Posted March 2, 2021 Did you report the post? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
Somerset Posted March 2, 2021 Share Posted March 2, 2021 No, just a very confusing response from an unknown person. The web link is a red flag in my opinion, since they are new. Was just giving them the benefit of the doubt. 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