Can't uninstall (or update) Internet Explorer 11 Preview Version to Release Version

70

I ran into this problem today. The user account didn't have administrative privileges on the machine.

Solution: Log on to the machine using an account with administrative rights. Then you'll be able to uninstall (rollback) Internet Explorer via Programs and Features > Installed Updates.

Share:
70

Related videos on Youtube

Matias Fernandez
Author by

Matias Fernandez

Updated on September 18, 2022

Comments

  • Matias Fernandez
    Matias Fernandez over 1 year

    I'm working on a NextJS project using Flow and I'm trying to import Firebase latest version 9.1.3, but when I try to use it, Flow complains that cannot find the module.

    // Error: Cannot resolve module `firebase/app`.Flow(cannot-resolve-module)
    import { initializeApp, getApps } from 'firebase/app';
    import { getAnalytics } from 'firebase/analytics';
    

    I only found an old solution on flow-typed for Firebase 5.x.x, but API has changed since then, and manually writing a Library Definition is super time consuming.

    I noticed that Firebase uses Typescript, is there a way I can import/convert to use Flow?

    • magicandre1981
      magicandre1981 over 10 years
      copy the folder C:\Windows\logs\CBS to your desktop, zip it and upload the zip (skydrive, dropbox) and post a link here.
  • C-Blu
    C-Blu about 10 years
    Sometimes the problems just resolve in their own way. I don't remember how and when it was resolved. But after trying all the solutions in the internet, one day (I guess after some Windows Update) it disappeared. Well if there'll be some problems with Internet Explorer 12, I'll try your method.
  • Matias Fernandez
    Matias Fernandez over 2 years
    Thanks, that's exactly what I was looking for. I started creating my own, but then I faced a similar problem with more libraries I wanted to use. I ended up dropping Flow in favor of TypeScript.