DCSIMG
CTP1 - Shay Levy

Shay Levy

If you repeat it, PowerShell it!

News


btn_donate_LG

View Shay Levy's profile on LinkedIn Follow Shay Levy at Twitter Shay Levy's Facebook profile Subscribe to my FriendFeed


site statistics




Browse by Tags

All Tags » CTP1 (RSS)
New advanced functions language features in PowerShell v3
var addthis_config = {"data_track_clickback":true}; PowerShell 3.0 CTP1 includes many new language enhancements. Here are four of them for advanced functions. CmdletBinding and Parameter attributes We are no longer required to assign a value of $true to CmdletBinding and Parameter attributes. For example, in v2 we had to write: [ CmdletBinding ( SupportsShouldProcess = $true ) ] param ( [ Parameter ( Position = 0 , ValueFromPipeline = $true , ValueFromPipelineByPropertyName = $true ) ]...