Why does Install/Uninstall of Visual Studio make program workShould I add the Visual Studio .suo and .user files to source control?Using Git with Visual Studio.gitignore for Visual Studio Projects and SolutionsCannot import the keyfile 'blah.pfx' - error 'The keyfile may be password protected'Difference between Build Solution, Rebuild Solution, and Clean Solution in Visual Studio?Can you force Visual Studio to always run as an Administrator in Windows 8?Visual Studio debugging/loading very slowReSharper “Cannot resolve symbol” even when project buildsPackages not loading after installing visual studio 2015 RTMMultiple Errors Installing Visual Studio 2015 Community Edition

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

"You are your self first supporter", a more proper way to say it

TGV timetables / schedules?

declaring a variable twice in IIFE

What is the offset in a seaplane's hull?

What typically incentivizes a professor to change jobs to a lower ranking university?

Japan - Plan around max visa duration

Why are only specific transaction types accepted into the mempool?

Why CLRS example on residual networks does not follows its formula?

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

Theorems that impeded progress

How to re-create Edward Weson's Pepper No. 30?

Prevent a directory in /tmp from being deleted

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?

Set-theoretical foundations of Mathematics with only bounded quantifiers

Is there a familial term for apples and pears?

If Manufacturer spice model and Datasheet give different values which should I use?

Modification to Chariots for Heavy Cavalry Analogue for 4-armed race

DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?

Example of a relative pronoun

How to make payment on the internet without leaving a money trail?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?



Why does Install/Uninstall of Visual Studio make program work


Should I add the Visual Studio .suo and .user files to source control?Using Git with Visual Studio.gitignore for Visual Studio Projects and SolutionsCannot import the keyfile 'blah.pfx' - error 'The keyfile may be password protected'Difference between Build Solution, Rebuild Solution, and Clean Solution in Visual Studio?Can you force Visual Studio to always run as an Administrator in Windows 8?Visual Studio debugging/loading very slowReSharper “Cannot resolve symbol” even when project buildsPackages not loading after installing visual studio 2015 RTMMultiple Errors Installing Visual Studio 2015 Community Edition






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-1















While attempting to deploy a program written in C# that also makes a call to a custom fortran .dll [both the .exe and the .dll were developed in Visual Studio (VS) with the Intel Visual Fortran (IVF) add-in installed], we discovered that we needed to install/uninstall Visual Studio to get it to work on our science center's computing cluster. Our center doesn't have enough VS licences to leave it installed on every cluster machine, and because of the number of machines in the cluster we need to avoid a manual install/uninstall of VS on each cluster machine.



Prior to running the C#/fortran program on just one of the cluster machines, we installed various C++ Redistributable packages and .NET frameworks on it, with the thinking that these would be needed for a C# program to call the fortran DLL successfully. Discovering that the C#/fortran program didn't work (the call from C# to fortran failed), we installed VS (but not IVF) on our test machine with only the "recommended" (default) install packages included, but the C#/fortran program still failed on the first call from C# to fortran. We then completely uninstalled Visual Studio and did a reinstall, this time specifying (customizing) that the VS install include the C++ and SQL packages...and it worked! To try and figure out which component of the Visual Studio install did the trick, we uninstalled the components shown in the list below 1-by-1 to determine which single uninstall would "break" our program. Surprisingly, the C#/fortran program continued to work even with all of the packages shown below uninstalled. The numbers all the way to the right show the order in which they were uninstalled.



To confirm these steps, we tried launching the C#/fortran program on a "fresh" (different) cluster machine that has never had VS installed, and as expected, the C#/fortran program failed (couldn't call the fortran DLL). The very next thing we did was install VS (with the C++ and SQL packages included), then immediately uninstalled VS, then launched the C#/fortran program and it worked!?



We are hopeful someone has the answer to this riddle...what is the VS install/uninstall modifying (or leaving behind) that is allowing our software to work even though VS is no longer installed on the machine? As best we could tell, there are no noticeable software installs that the VS install left behind once uninstalled.



enter image description here










share|improve this question



















  • 1





    You'd better use Intel technical support resources to learn how to assert the dependencies of such a program (or debug using tools like WinDbg). Installing/uninstalling VS components is not an efficient way.

    – Lex Li
    Mar 10 at 6:13

















-1















While attempting to deploy a program written in C# that also makes a call to a custom fortran .dll [both the .exe and the .dll were developed in Visual Studio (VS) with the Intel Visual Fortran (IVF) add-in installed], we discovered that we needed to install/uninstall Visual Studio to get it to work on our science center's computing cluster. Our center doesn't have enough VS licences to leave it installed on every cluster machine, and because of the number of machines in the cluster we need to avoid a manual install/uninstall of VS on each cluster machine.



Prior to running the C#/fortran program on just one of the cluster machines, we installed various C++ Redistributable packages and .NET frameworks on it, with the thinking that these would be needed for a C# program to call the fortran DLL successfully. Discovering that the C#/fortran program didn't work (the call from C# to fortran failed), we installed VS (but not IVF) on our test machine with only the "recommended" (default) install packages included, but the C#/fortran program still failed on the first call from C# to fortran. We then completely uninstalled Visual Studio and did a reinstall, this time specifying (customizing) that the VS install include the C++ and SQL packages...and it worked! To try and figure out which component of the Visual Studio install did the trick, we uninstalled the components shown in the list below 1-by-1 to determine which single uninstall would "break" our program. Surprisingly, the C#/fortran program continued to work even with all of the packages shown below uninstalled. The numbers all the way to the right show the order in which they were uninstalled.



To confirm these steps, we tried launching the C#/fortran program on a "fresh" (different) cluster machine that has never had VS installed, and as expected, the C#/fortran program failed (couldn't call the fortran DLL). The very next thing we did was install VS (with the C++ and SQL packages included), then immediately uninstalled VS, then launched the C#/fortran program and it worked!?



We are hopeful someone has the answer to this riddle...what is the VS install/uninstall modifying (or leaving behind) that is allowing our software to work even though VS is no longer installed on the machine? As best we could tell, there are no noticeable software installs that the VS install left behind once uninstalled.



enter image description here










share|improve this question



















  • 1





    You'd better use Intel technical support resources to learn how to assert the dependencies of such a program (or debug using tools like WinDbg). Installing/uninstalling VS components is not an efficient way.

    – Lex Li
    Mar 10 at 6:13













-1












-1








-1








While attempting to deploy a program written in C# that also makes a call to a custom fortran .dll [both the .exe and the .dll were developed in Visual Studio (VS) with the Intel Visual Fortran (IVF) add-in installed], we discovered that we needed to install/uninstall Visual Studio to get it to work on our science center's computing cluster. Our center doesn't have enough VS licences to leave it installed on every cluster machine, and because of the number of machines in the cluster we need to avoid a manual install/uninstall of VS on each cluster machine.



Prior to running the C#/fortran program on just one of the cluster machines, we installed various C++ Redistributable packages and .NET frameworks on it, with the thinking that these would be needed for a C# program to call the fortran DLL successfully. Discovering that the C#/fortran program didn't work (the call from C# to fortran failed), we installed VS (but not IVF) on our test machine with only the "recommended" (default) install packages included, but the C#/fortran program still failed on the first call from C# to fortran. We then completely uninstalled Visual Studio and did a reinstall, this time specifying (customizing) that the VS install include the C++ and SQL packages...and it worked! To try and figure out which component of the Visual Studio install did the trick, we uninstalled the components shown in the list below 1-by-1 to determine which single uninstall would "break" our program. Surprisingly, the C#/fortran program continued to work even with all of the packages shown below uninstalled. The numbers all the way to the right show the order in which they were uninstalled.



To confirm these steps, we tried launching the C#/fortran program on a "fresh" (different) cluster machine that has never had VS installed, and as expected, the C#/fortran program failed (couldn't call the fortran DLL). The very next thing we did was install VS (with the C++ and SQL packages included), then immediately uninstalled VS, then launched the C#/fortran program and it worked!?



We are hopeful someone has the answer to this riddle...what is the VS install/uninstall modifying (or leaving behind) that is allowing our software to work even though VS is no longer installed on the machine? As best we could tell, there are no noticeable software installs that the VS install left behind once uninstalled.



enter image description here










share|improve this question
















While attempting to deploy a program written in C# that also makes a call to a custom fortran .dll [both the .exe and the .dll were developed in Visual Studio (VS) with the Intel Visual Fortran (IVF) add-in installed], we discovered that we needed to install/uninstall Visual Studio to get it to work on our science center's computing cluster. Our center doesn't have enough VS licences to leave it installed on every cluster machine, and because of the number of machines in the cluster we need to avoid a manual install/uninstall of VS on each cluster machine.



Prior to running the C#/fortran program on just one of the cluster machines, we installed various C++ Redistributable packages and .NET frameworks on it, with the thinking that these would be needed for a C# program to call the fortran DLL successfully. Discovering that the C#/fortran program didn't work (the call from C# to fortran failed), we installed VS (but not IVF) on our test machine with only the "recommended" (default) install packages included, but the C#/fortran program still failed on the first call from C# to fortran. We then completely uninstalled Visual Studio and did a reinstall, this time specifying (customizing) that the VS install include the C++ and SQL packages...and it worked! To try and figure out which component of the Visual Studio install did the trick, we uninstalled the components shown in the list below 1-by-1 to determine which single uninstall would "break" our program. Surprisingly, the C#/fortran program continued to work even with all of the packages shown below uninstalled. The numbers all the way to the right show the order in which they were uninstalled.



To confirm these steps, we tried launching the C#/fortran program on a "fresh" (different) cluster machine that has never had VS installed, and as expected, the C#/fortran program failed (couldn't call the fortran DLL). The very next thing we did was install VS (with the C++ and SQL packages included), then immediately uninstalled VS, then launched the C#/fortran program and it worked!?



We are hopeful someone has the answer to this riddle...what is the VS install/uninstall modifying (or leaving behind) that is allowing our software to work even though VS is no longer installed on the machine? As best we could tell, there are no noticeable software installs that the VS install left behind once uninstalled.



enter image description here







c# visual-studio visual-studio-2017






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 9 at 20:34







user2256085

















asked Mar 9 at 3:36









user2256085user2256085

1198




1198







  • 1





    You'd better use Intel technical support resources to learn how to assert the dependencies of such a program (or debug using tools like WinDbg). Installing/uninstalling VS components is not an efficient way.

    – Lex Li
    Mar 10 at 6:13












  • 1





    You'd better use Intel technical support resources to learn how to assert the dependencies of such a program (or debug using tools like WinDbg). Installing/uninstalling VS components is not an efficient way.

    – Lex Li
    Mar 10 at 6:13







1




1





You'd better use Intel technical support resources to learn how to assert the dependencies of such a program (or debug using tools like WinDbg). Installing/uninstalling VS components is not an efficient way.

– Lex Li
Mar 10 at 6:13





You'd better use Intel technical support resources to learn how to assert the dependencies of such a program (or debug using tools like WinDbg). Installing/uninstalling VS components is not an efficient way.

– Lex Li
Mar 10 at 6:13












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073747%2fwhy-does-install-uninstall-of-visual-studio-make-program-work%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073747%2fwhy-does-install-uninstall-of-visual-studio-make-program-work%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived