I'm currently having some assembly binding problems on our development server. I want to investigate the problem a bit further with Fusion Log Viewer. Since there is no Visual Studio installed on the machine, I copied FUSLOGVW.EXE to a local folder and started it there.

Is this supposed to work or does it need something else? I don't get the impression the application is logging any failures (and yes I have the settings right).

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

Fuslogvw doesn't do the logging. The fusion loader does that. Fuslogvw just displays the log output. Are you getting any logs at all in the output directory you have configured?

Oh, and it should work on a machine that does not have Visual Studio installed.

link|improve this answer
No I don't get any output when I choose to log to disk. – Gerrie Schenck Jun 18 '09 at 12:14
2  
Set an explicit custom log path and choose "log all binds to disk" in the settings dialog. The logs should end up there. If they are not appearing, check the permissions on the directory you have specified as the log path (and that it actually exists). – adrianbanks Jun 18 '09 at 12:17
6  
copying FUSLOGVW.EXE to a machine with .NET 4.0 installed without Visual Studio does not work. You also need to copy the flogvwrc.dll in the 1033 folder under "Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\" – Brian Chavez Jun 1 '11 at 11:19
@Brian Chavez - thanks mate! that trick with flogvwrc.dll got it working for me! :) – Pure.Krome Sep 2 '11 at 9:42
@BrianChavez Seems like this applies only to the .NET 4.0 version of the tool. The .NET 3.5 version of fuslogvw.exe runs without this .dll. – ghostskunks Mar 1 at 12:24
feedback

You also need to create a ForceLog key in HKLM\SOFTWARE\Microsoft\Fusion with a DWORD value of 1 to turn on the log. You should set this value back to 0 when not testing otherwise it will keep populating the log. Create a folder eg. C:\fuslog and refer to it in the Custom log path in Settings in the Assembly Binding Log Viewer.

link|improve this answer
The key is not "ForceLog", it is "LogFailures". – Jorge Fioranelli Nov 30 '11 at 3:07
1  
And you can add another one called "LogPath" (REG_SZ) with custom path (e.g. c:\fuslog) – Jorge Fioranelli Nov 30 '11 at 3:08
feedback

You might be using the wrong version of fuslogvw. check c:\program files\microsoft SDKs or c:\program files\Microsoft.net\SDK for a different version of the utility.

link|improve this answer
I'm using the one from Visual Studio 2005 to check problems in 3.5 assemblies. I think this is correct? What else do you mean with versions? – Gerrie Schenck Jun 18 '09 at 12:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.