Andre de Cavaignac

Let's blog it out...

Browse by Tags

All Tags » PowerShell (RSS)
Introducing PowerShell Pages - Script Style HTML Rendering
Early in the web development world, scripting languages such as ASP or PHP were used to compose pages. Although this proved great for relatively static pages, the dynamic web, filled with rich applications called for a more powerful framework. Thus, frameworks...
PowerShell: Repeat Yourself with the Command "Scratch Pad"
Heres a useful snippit of code I wrote as a utility and thought I'd post up for everyone. Very often when using a command line, you need to repeat a set of commands. For example, copy several files: copy "c:\blah.txt" "c:\otherPlace...
Invoking PowerShell Scripts from An Application
If you want to run your PowerShell scripts from a piece of code you're writing, and would prefer not to use Process.Start , you can easily use the PowerShell runtime classes to run those scripts for you, completely in-process. The code snippit below...
More Posts