J'ai un script powershell très simple (voir ci-dessous). J'ai installutil aliasés en ce qui suit dans mon profil:C# Powershell snapin ne s'enregistre pas en utilisant installutil
set-alias installutil $env:windir\Microsoft.NET\Framework\v2.0.50727\installutil
En Powershell je simplement:
installutil assemplylocation.dll
Ce retourne avec succès. (Installer/valider les deux se terminent avec succès). Pourtant quand je vérifie le registre, ou dans powershell en utilisant get-pssnapin -registered il ne montre pas mon assembly. Je l'ai fait l'autre jour et ça a bien fonctionné, mais je ne semble pas être capable de le reproduire ... s'il vous plaît aviser.
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!");
}
}
}
question a été à l'exécution de ce dans la version 32 bits de Powershell, au lieu du 64- bit ... – downatone