Posts RSS Comments RSS 127 Posts and 199 Comments till now

Archive for May, 2008

Effective Powershell Series (Keith Hill)

Keith Hill has an incredible series call Effective Powershell. If you’re new to Powershell or heck… even if you have been using it for awhile. Please check it out.

Series Starts Here with Item 1
Full Series Here (start from bottom up)

Citrix License Info (using WMI)

I had several questions about this so I decided I should figure it out and Post. It was surprisingly simple. All I needed was the WMI provider and from there it was cake. If you’re curious how I figured out the WMI namespace I used WMI Explorer from MoW [CLICK HERE To Read about it].

The Output will look like this
Citrix License Script Ouput

Here is the Code

# Get-CitrixLicensing
Param($LicenseServer)
$licensePool = gwmi -class "Citrix_GT_License_Pool" -Namespace "ROOT\CitrixLicensing" -comp $LicenseServer
$licensePool | Select-Object @{n="Product";e={$_.PLD}},
                            @{n="Model";e={"Server"}},  
                            @{n="Type";e={$_.LicenseType}},
                            @{n="Installed";e={$_.Count}},
                            @{n="In Use";e={$_.InUseCount}},
                            @{n="Available";e={$_.PooledAvailable}},
                            @{n="% in use";e={($_.InUseCount/$_.Count)*100}}

The transition is complete (man that was NOT fun!)

I still have some minor adjustments, but all the content has been moved and the RSS links redirected. Please Let me know if you have any issues. I will be adding a contact form tomorrow.

New and Improved site coming! ( Well… at least new )

So please excuse the mess or occasional down links if that happens.

I plan on doing several upgrades
- Upgrading the Blog Engine
- Changing the look and feel
- Changing the RSS Feed to feed burner
- Getting better category control
- adding a blogroll

I dont expect little down time (if any.) I hope that this will not effect anyones feeds and I trust it will be better when I am done. If your feed for some reason stops… you can use the feed from feedburner… it should always work http://feeds.feedburner.com/BsOnPosh

« Prev