Problem installing VB.net

When creating a customization for a VB.net application, I get the following warning: "Warning 1" msado15.dll "should be excluded because its original file" C: \ Program Files \ Common Files \ System \ ado \ msado15.dll "is protected Windows system files.

Please suggest me how to deal with this type of problem.

Thank,

+2


source to share


2 answers


This means that the file is usually found in the operating system, so it does not need to be installed. If you delete the original protected user file in your remote application, it can cause problems on the user computer.



0


source


This is a classic case of IDE components not talking to each other.

  • One component says "you are linking msado15.dll

    in your code, so I have to include it in the project".
  • The unrelated component says " msado15.dll

    is on my list of protected DLLs, so I must warn you not to include it."
  • However, no component thinks like a human and says, "Stand up, this DLL is part of the framework, so I have to quietly remove it from the installer."


The last part is up to you.

+1


source







All Articles