All Tags »
Hey! »
Registry »
PowerShell
Sorry, but there are no more tags available to filter with.
-
From the Scripting Son article : How Can I Determine the Currency Symbol in Use on a Computer?
3 ways to do the same in PowerShell :
(gp 'hkcu:\Control panel\International').sCurrency
(get-culture).NumberFormat.CurrencySymbol
'{0:c}' -f 1
And yes we can do it remote also :
$Computer = ...