Add to Technorati Favorites
Welcome to ThePowerShellGuy.com Sign in | Join | Help

Browse by Tags

All Tags » Registry   (RSS)

Hey PowerShellGuy !, How Can I Determine the Currency Symbol in Use on a Computer?

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
Posted by MoW | 1 Comments
Filed under: , ,

Remote registry access and creating new Registry values with PowerShell

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
Posted by MoW | 7 Comments
Filed under: , ,

MOW PowerShelled Blogitems Index : Augustus - September 2006

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

MOW PowerShelled Blogitems Index : December 2006

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

Hey PowerShell Guy ! : How Can I Get the Name of the Last User to Log on to a Computer?

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),
Posted by admin | 3 Comments