Yvand wrote:
Do I need to copy and paste the dll into the new GAC location?
Also does dll need to be on web server, app server, and database server?
Another Note: When running this code below on the .net4.5 server the ldapcp code is just placed in C\Windows\Assembly and not C\Windows\Microsoft.Net\assembly
[System.Reflection.Assembly]::Load("System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")
$publish = New-Object System.EnterpriseServices.Internal.Publish
$publish.GacInstall("c:\ldapcp.dll")
iisreset
Where are you looking at?I am using version 3 of the ldapcp code on a .Net 4.5 machine. The ldapcp.dll is installed across C\Windows\Assembly and not C\Windows\Microsoft.Net\Assembly.
In .NET 4.5, GAC is located in C:\Windows\Microsoft.NET\assembly
Do I need to copy and paste the dll into the new GAC location?
Also does dll need to be on web server, app server, and database server?
Another Note: When running this code below on the .net4.5 server the ldapcp code is just placed in C\Windows\Assembly and not C\Windows\Microsoft.Net\assembly
[System.Reflection.Assembly]::Load("System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")
$publish = New-Object System.EnterpriseServices.Internal.Publish
$publish.GacInstall("c:\ldapcp.dll")
iisreset