Using Powershell to Register a file in the Gac - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:49:47Zhttp://stackoverflow.com/feeds/question/679064http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/679064/using-powershell-to-register-a-file-in-the-gac0Using Powershell to Register a file in the GacJames Turns2009-03-24T20:12:42Z2009-03-25T03:40:03Z
<p>Is there a simpe way to in powershell (I imagine using gacutil.exe) to read from a text document a path\assembly and register it in the GAC? So for example a .txt file that looks like:</p>
<p>c:\test\myfile.dll
c:\myfile2.dll
d:\gac\gacthisfile.dll</p>
<p>The powershell script would read that into a stream and then run gacutil on each of those assemblies found? I guess it would be something like:</p>
<pre><code>#read files into array?
foreach ($file in Get-ChildItem -Filter "*.dll" )
{
Write-Host $file.Name
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\gacutil.exe /nologo /i $file.Name
}
</code></pre>
http://stackoverflow.com/questions/679064/using-powershell-to-register-a-file-in-the-gac/679116#6791160Answer by Pete Skelly for Using Powershell to Register a file in the GacPete Skelly2009-03-24T20:29:03Z2009-03-24T20:29:03Z<p>If you create an alias in your profile (just type $profile at a ps prompt to determine this file location) like so <code>new-alias "gac" ($env:ProgramFiles+"\Microsoft Visual Studio 8\SDK\v2.0\Bin\gacutil.exe")</code> then you can use gac like so:</p>
<pre><code>get-childitem $basedirectory "*$filter.dll" | foreach-object -process{ WRITE-HOST -FOREGROUND GREEN "Processing $_"; gac /i $_.FullName /f}
</code></pre>
<p>the last part is the most important. it calls gacutil with the switches you want.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/679064/using-powershell-to-register-a-file-in-the-gac/679141#6791413Answer by zdan for Using Powershell to Register a file in the Gaczdan2009-03-24T20:33:19Z2009-03-24T20:33:19Z<p>If you sort out your text file such that the each dll is on a separate line, you could use the Get-Content command and pipe each to a filter that did your command:</p>
<pre><code>filter gac-item { C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\gacutil.exe /nologo /i $_}
get-content fileOfDlls.txt | ?{$_ -like "*.dll"} | gac-item
</code></pre>
http://stackoverflow.com/questions/679064/using-powershell-to-register-a-file-in-the-gac/680145#6801451Answer by Keith Hill for Using Powershell to Register a file in the GacKeith Hill2009-03-25T03:40:03Z2009-03-25T03:40:03Z<p>I would suggest calling the function to add an assembly to the GAC something following PowerShell guidelines like Add-GacItem. Also the location of gacutil.exe varies based on your system. If you have VS 2008 installed, it should be at the location shown below.</p>
<pre><code>function Add-GacItem([string]$path) {
Begin {
$gacutil="$env:ProgramFiles\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe"
function AddGacItemImpl([string]$path) {
"& $gacutil /nologo /i $path"
}
}
Process {
if ($_) { AddGacItemImpl $_ }
}
End {
if ($path) { AddGacItemImpl $path }
}
}
Get-Content .\dlls.txt | Split-String | Add-GacItem
</code></pre>
<p>Note that the Split-String cmdlet comes from <a href="http://pscx.codeplex.com" rel="nofollow">Pscx</a>. The function isn't super robust (no wildcard support doesn't check for weird types like DateTime) but at least it can handle regular invocation and pipeline invocation.</p>