Browse by Tags

All Tags » Monad (RSS)

Security issue with PowerShell

Hi guys, after (too) long time I can finally return to Powershell (I spend few months creating batch framework to manage citrix servers, right now it is about 980 scripts). I was playing with Get-Credential: $Operator = get-credential I provided my username...
Posted by martin | 3 comment(s)
Filed under: , ,

How to create GUI in Monad?

Hey guys! Sometimes you need to create some GUI - msgbox, inputbox etc... Till now it was really problem if you needed something more advanced - for example checkboxes etc. With Monad it is quite easy! And thats because you can use .net... In fact it...
Posted by martin | 1 comment(s)
Filed under:

Monad documentation

I noticed this information on Lee`s blog - Monad documentation from PDC is available! And it is great, I noticed few things I didnt know you could do, for example Filter get-company {$_.Company} Get-Process | Get-Company Download it today! :) http://www...
Posted by martin | with no comments
Filed under: ,

First alternative shell for Monad!

Heh, I was waiting for this moment, however I didnt know it will happen before first release :) We have alternative shell for monad - it is called jaMSH (Jeff`s Alternative Monad SHell)... It includes few nice features - greater autocomplete, emacs/vi...
Posted by martin | 3 comment(s)
Filed under: ,

Monad = use structures from System namespace

Hey, did you know how to use structures from System namespace? Like DateTime for example? It is quite easy - [structure]::StaticMethod. For example to insert current date to variable $Today, you just need this line of code: MSH> $Today = [DateTime...
Posted by martin | with no comments
Filed under: