Tagged Questions
The pssnapin tag has no wiki summary.
4
votes
3answers
312 views
PowerShell - Distributed Solution
I'm new to PS so I may get some of the terminology wrong.
If you want to roll out a custom PowerShell environment (snap-in) for a team of 30 developers/DBAs. What is the best way to do this... if you ...
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 ...
3
votes
6answers
1k views
how to create a cmdlet?
I have written my program in c# .net. I want to convert it in to a powershell cmdlet. I was instructed to use pssnapin and getproc programs. Can anyone plz help me out..
Regards
Arun
2
votes
2answers
105 views
Is Make-Shell deprecated?
A couple of years ago I used Make-shell to create custom shells with custom cmdlets.
Later I used snap-in technique and I forgot about that option.
Now I should deploy a set of custom cmdlets to a ...
2
votes
2answers
347 views
Load-Module equivalient in PowerShell v1
For reasons of script portability, I need to dynamically load snap-ins in a PowerShell script. This is easily accomplished in PowerShell v2 with the Load-Module function. I need to run this particular ...
1
vote
2answers
105 views
No installers found when running install util on custom pssnapin
I created a very simple PSSnapin but when I go to run IntallUtil against the assembly I get the following:
No public installers with the RunInstallerAttribute.Yes attribute could be found in the ...
1
vote
1answer
48 views
Attributes that control cmdlet's Definition
I am creating a number of Powershell cmdlet's and am noticing that after I install my snap-in and execute the following command the parameter data types are listed as single instead of the types ...
1
vote
1answer
53 views
How can I run initialization code each time my snap-in is loaded?
I have a PowerShell snapin, and I would like to run a bit of initialization code (hooking some AppDomain events) each time my snapin is loaded (i.e. once for each powershell.exe process that is ...
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
0answers
45 views
Additional Pssnapins [closed]
I can see the 6 or so native PSSnapins, thanks to get-PSSnapin
I have added the useful QAD snapins, thanks to add-PSSnapin
My question is could you recommend any other useful third-party Snapins ...
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 ...
0
votes
2answers
114 views
Cmdlet Contention between PowerShell SnapIns
I ran into an issue while using both the Vmware PowerCLI and System Center Virtual Machine Manager snap-ins for PowerShell. They both contain similarly named cmdlets, like 'Get-VM' and 'Get-VMHost'. ...
0
votes
1answer
126 views
Trying to compile VS2008 project on Win 64 bit which is custom Powershell PSSnapin
Library Project compiles fine for ANY CPU in VS2008 running on Win 7 64 -bit.
Now in the post build following command fails when attemptiong to register library dll:
PS ...