Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot uninstall add-in #1167

Open
rexmortus opened this issue Jul 8, 2024 · 3 comments
Open

Cannot uninstall add-in #1167

rexmortus opened this issue Jul 8, 2024 · 3 comments

Comments

@rexmortus
Copy link

Hi there,

Unfortunately, for whatever reason, this plugin does not work for me and now I can't send emails at all.

I also cannot remove the add-in:

image

You will note that I only have the option to "view details", not "Remove", like with many other add-ins.

Installing this add-in has completely bricked my outlook. Is there some reason why this particular add-in cannot be easily uninstalled? Is there another method for uninstalling this add-in?

Thanks,
Alec

@rexmortus
Copy link
Author

This official Microsoft documentation says that I should be able to remove the add-in by going to the custom add-ins section and clicking remove:

image

Even stranger, this add-in doesn't appear here at all:

image

Any advice would be welcomed.

@eeyrsja
Copy link

eeyrsja commented Oct 9, 2024

I have the same issue. @rexmortus - did you manage to get your email account working again?

@eeyrsja
Copy link

eeyrsja commented Oct 9, 2024

I found a solution to removing it!

In powershell:

Step 1: Install the Exchange Online Management Module

To remove the add-in, first, ensure you have the Exchange Online Management Module installed.

  1. Open PowerShell as an Administrator and run the following command to install the module:
    Install-Module -Name ExchangeOnlineManagement -Force
  2. Once installed, import the module with:
    Import-Module ExchangeOnlineManagement
  3. Connect to Exchange Online by running:
    Connect-ExchangeOnline -UserPrincipalName <your_email_address>

Step 2: List Installed Add-Ins

To identify the MarkOut add-in, list all the add-ins installed for your account:

Get-App | Format-Table DisplayName, AppId

This command will return a list of all installed add-ins with their respective DisplayName and AppId. Note down the AppId of MarkOut.

Step 3: Remove the Add-In

Once you have identified the AppId of MarkOut, use the following command to remove it:

Remove-App -Identity <AppId>

Replace <AppId> with the actual AppId. You will be prompted to confirm the removal; type Y to proceed.

Step 4: Verify Removal

To confirm MarkOut has been successfully removed, list the add-ins again using:

Get-App | Format-Table DisplayName

MarkOut add-in should no longer appear in the list.

Step 5: Wait

It can take up to 4 hours (in my experience) for the add-on to actually be removed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants