|
|
Browse by Tags
All Tags » 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 = ...
-
I got a question from a reader by mail about remote registry access, how to create new properties remote and how to specify the Kind of value it needed to be e.g. REG_SZ or REG_BINARY he could access the remote registry key with :
$MachineName = '.'$reg = ...
-
This is the Third entry, of a series of posts indexing the PowerShell Blogitems on my Old Blog /\/\o\/\/ PowerShelled
it covers Augustus and September, but I left out the 11 part Active Directory Series I will cover them in a separated post. BlogIndex /\/\o\/\/ PowerShelled October - November 2006
PowerShell RC2 and ...
-
This is the first entry, of a series of posts indexing the PowerShell Blogitems on my Old Blog /\/\o\/\/ PowerShelled
I have been asked a couple of times for a list or an index to the Entries on my Old blog as some of the information and examples are bit hard to find.
I often search my old blog on keywords (for example ...
-
Another rewrite of a Hey Scripting guy ! question in PowerShell, How Can I Get the Name of the Last User to Log on to a Computer?
as this time the answer involved the registry, there are a lot of ways in powershell.
First I show a oneliner (using get-item),
Then I will also show that, as in PowerShell the registry is just another Drive ...
|
|
|