Tagged Questions
3
votes
5answers
2k views
C# Powershell snapin not registering using installutil
I've got a really simple powershell script (see below).
I've got installutil aliased using the following in my profile:
set-alias installutil ...
1
vote
1answer
175 views
Custom PowerShell Snapin: custom format doesn't work
I used this article to write my first own Powershell Cmdlet and Snapin. And it works fine.
But I return a set of objects from my own data class, which has four properties and I want Powershell to ...
1
vote
2answers
225 views
Referencing external assemblies from PowerShell snap-in
I'm developing a custom PowerShell snap-in, which references another project in the solution.
When I try to debug the snap-in (following [these instructions][1]), the assembly fails to load and my ...
1
vote
1answer
217 views
Best way to store powershell snapin names to be used by c# app for later use
I have a c# app which executes rules, depending on an input. Some of the rules need to execute a poweshell script. I would assume that some of the scripts, as perhaps writtem by a user, would need a ...