|
|
Browse by Tags
All Tags » Hey! » Registry
-
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 = ...
|
|
|