Welcome to MSDN Blogs Sign in | Join | Help

July 2006 - Posts

BizTalk Server 2006 R2

I think there will be no engine changes in R2, but this product refresh will include a number of interesting features and enhancements. For example, R2 adds EDI, RFID, WCF and WF BAM Interceptors, the WCF adapter and supports the R2 Adapter Framework
Posted by yjhong | 2 Comments
Filed under:

Passing arguments from the command line to downstream functions in Powershell

$args is a special variable, an array of all arguments passed to a function on the command line. But, $args is always treated as an array in PowerShell. And It may cause an interesting side effect when passing $args to a downstream function. Suppose we
Posted by yjhong | 2 Comments
Filed under:

How to create a function name to the global scope in a Powershell script file

I created a script named s.ps1 to define a function named s1. # s.ps1 function s1 { // } But, after I run this script, the s1 function is not available in the global scope like: .\S.ps1 S1 s1' is not recognized as a cmdlet, function, operable program,
Posted by yjhong | 3 Comments
Filed under:

How to create multiple or jagged arrays in Powershell

For me, it was not apparent to create multiple dimensional or jagged arrays in Powershell. I tried the following command, but it only made a single dimensional array: $b = ((‘a’,’a’)) $b.Count 2 Bruce Payette gave me the answers for this basic question.
Posted by yjhong | 2 Comments
Filed under:

You will love the new shell named Powershell!

When I installed Windows SDK to test Indigo stuff, I found another toy named Powershell. Powershell is the new name of MSH code named Monad . It is a shell or command interpreter based on .NET framework. I thought the cmd.exe shell is too simple for practical
Posted by yjhong | 5 Comments
 
Page view tracker