vote up 6 vote down star
3

I want to use Powershell to write some utilities, leveraging our own .NET components to handle the actual work. This is in place of writing a small console app to tie the calls together. My question is where I would find a good source of documentation or tutorial material to help me fast track this?

flag

5 Answers

vote up 7 vote down check

If you want to load an assembly into your PowerShell session, you can use reflection and load the assembly.

[void][System.Reflection.Assembly]::LoadFrom(PathToYourAssembly)

After you load your assembly, you can call static methods and create new instances of a class.

A good tutorial can be found here.

Both books mentioned by EBGreen are excellent. The PowerShell Cookbook is very task oriented and PowerShell in Action is a great description of the language, its focus and useability. PowerShell in Action is one of my favorite books. :)

link|flag
+1: for the nice tutorial link – Sung Meister Mar 8 at 16:33
1  
@Sung Thanks, I'm actually working on a series about using .NET from PowerShell on my blog - blog.usepowershell.com/category/net-framework/… – Steven Murawski Mar 8 at 17:38
vote up 3 vote down

The link that Steven posted is a good example. I don't know of any extensive tutorial. Both the Windows Powershell Cookbook and Windows Powershell In Action have good chapters on the subject. Also, look at the ::LoadFromFile method of the System.Reflection.Assembly class in case your in-house assemblies are not loaded in the GAC.

link|flag
vote up 0 vote down

Do you need info about simply using .Net assemblies in powershell, or are you looking for info on writing assemblies that are more powershell friendly?

link|flag
vote up 0 vote down

Thanks guys. At the moment I'm looking to use .NET assemblies not written with powershell in mind. I wrote a library that manages a set of data for an application. It allows persisting/loading of data in both database and file. While I am hacking at data in the database I wanted to create a one-click method of backing up the data from the database to a file that I can run regularly as a safety net. I'll see if I can get it going with the info you've provided.

link|flag
vote up 0 vote down

Got the library loaded but it seems that the way it and the libraries it depends on are written is going to make accessing it from powershell tricky so I'll leave it for now, but I will still get into using powershell more.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.