title | description | ms.date | ms.topic | ms.localizationpriority |
---|---|---|---|---|
Debug your event-based or spam-reporting Outlook add-in |
Learn how to debug your Outlook add-in that implements event-based activation or integrated spam reporting. |
10/24/2024 |
how-to |
medium |
This article discusses the key debugging stages to enable and set breakpoints in your code as you implement event-based activation or integrated spam reporting in your add-in. Before you proceed, we recommend reviewing the troubleshooting guide for additional steps on how to resolve development errors.
To begin debugging, select the tab for your applicable client.
Use your preferred browser's developer tools to debug your event-based add-in in Outlook on the web. For more information, see Debug add-ins in Office on the web.
To debug your add-in in new Outlook on Windows desktop client (preview), you must run the following command to open Microsoft Edge DevTools.
olk.exe --devtools
For more information, see the "Debug your add-in" section of Develop Outlook add-ins for the new Outlook on Windows.
If you used the Yeoman generator for Office Add-ins to create your add-in project (for example, by completing an event-based activation walkthrough), follow the Created with Yeoman generator option throughout this article. Otherwise, follow the Other steps.
-
Get your add-in's ID from the manifest.
- Add-in only manifest: Use the value of the <Id> element child of the root <OfficeApp> element.
- Unified manifest for Microsoft 365: Use the value of the "id" property of the root anonymous
{ ... }
object.
-
In the registry, mark your add-in for debugging.
-
Created with Yeoman generator: In a command line window, navigate to the root of your add-in folder then run the following command.
npm start
In addition to building the code and starting the local server, this command sets the data of the
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\WEF\Developer\[Add-in ID]\UseDirectDebugger
registry DWORD value for this add-in to1
.[Add-in ID]
is your add-in's ID from the manifest. -
Other: In the
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\WEF\Developer\[Add-in ID]\UseDirectDebugger
registry DWORD value, where[Add-in ID]
is your add-in's ID from the manifest, set its data to1
.[!includeDeveloper registry key]
-
-
In the registry key
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Wef\Developer\[Add-in ID]
, where[Add-in ID]
is your add-in's ID from the manifest, create a newDWORD
value with the following configuration.- Value name:
DebuggerPort
- Value data (hexadecimal):
00002407
This sets the debugger port to
9223
. - Value name:
-
Start Outlook or restart it if it's already open.
-
Perform the action to initiate the event you're developing for, such as creating a new message to initiate the
OnNewMessageCompose
event or reporting spam messages. The Debug Event-based handler dialog should appear. Do not interact with the dialog yet.
You can debug your add-in using the Microsoft Edge Inspect tool or Visual Studio Code.
-
Open Microsoft Edge and go to edge://inspect/#devices.
-
In the Remote Target section, look for your add-in using its ID from the manifest. Then, select Inspect.
The DevTools window appears.
[!NOTE] It may take some time for your add-in to appear in the Remote Target section. You may need to refresh the page for the add-in to appear.
-
In the Sources tab, go to file:// > Users/[User]/AppData/Microsoft/Office/16.0/Wef/{[Outlook profile GUID]}/[Outlook mail account encoding]/Javascript/[Add-in ID]_[Add-in Version]_[locale] > bundle.js.
-
In the bundle.js file, place breakpoints where you want the debugger to stop.
To debug your add-in in Visual Studio Code, you must have at least version 1.56.1 installed.
Configure the debugger in Visual Studio Code. Follow the steps applicable to your add-in project.
-
In the command line, run the following to open your add-in project in Visual Studio Code.
code .
-
In Visual Studio Code, open the ./.vscode/launch.json file and add the following excerpt to your list of configurations. Save your changes.
{ "name": "Direct Debugging", "type": "node", "request": "attach", "port": 9223, "timeout": 600000, "trace": true }
-
Create a new folder called Debugging (perhaps in your Desktop folder).
-
Open Visual Studio Code.
-
Go to File > Open Folder, navigate to the folder you just created, then choose Select Folder.
-
On the Activity Bar, select Run and Debug (Ctrl+Shift+D).
-
Select the create a launch.json file link.
-
In the Select Environment dropdown, select Edge: Launch to create a launch.json file.
-
Add the following excerpt to your list of configurations. Save your changes.
{ "name": "Direct Debugging", "type": "node", "request": "attach", "port": 9223, "timeout": 600000, "trace": true }
The bundle.js file of an add-in contains the JavaScript code of your add-in. It's created when classic Outlook on Windows is opened. When Outlook starts, the bundle.js file of each installed add-in is cached in the Wef folder of your machine.
-
To find the add-in's bundle.js file, navigate to the following folder in File Explorer. Replace text enclosed in
[]
with your applicable Outlook and add-in information.%LOCALAPPDATA%\Microsoft\Office\16.0\Wef\{[Outlook profile GUID]}\[Outlook mail account encoding]\Javascript\[Add-in ID]_[Add-in Version]_[locale]
[!INCLUDE outlook-bundle-js]
-
Open bundle.js in Visual Studio Code.
-
Place breakpoints in bundle.js where you want the debugger to stop.
-
In the DEBUG dropdown, select Direct Debugging, then select the Start Debugging icon.
After confirming that the debugger is attached, return to Outlook. In the Debug Event-based handler dialog, choose OK .
You can now hit your breakpoints to debug your event-based activation or spam-reporting code.
To stop debugging the rest of the current Outlook on Windows session, in the Debug Event-based handler dialog, choose Cancel. To re-enable debugging, restart Outlook.
To prevent the Debug Event-based handler dialog from popping up and stop debugging for subsequent Outlook sessions, delete the associated registry key, HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Wef\Developer\[Add-in ID]\UseDirectDebugger
, or set its value to 0
.
[!includeInstructions to stop web server and uninstall dev add-in]
Event-based add-ins that run in Outlook on Mac use the browser runtime. Because of this, you can debug your add-in using Safari Web Inspector.
- To use the Safari Web Inspector in Outlook, follow the steps in Debugging with Safari Web Inspector on a Mac.
- Open Outlook, then sideload your add-in.
- Perform an action that will initiate the event your add-in handles. For example, create a new message to initiate the
OnNewMessageCompose
event. This opens an empty Developer Window. The name of your add-in appears in the title bar of the window. - Right-click (or select and hold) anywhere in the Developer Window, then select Inspect Element. This opens the Inspector, where you can set breakpoints and debug your add-in.