Summary: Use Windows PowerShell to display the square root of a number.
How can I figure out the square root of a number when I am writing a Windows PowerShell script?
Use the Sqrt static method from the System.Math class. This example obtains the square root of the number 9:
[math]::Sqrt(9)
0 comments