Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error code 2753 during install

Today I needed to re-install Microsoft Pex on my develop machine.

I'm using Windows 7, 32 bit, Visual Studio 2010, .NET 2/3.5

I launched the usual installer, but it stopped with a mysterious 2753 error.

How can I proceed with the installation?

like image 257
alcor Avatar asked Oct 08 '13 14:10

alcor


4 Answers

The solution is:

  • From the command line launch "regsvr32 vbscript.dll".
  • After a few moments the message "DllRegisterServer in vbscript.dll succeeded." will appear

I hope this could be a solution for other people.

like image 200
alcor Avatar answered Oct 19 '22 23:10

alcor


Verify if OS version is compatible with SDK version.

Trying to install Windows SDK 8, I had the same error code. The problem occurred because my OS version is 8.1.

like image 23
joaolsouzajr Avatar answered Oct 19 '22 23:10

joaolsouzajr


The documentation for error 2753 is fairly explicit:

"The File '[2]' is not marked for installation."

And typically you get it when you try to run a custom action based on a executable file that you're not installing or is absent for some other reason. If the file is in a feature or component that is not being installed and you call it as a CA you get this error. If the version of the file on disk is higher than yours in the MSI then yours won't be installed so you'll get this error because the exe you explicitly wanted to run as a CA didn't get installed.

like image 32
PhilDW Avatar answered Oct 19 '22 21:10

PhilDW


I had a similar 2753 error when trying to install Windows SDK for Windows 8 on Windows 10.

Then I see from the above link this:

Supported operating systems

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

So I decided not to hack around and use Windows SDK for Window 10.

The error is gone.

like image 25
smwikipedia Avatar answered Oct 19 '22 22:10

smwikipedia