Sign in
|
Join PowerShell.com!
|
Help
Home
PowerTips
Ask the Experts
Forums
Webcasts
Blogs
eBookV2
Script Library
Twitter Grid
Featured Posts
Dreaming in PowerShell
Don Jones
Code MarkUp Tool
Directory
Richard Siddaway's Blog
»
All Tags
»
Registry
(
RSS
)
Browse by Tags
Share
|
Recent Posts
Registry oddity
Decoding the mounted device information
Reading mounted device information from the registry
Set registry key owner
Archives
May 2013 (16)
April 2013 (22)
March 2013 (7)
February 2013 (12)
January 2013 (24)
December 2012 (19)
November 2012 (15)
October 2012 (8)
September 2012 (19)
August 2012 (7)
July 2012 (5)
June 2012 (19)
May 2012 (31)
April 2012 (21)
March 2012 (65)
February 2012 (94)
January 2012 (53)
December 2011 (17)
November 2011 (11)
October 2011 (15)
September 2011 (39)
August 2011 (57)
July 2011 (58)
June 2011 (65)
May 2011 (6)
Tags
Active Directory
Books
COM
Deep Dive
File System
General
Networking
Office 2010
Outlook
Powershell
PowerShell and Active Directory
PowerShell and WMI
PowerShell Basics
PowerShell User Group
PowerShell V2
PowerShell V3
Remoting
Scripting Games
Summit
Technology
Windows 7
Windows 8
Windows Server 2008 R2
Windows Server 2012
Windows Server 8
View more
Powershell
PowerShell V2. .NET
Registry oddity
Looking at modifying the registry on a virtual machine while its offline. I mount the VHDX file and can run this to load the registry PS> reg load HKLM\VHDSYS h:\windows\system32\config\system The operation completed successfully. If I perform...
Published
Fri, Dec 12 2012 8:27 AM
by
Richard Siddaway's Blog
Filed under:
Powershell
,
Registry
Decoding the mounted device information
In the previous post we looked at how to read the mounted device information. The data is in binary though – if you want it readable and not all of it is readable – try this $data = @( ) Get-Item -Path HKLM:\SYSTEM\MountedDevices | select -ExpandProperty...
Published
Sun, Sep 09 2012 2:17 PM
by
Richard Siddaway's Blog
Filed under:
Powershell
,
Registry
Reading mounted device information from the registry
Interesting question about reading the registry. How do you read HKLM:\SYSTEM\MountedDevices and pull out the name of the device and the associated data. Get-Item -Path HKLM:\SYSTEM\MountedDevices returns data of this form Name ...
Published
Sun, Sep 09 2012 8:41 AM
by
Richard Siddaway's Blog
Filed under:
Powershell
,
Registry
Set registry key owner
In chapter 7 of PowerShell and WMI I stated that I would post a .NET version of a script to set ownership of a registry key. The WMI method needs Vista or above so we need the .NET version for pre-Vista operating systems. function set-regkeyowner { [...
Published
Fri, Nov 11 2011 2:47 PM
by
Richard Siddaway's Blog
Filed under:
PowerShell V2. .NET
,
Registry
Copyright 2012 PowerShell.com. All rights reserved.