tags:

views:

553

answers:

3

I'm looking for the assembly binding log viewer executable (fuslogvw.exe), but I can't seem to find it on my machine. It's there for sure, because when I type fuslogvw in a Visual Studio command prompt the application opens.

The machine I'm working on has a clean Visual Studio 2008 installation, no previous versions were ever installed.

Anyone knows where to find it? I need the exe to be able to copy it to a server to solve a binding issue.

+1  A: 

On my box, also with VS2008, it can be found at

C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\fuslogvw.exe

Rob Levine
That's it, thanks.
Gerrie Schenck
+1  A: 

On my machine it's in the SDK's bin directory.

To help you out, here's a quick-n-dirty batch file nightmare that will search the path for a file you give it:

@if EXIST %1 echo .\%1
@for %%e in (%PATHEXT%) do @for %%i in (%1%%e) do @if EXIST %%i echo .\%%i
@if NOT "%~$PATH:1"=="" echo %~$PATH:1
@for %%e in (%PATHEXT%) do @for %%i in (%1%%e) do @if NOT "%%~$PATH:i"=="" echo %%~$PATH:i
Michael Burr
+1 for reminding me while windows batch scripts make my eyes bleed :)
Richard Szalay
A: 

C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin

mfeingold