View Single Post
  #4  
Old 05-24-2011, 22:58
bytexorer bytexorer is offline
Friend
 
Join Date: Mar 2005
Posts: 12
Rept. Given: 0
Rept. Rcvd 7 Times in 1 Post
Thanks Given: 2
Thanks Rcvd at 0 Times in 0 Posts
bytexorer Reputation: 7
if you want to bypass Strong Name verification for an assembly, you can use

Code:
SN.EXE /Vr AssmeblyFileName
be aware that 32 bit version of SN.EXE will not work on 64 bit machines. you have to use 64 bit version of sn.exe on 64 bit machines.
you have to run sn.exe on evey machine per patched assembly file.
64 bit version is located on :

Code:
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\x64\
and 32 bit version on:

Code:
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\
on my Windows 7 64 Bit machine.
Reply With Quote