03-03-2010 10:36 AM - edited 03-03-2010 10:36 AM
Hi, I have an application that calls some .NET system components. If I build an exe file the application it runs good in my development machine, but if I try to run it in another PC of the network the software takes a lot of time to open (2-3 minutes), if I disconnect that PC from the network and open the software it opens immediately. Ok I thought that my app had some problem with paths or linked code, so I tried the .NET calculator example that labview include and created an exe file of that VI. The same problem was detected!! Can someone help me with this? I have 2 days working on a solution and nothing works :s
Thanks
Cesar Rico
Certified Labview Architect
03-03-2010 11:06 PM
Hi,
Is the behaviour is same on other machines also where LV is not installed?
Guru
03-04-2010 02:21 AM
03-04-2010 02:25 AM
03-08-2010 01:28 PM
03-11-2010 05:46 PM
OK someone from NI Mexico found the solution to this, follow this link http://support.microsoft.com/kb/936707 to Microsoft site where the problem is explained.
Just add this lines to the app.exe.config file.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>
03-12-2010 05:59 AM