<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Use the PowerShell Registry Provider to Simplify Registry Access</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2012/05/07/use-the-powershell-registry-provider-to-simplify-registry-access.aspx</link><description>Microsoft Scripting Guy, Ed Wilson, shows how to use the Windows PowerShell registry provider to simplify access to registry keys and properties.</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Use the PowerShell Registry Provider to Simplify Registry Access</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2012/05/07/use-the-powershell-registry-provider-to-simplify-registry-access.aspx#3497180</link><pubDate>Thu, 10 May 2012 12:26:59 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3497180</guid><dc:creator>Boe Prox</dc:creator><description>&lt;p&gt;Shay Levi put together and awesome module for working with remote registry called Remote Registry PowerShell Module available for V2: &lt;a rel="nofollow" target="_new" href="http://psremoteregistry.codeplex.com/"&gt;psremoteregistry.codeplex.com&lt;/a&gt; and V3: &lt;a rel="nofollow" target="_new" href="http://psrr.codeplex.com/"&gt;http://psrr.codeplex.com/&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3497180" width="1" height="1"&gt;</description></item><item><title>re: Use the PowerShell Registry Provider to Simplify Registry Access</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2012/05/07/use-the-powershell-registry-provider-to-simplify-registry-access.aspx#3496991</link><pubDate>Wed, 09 May 2012 15:23:03 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3496991</guid><dc:creator>IamMred</dc:creator><description>&lt;p&gt;Thanks Brian, for sharing another way... &amp;nbsp;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3496991" width="1" height="1"&gt;</description></item><item><title>re: Use the PowerShell Registry Provider to Simplify Registry Access</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2012/05/07/use-the-powershell-registry-provider-to-simplify-registry-access.aspx#3496503</link><pubDate>Mon, 07 May 2012 18:02:52 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3496503</guid><dc:creator>Brian Wilhite</dc:creator><description>&lt;p&gt;Moreover, this is one way I check the registry for a remote computer to determine if it is pending a reboot (Win2003):&lt;/p&gt;
&lt;p&gt;$RegCon = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey([Microsoft.Win32.RegistryHive]&amp;quot;LocalMachine&amp;quot;,$Computer)&lt;/p&gt;
&lt;p&gt;$RegSubKeySM = $RegCon.OpenSubKey(&amp;quot;SYSTEM\CurrentControlSet\Control\Session Manager\&amp;quot;)&lt;/p&gt;
&lt;p&gt;$RegValuePFRO = $RegSubKeySM.GetValue(&amp;quot;PendingFileRenameOperations&amp;quot;,&amp;quot;NoValue&amp;quot;)&lt;/p&gt;
&lt;p&gt;$RegCon.Close()&lt;/p&gt;
&lt;p&gt;Where $Computer is the target ComputerName&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3496503" width="1" height="1"&gt;</description></item><item><title>re: Use the PowerShell Registry Provider to Simplify Registry Access</title><link>http://blogs.technet.com/b/heyscriptingguy/archive/2012/05/07/use-the-powershell-registry-provider-to-simplify-registry-access.aspx#3496498</link><pubDate>Mon, 07 May 2012 17:52:37 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3496498</guid><dc:creator>Brian Wilhite</dc:creator><description>&lt;p&gt;Also, the .Net [Microsoft.Win32.RegistryKey] is another great way to interact with the registry, that&amp;#39;s the great thing about PowerShell, so many unique ways to do things!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://msdn.microsoft.com/en-us/library/microsoft.win32.registrykey.aspx"&gt;msdn.microsoft.com/.../microsoft.win32.registrykey.aspx&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3496498" width="1" height="1"&gt;</description></item></channel></rss>