Tengo un script de powershell realmente simple (ver a continuación). Tengo installutil usando un alias en el siguiente perfil:C# Powershell snapin no se registra con installutil
set-alias installutil $env:windir\Microsoft.NET\Framework\v2.0.50727\installutil
En PowerShell simplemente:
installutil assemplylocation.dll
Esto devuelve correctamente. (Instalar/Confirmar ambos se completan con éxito). Sin embargo, cuando reviso el registro, o en powershell usando get-pssnapin -registered, no muestra mi ensamblado. Lo hice el otro día y funcionó bien, pero parece que no puedo duplicarlo ... por favor, avisen.
using System;
using System.Management.Automation;
using System.ComponentModel;
namespace PSBook_2_1
{
[RunInstaller(true)]
public class PSBookChapter2MySnapIn : PSSnapIn
{
public PSBookChapter2MySnapIn()
: base()
{ }
// Name for the PowerShell snap-in.
public override string Name
{
get
{
return "Wiley.PSProfessional.Chapter2";
}
}
// Vendor information for the PowerShell snap-in.
public override string Vendor
{
get
{
return "Wiley";
}
}
// Description of the PowerShell snap-in
public override string Description
{
get
{
return "This is a sample PowerShell snap-in";
}
}
}
// Code to implement cmdlet Write-Hi
[Cmdlet(VerbsCommunications.Write, "Hi")]
public class SayHi : Cmdlet
{
protected override void ProcessRecord()
{
WriteObject("Hi, World!");
}
}
// Code to implement cmdlet Write-Hello
[Cmdlet(VerbsCommunications.Write, "Hello")]
public class SayHello : Cmdlet
{
protected override void ProcessRecord()
{
WriteObject("Hello, World!");
}
}
}
problema fue con la ejecución de este en la versión de 32 bits de PowerShell, en lugar del 64- bit ... – downatone