Browse by Tags

All Tags » C# » Powershell (RSS)

Powershell CmdLet for LiveContacts Get-WindowsLiveContact by pschneider

The Windows Live ID Client SDK documentation shows you quite well how to sign in silently or with the built-in dialog - yet there is a small problem if you want to use this within a Powershell cmdlet, because the threading model has to be set to Single...
Filed under: , ,

Brainfuck Compiler and Interpreter in Powershell by pschneider

Surley some of you know the Brainfuck programming language... there are many compilers and interpreters around, yet I haven't found some for powershell... so here we go: Powershell Brainfuck Interpreter: param ($i) $t = @{ '>'='$p+...
Filed under: ,

Get-DocProps Cmdlet for Powershell by pschneider

I've written a small and rather simple powershell cmdlet which allows you to list the core and application properties of office documents, so that you can do something like this: Samples: Get-DocProps –path "*.docx" | where { $_.Creator...
More Posts