# Powershell v3.0 code# Recurses current directory to gather file version information of a boolean property# Returns number of Debug,Patched,PreRelease,Private,Special builds# Creates csv of those properties in current directory# Takes up to three arguments:# [mandatory]$filename (e.g. *.dll),$exportflag (e.g. "0" to output csv;default is off), $filetime (default is now)function Global:Get-fileinfo {[CmdletBinding()] Param( [Parameter(ValueFromPipeline=$true)] [object]$filename, [bool]$exportflag=1, $filetime=[DateTime]::Now.ToFileTime()...