Difference between revisions of "Functions"
From MyWiki
Line 6: | Line 6: | ||
\}<br><br> | \}<br><br> | ||
Is called like this:<br> | Is called like this:<br> | ||
+ | FileSize3 -dir C:\Windows ` <br> | ||
+ | -minSize 100000 <br> |
Revision as of 19:23, 26 August 2014
http://windowsitpro.com/windows/create-your-own-powershell-functions
function FileSize3 ($dir, $minSize)
\{
dir $dir |
where \{$_.length -gt $minsize\}
\}
Is called like this:
FileSize3 -dir C:\Windows `
-minSize 100000