devlife

Untitled

Aug 8th, 2011
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <#
  2.  .Synopsis
  3.   Some Synopsis.
  4.  
  5.  .Description
  6.   I want to display the following Xml in the desciption but it isn't being formatted correctly:
  7.  
  8. <Application>
  9.     <Name></Name>
  10.     <PartialPysicalPath></PartialPysicalPath>
  11.     <PartialOutputFileName></PartialOutputFileName>
  12.     <TypeList>
  13.         <Type></Type>
  14.         <Type></Type>
  15.         <Type></Type>
  16.     </TypeList>
  17. </Application>
  18.  
  19. #>
  20. Function SomeFunction
  21. {
  22.    param
  23.    (
  24.        [Parameter(Position=0)]
  25.        [String[]] $Applications
  26.     )
  27.  
  28.    # Do something
  29. }
Advertisement
Add Comment
Please, Sign In to add comment