Difference between revisions of "Functions"

From MyWiki
Jump to: navigation, search
(Created page with "http://windowsitpro.com/windows/create-your-own-powershell-functions<br>")
 
Line 1: Line 1:
http://windowsitpro.com/windows/create-your-own-powershell-functions<br>
+
http://windowsitpro.com/windows/create-your-own-powershell-functions<br><br>
 +
function FileSize3 ($dir, $minSize)
 +
\{
 +
  dir $dir |
 +
  where \{$_.length -gt $minsize\}
 +
\}

Revision as of 19:21, 26 August 2014

http://windowsitpro.com/windows/create-your-own-powershell-functions

function FileSize3 ($dir, $minSize) \{

 dir $dir |
 where \{$_.length -gt $minsize\}

\}