Register all dll in a directory in GAC Silently in powershell -


i have register .dll files in directory gac silently without screen popup. how can using powershell. please :)

use gacutil.exe.

& gacutil.exe -i <strongly named dll> 

note - dll must meet requirements of being installable gac.


Comments

Popular posts from this blog

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -