powershell 在Gac中安装/删除dll - Powershell
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 在Gac中安装/删除dll - Powershell相关的知识,希望对你有一定的参考价值。
#Remove toGac
Set-location "c:\Folder Path"
[System.Reflection.Assembly]::Load("System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")
$publish = New-Object System.EnterpriseServices.Internal.Publish
$publish.GacRemove("c:\Folder Path\DLL.dll")
iisreset
#Install toGac
Set-location "c:\Folder Path"
[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:\Folder Path\DLL.dll")
iisreset
以上是关于powershell 在Gac中安装/删除dll - Powershell的主要内容,如果未能解决你的问题,请参考以下文章
使用 Powershell 在 Windows Server 2008 R2 上的 GAC 中安装 dll
在 GAC 中安装 Microsoft.SqlServer.Types
powershell 在当前服务器场中安装/删除SharePoint帮助网站集文件。
text powershell在windows中安装git。
如何使用 PAT 从本地 Azure Artifacts 存储库在 docker 容器中安装 powershell 模块?
Win7中安装Windows PowerShell 3.0