TypeScript 0.9.1.1.exe crashes my visual studio 2012

I installed TypeScriptSetup.0.9.1.1.exe today, and after that I could not start my visual studio. At startup, it gives the following error.

"Exception was thrown by target call"

that then the visual studio does not start.

As soon as this error occurs, I have to restart the computer to start the installation in order to remove TypeScript.

+4
source share
2 answers

Forwarding my answer from here :

I ran into this problem. For me, this is because my Windows PATH variable has moved more than 2047 characters. This also violated the% windir% path extension, so I could not change my PATH variable by going to Computer → Properties → Advanced → Environment Variables. The solution was to change my system PATH variable by going to C: \ Windows \ system32 \ and running systempropertiesadvanced.exe, copying the System PATH variable, pasting it into your text editor of your choice, divide it by a semicolon, sort alphabetically delete duplicates and other unnecessary paths until I get below 2047 characters, return all lines with a semicolon and paste it back into your System PATH variable. For more information, see.

+1
source

Make sure you delete the required websites. OR updated web sites up to 3.x (which removed typescript support). There are known memory issues before this version.

+1
source

Source: https://habr.com/ru/post/1500507/


All Articles