Differences
This shows you the differences between the selected revisions of the page.
2014-06-11 | 2014-06-12 | ||
simpler powershell gac install example (martin) | putting assembly name to quotes (martin) | ||
Line 51: | Line 51: | ||
<code powershell> | <code powershell> | ||
- | Add-Type -AssemblyName System.EnterpriseServices | + | Add-Type -AssemblyName "System.EnterpriseServices" |
$publish = New-Object System.EnterpriseServices.Internal.Publish | $publish = New-Object System.EnterpriseServices.Internal.Publish | ||
$publish.GacInstall("WinSCPnet.dll") | $publish.GacInstall("WinSCPnet.dll") |