Tengo un ensamblado .NET (un dll) que es una API para respaldar el software que usamos aquí. Contiene algunas propiedades y métodos que me gustaría aprovechar en mis scripts de Powershell. Sin embargo, me encuentro con muchos problemas al cargar primero el ensamblaje y luego usar cualquiera de los tipos una vez que se carga el ensamblaje.
La ruta completa del archivo es:
C:\rnd\CloudBerry.Backup.API.dll
En Powershell uso:
$dllpath = "C:\rnd\CloudBerry.Backup.API.dll"
Add-Type -Path $dllpath
Me sale el error a continuación:
Add-Type : Unable to load one or more of the requested types. Retrieve the
LoaderExceptions property for more information.
At line:1 char:9
+ Add-Type <<<< -Path $dllpath
+ CategoryInfo : NotSpecified: (:) [Add-Type], ReflectionTypeLoadException
+ FullyQualifiedErrorId : System.Reflection.ReflectionTypeLoadException,Microsoft.PowerShell.Commands.AddTypeComma
ndAdd-Type : Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
Usar el mismo cmdlet en otro ensamblado .NET, DotNetZip , que tiene ejemplos del uso de la misma funcionalidad en el sitio, tampoco funciona para mí.
Eventualmente encuentro que aparentemente soy capaz de cargar el ensamblaje usando la reflexión:
[System.Reflection.Assembly]::LoadFrom($dllpath)
Aunque no entiendo la diferencia entre los métodos Load, LoadFrom o LoadFile, ese último método parece funcionar.
Sin embargo, todavía parece que no puedo crear instancias o usar objetos. Cada vez que lo intento, recibo errores que describen que Powershell no puede encontrar ninguno de los tipos públicos.
Sé que las clases están ahí:
$asm = [System.Reflection.Assembly]::LoadFrom($dllpath)
$cbbtypes = $asm.GetExportedTypes()
$cbbtypes | Get-Member -Static
---- inicio del extracto ----
TypeName: CloudBerryLab.Backup.API.BackupProvider
Name MemberType Definition
---- ---------- ----------
PlanChanged Event System.EventHandler`1[CloudBerryLab.Backup.API.Utils.ChangedEventArgs] PlanChanged(Sy...
PlanRemoved Event System.EventHandler`1[CloudBerryLab.Backup.API.Utils.PlanRemoveEventArgs] PlanRemoved...
CalculateFolderSize Method static long CalculateFolderSize()
Equals Method static bool Equals(System.Object objA, System.Object objB)
GetAccounts Method static CloudBerryLab.Backup.API.Account[], CloudBerry.Backup.API, Version=1.0.0.1, Cu...
GetBackupPlans Method static CloudBerryLab.Backup.API.BackupPlan[], CloudBerry.Backup.API, Version=1.0.0.1,...
ReferenceEquals Method static bool ReferenceEquals(System.Object objA, System.Object objB)
SetProfilePath Method static System.Void SetProfilePath(string profilePath)
---- fin del extracto ----
Intentar usar métodos estáticos falla, ¡no sé por qué!
[CloudBerryLab.Backup.API.BackupProvider]::GetAccounts()
Unable to find type [CloudBerryLab.Backup.API.BackupProvider]: make sure that the assembly containing this type is load
ed.
At line:1 char:42
+ [CloudBerryLab.Backup.API.BackupProvider] <<<< ::GetAccounts()
+ CategoryInfo : InvalidOperation: (CloudBerryLab.Backup.API.BackupProvider:String) [], RuntimeException
+ FullyQualifiedErrorId : TypeNotFound
Cualquier orientación apreciada!