What\'s the best way to round down to nearest whole number in Powershell?
I am trying [math]::truncate but its not giving me predictable results.
Example:
The Math::Floor function combined with [decimal] declaration should give you the results you want.
[Math]::Floor([decimal](17.27975/0.1))
returns = 172