Todays Blog entry is going to cover the HOW of how I put together my demos of Portable PowerShell. Tomorrow I'll move back to clearly defining what I'd like to see from Microsoft. But before I get to the full details a little background: Background So what's stopping PowerShell or practically...
Given the context on the last few posts. I've made a simple helper method in C# that can take a simple powershell hashtable and create a PSCustomObject based on it. Here is an example of how you can call it. [snapinini.newobjecthelper]::newObjectFast(@{name= "karl" ;age=31;now = [datetime...
Based on the performance testing and work being done by myself , mow , Brandon Shell and others the question has come up what is the quickest way to generate a PSCustomObject, whether in script , on in C#, and how do you even do it in C#? Some typical ways of doing in PowerShell have been either something...
One thing that has bothered me about true cmdlets in contrast scripts is that they lived in SnapIns and couldn't be deployed with xcopy as scripts can because SnapIns required Registration/Installation. I build my own way to deal with this need some time ago, and thought that I'd start a blog...