Sign In
Young's Software for Mere Mortals
Young Jun Hong's blog about BizTalk
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET programming
BizTalk
Pages
Powershell
Windows Workflow Foundation
Archive
Archives
September 2007
(1)
June 2007
(1)
April 2007
(1)
July 2006
(5)
June 2006
(4)
May 2006
(7)
June 2005
(2)
April 2005
(3)
January 2005
(11)
December 2004
(3)
July, 2006
MSDN Blogs
>
Young's Software for Mere Mortals
>
July, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Young's Software for Mere Mortals
BizTalk Server 2006 R2
Posted
over 6 years ago
by
yjhong
2
Comments
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...
Young's Software for Mere Mortals
Passing arguments from the command line to downstream functions in Powershell
Posted
over 6 years ago
by
yjhong
2
Comments
$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...
Young's Software for Mere Mortals
How to create a function name to the global scope in a Powershell script file
Posted
over 6 years ago
by
yjhong
3
Comments
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...
Young's Software for Mere Mortals
How to create multiple or jagged arrays in Powershell
Posted
over 6 years ago
by
yjhong
2
Comments
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...
Young's Software for Mere Mortals
You will love the new shell named Powershell!
Posted
over 6 years ago
by
yjhong
5
Comments
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...
Page 1 of 1 (5 items)