<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Elevation PowerToys for Windows</title><subtitle type="html" /><id>http://blogs.technet.com/b/elevationpowertoys/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/" /><link rel="self" type="application/atom+xml" href="http://blogs.technet.com/b/elevationpowertoys/atom.aspx" /><generator uri="http://telligent.com" version="5.6.50428.7875">Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><updated>2009-11-20T18:47:00Z</updated><entry><title>PowerShell Script to Create a Sysinternals Suite INF File Installer</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2010/10/27/powershell-script-to-create-a-sysinternals-suite-inf-file-installer.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="3849" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-36-44-50/New_2D00_SysinternalsSuiteInstaller.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2010/10/27/powershell-script-to-create-a-sysinternals-suite-inf-file-installer.aspx</id><published>2010-10-27T17:58:00Z</published><updated>2010-10-27T17:58:00Z</updated><content type="html">&lt;p&gt;In my &lt;a target="_blank" href="http://blogs.technet.com/b/elevationpowertoys/archive/2010/02/26/updated-sysinternals-suite-installer.aspx"&gt;February 26, 2010 post&lt;/a&gt; I provided an updated INF file to install the Sysinternals Suite.&amp;nbsp; I also mentioned that I would try to update this more frequently in the future as the content of the Sysinternals Suite changes.&amp;nbsp; Well my free time being what it is, I have not had a chance to do that yet.&amp;nbsp; So instead I took to heart a comment left by Chris Sagovac that I make a script to create the INF file.&lt;/p&gt;
&lt;p&gt;The PowerShell script (&lt;strong&gt;New-SysinternalsSuiteInstaller.ps1&lt;/strong&gt;) attached below does the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Downloads the Sysinternals Suite web page and parses out the Updated date. &lt;/li&gt;
&lt;li&gt;Creates a subfolder below the script folder named with the Updated date. &lt;/li&gt;
&lt;li&gt;Creates an Extracted folder under the date folder. &lt;/li&gt;
&lt;li&gt;Downloads the Sysinternals Suite Zip file in the date folder. &lt;/li&gt;
&lt;li&gt;Extracts the contents of the Zip file to the Extracted folder. &lt;/li&gt;
&lt;li&gt;Generates Install_SysinternalsSuite.inf in the Extracted folder. &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The INF file has entries to create Start Menu shortcuts for the graphical programs and help files.&amp;nbsp; You can change the list of programs and help files that will have shortcuts by changing the entries in the $hashStartMenuPrograms and $hashStartMenuHelp hashtable variables in &lt;strong&gt;New-SysinternalsSuiteInstaller.ps1&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;- Michael Murgolo, &lt;/b&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/strong&gt;&lt;a href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;strong&gt;Terms of Use&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3364450" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Creating a Self-Elevating Script</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2010/06/20/creating-a-self-elevating-script.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="3796" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-33-92-27/RelaunchElevated.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2010/06/20/creating-a-self-elevating-script.aspx</id><published>2010-06-19T23:12:00Z</published><updated>2010-06-19T23:12:00Z</updated><content type="html">&lt;p&gt;The question recently came up on during an internal discussion about how to quickly (&amp;ldquo;one double-click&amp;rdquo;) elevate a script on a machine with UAC enabled without installing anything or manually configuring a shortcut to &amp;ldquo;Run as administrator&amp;rdquo;.&amp;nbsp; So to answer this question I decided to share my &amp;ldquo;self-elevating&amp;rdquo; CMD script.&amp;nbsp; This script relies on the same technique as my previous post on my updated version of Launchapp.wsf.&amp;nbsp; It uses the method of detecting whether the script is running elevated from John Howard&amp;rsquo;s blog (&lt;a href="http://blogs.technet.com/jhoward/archive/2008/11/19/how-to-detect-uac-elevation-from-vbscript.aspx"&gt;http://blogs.technet.com/jhoward/archive/2008/11/19/how-to-detect-uac-elevation-from-vbscript.aspx&lt;/a&gt;), translated to CMD script.&amp;nbsp; The following script will &amp;ldquo;re-launch itself&amp;rdquo; elevated if it is not already running elevated.&amp;nbsp; This version (&lt;strong&gt;RelaunchElevated.cmd&lt;/strong&gt; in the download below) requires that either that the Elevate Command PowerToy from &lt;a href="http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx"&gt;here&lt;/a&gt; is installed or that elevate.cmd and elevate.vbs from the same download are in the same folder with the script or in the Windows search path.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span style="font-family: Courier New;"&gt;@echo off &lt;br /&gt;setlocal enabledelayedexpansion &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Courier New;"&gt;set CmdDir=%~dp0 &lt;br /&gt;set CmdDir=%CmdDir:~0,-1% &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Courier New;"&gt;:: Check for Mandatory Label\High Mandatory Level &lt;br /&gt;whoami /groups | find "S-1-16-12288" &amp;gt; nul &lt;br /&gt;if "%errorlevel%"=="0" ( &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo Running as elevated user.&amp;nbsp; Continuing script. &lt;br /&gt;) else ( &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo Not running as elevated user. &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo Relaunching Elevated: "%~dpnx0" %* &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if exist "%CmdDir%\elevate.cmd" ( &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set ELEVATE_COMMAND="%CmdDir%\elevate.cmd" &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ) else ( &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set ELEVATE_COMMAND=elevate.cmd &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ) &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set CARET=^^ &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; !ELEVATE_COMMAND! cmd /k cd /d "%~dp0" !CARET!^&amp;amp; call "%~dpnx0" %* &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; goto :EOF &lt;br /&gt;) &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Courier New;"&gt;:: Continue script here &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Courier New;"&gt;echo Arguments passed: %*&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This script looks for the &lt;a href="http://msdn.microsoft.com/en-us/library/aa965848(VS.85).aspx"&gt;System Manadatory Label&lt;/a&gt; in the output of &lt;strong&gt;whoami /groups&lt;/strong&gt;.&amp;nbsp; If it is not found, the script uses the elevate command to launch a new instance of cmd.exe, changes the directory to the script directory, and re-launches itself with the same arguments.&lt;/p&gt;
&lt;p&gt;In order the make the script even more self contained (i.e. requiring no additional files) I created another version of this script (&lt;strong&gt;RelaunchElevated_EmbeddedScripts.cmd&lt;/strong&gt; in the download below) that creates elevate.cmd and elevate.vbs in %Temp% on the fly when it is run, uses them from there, and then deletes them after they are used.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;- Michael Murgolo, &lt;/b&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/strong&gt;&lt;a href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;strong&gt;Terms of Use&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3339227" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>UAC, Logon Scripts, and the Launchapp.wsf workaround</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2010/05/25/uac-logon-scripts-and-the-launchapp-wsf-workaround.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="3088" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-33-31-89/Launchapp.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2010/05/25/uac-logon-scripts-and-the-launchapp-wsf-workaround.aspx</id><published>2010-05-25T13:40:00Z</published><updated>2010-05-25T13:40:00Z</updated><content type="html">&lt;p&gt;When UAC is enabled on Windows Vista and higher, logon scripts that map network drives do not appear to work for users who are administrators on their computer.&amp;nbsp; This is described in the &lt;em&gt;Group Policy Scripts can fail due to User Account Control&lt;/em&gt; section of this TechNet article:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Deploying Group Policy Using Windows Vista &lt;br /&gt;&lt;a href="http://technet.microsoft.com/en-us/library/cc766208(WS.10).aspx" title="http://technet.microsoft.com/en-us/library/cc766208(WS.10).aspx"&gt;http://technet.microsoft.com/en-us/library/cc766208(WS.10).aspx&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This happens because logon scripts run with an administrative user&amp;rsquo;s full token.&amp;nbsp; The desktop then loads with the user&amp;rsquo;s limited token.&amp;nbsp; The split token sessions do not share the view of network resources, so the mapped drives are not visible when the desktop loads.&amp;nbsp; The workaround in the article above involves using a wrapper script, &lt;strong&gt;Launchapp.wsf&lt;/strong&gt;, as the logon script.&amp;nbsp; This deletes and recreates a scheduled task to launch the real logon script when the scheduled task is created.&amp;nbsp; (The schedule trigger is whenever the scheduled task is created or changed.)&amp;nbsp; This scheduled task is set to run as the logged on user and will launch in the limited token session.&amp;nbsp; This will allow the drives to be visible to the user in the limited token session.&lt;/p&gt;
&lt;p&gt;Unfortunately, an recent customer case pointed out an issue with using &lt;strong&gt;Launchapp.wsf&lt;/strong&gt;.&amp;nbsp; Launching a logon script in this way can cause the logon script to fail on&amp;nbsp;shared computers, especially on machines where users who are administrators share the machine with users who are standard users.&amp;nbsp; After an administrative user logs on and off, standard users will not have the permissions necessary to delete the schedule task and the script will fail.&lt;/p&gt;
&lt;p&gt;To work around this issue, I have created a new version of &lt;strong&gt;Launchapp.wsf&lt;/strong&gt; (attached below).&amp;nbsp; I took the existing version of &lt;strong&gt;Launchapp.wsf&lt;/strong&gt; and combined it with code from John Howard&amp;rsquo;s blog (&lt;a href="http://blogs.technet.com/jhoward/archive/2008/11/19/how-to-detect-uac-elevation-from-vbscript.aspx"&gt;http://blogs.technet.com/jhoward/archive/2008/11/19/how-to-detect-uac-elevation-from-vbscript.aspx&lt;/a&gt;).&amp;nbsp; If this version of &lt;strong&gt;Launchapp.wsf&lt;/strong&gt; detects it is running elevated, it deletes/creates the scheduled task as the original did.&amp;nbsp; If it is not running elevated, it simply launches the app or script passed on the command line directly.&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;- Michael Murgolo, &lt;/b&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/strong&gt;&lt;a href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;strong&gt;Terms of Use&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3333189" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Scripting PowerToys for Windows 64-bit</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2010/05/08/scripting-powertoys-for-windows-64-bit.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="25944" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-33-13-23/Scripting-PowerToys-for-Windows-64_2D00_bit.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2010/05/08/scripting-powertoys-for-windows-64-bit.aspx</id><published>2010-05-08T21:29:00Z</published><updated>2010-05-08T21:29:00Z</updated><content type="html">&lt;P&gt;Moving to a 64-bit version of Windows allows Windows and 64-bit applications to take advantage of greater than 4 gigabytes of physical memory.&amp;nbsp; 64-bit Windows also includes an x86 emulator that allows 32-bit Windows-based applications to run seamlessly on 64-bit Windows.&lt;/P&gt;
&lt;P&gt;However, running 64-bit Windows has implications when running some scripts.&amp;nbsp; Because the default scripting environments on 64-bit Windows (CMD shell, Windows Script Host, and Windows PowerShell) are themselves 64-bit, scripts that need to interact with 32-bit software or COM components can experience issues when run with the default scripting environments.&lt;/P&gt;
&lt;P&gt;For example, the sample VBScript below lists all the actions that can be executed with the System Center Configuration Manager 2007 Client software.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;Set oCPAppletMgr = CreateObject("CPApplet.CPAppletMgr") &lt;BR&gt;Set oClientActions = oCPAppletMgr.GetClientActions() &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New"&gt;For Each oClientAction In oClientActions &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WScript.Echo oClientAction.Name &lt;BR&gt;Next&lt;/FONT&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;However, because the ConfigMgr 2007 client software is still only 32-bit even when installed on 64-bit Windows, running the script above fails.&amp;nbsp; This happens because the 64-bit Windows Script Host (cscript.exe/wscript.exe) cannot load the 32-bit CPApplet.CPAppletMgr COM object.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_6.png" target=_blank mce_href="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_6.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_thumb_2.png" width=244 height=125 mce_src="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_thumb_2.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;To run this successfully requires using the 32-bit Windows Script Host.&amp;nbsp; One way to do this is to start a 32-bit CMD shell (C:\Windows\SysWOW64\cmd.exe) and then run the script using cscript.exe.&amp;nbsp; This will run the 32-bit version of cscript.exe and the script will run successfully.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_4.png" target=_blank mce_href="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_4.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_thumb_1.png" width=244 height=125 mce_src="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/PowerToysfor64bitWindowsPart1_E527/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;So in order to make is simpler to create and run scripts using the 32-bit scripting environments on 64-bit Windows, I’ve developed a few PowerToys.&amp;nbsp; &lt;EM&gt;CMD Prompt Here 32-bit&lt;/EM&gt; and &lt;EM&gt;PowerShell Prompt Here 32-bit&lt;/EM&gt; (and their “&lt;EM&gt;as Administrator&lt;/EM&gt;” counterparts) can be used to right click on a drive or folder in Explorer and start the 32-bit version at that location.&amp;nbsp; These are installed using the INF files &lt;STRONG&gt;CmdHere32bit.inf&lt;/STRONG&gt;, &lt;STRONG&gt;CmdHereAsAdmin32bit&lt;/STRONG&gt;, &lt;STRONG&gt;PowerShellHere32bit.inf&lt;/STRONG&gt;, and &lt;STRONG&gt;PowerShellHereAsAdmin32bit.inf&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Explore as 32-bit&lt;/EM&gt; and &lt;EM&gt;Explore as Administrator 32-bit&lt;/EM&gt; work similarly to the &lt;EM&gt;Explore as Administrator&lt;/EM&gt; PowerToy from my &lt;A href="http://blogs.technet.com/elevationpowertoys/archive/2009/11/20/explore-as-administrator-powertoy.aspx" target=_blank mce_href="http://blogs.technet.com/elevationpowertoys/archive/2009/11/20/explore-as-administrator-powertoy.aspx"&gt;20-Nov-2009 post&lt;/A&gt;.&amp;nbsp; It requires installing a third party 32-bit file manager program.&amp;nbsp; For this example I again use Explorer++ (&lt;A href="http://explorerplusplus.com/" mce_href="http://explorerplusplus.com/"&gt;http://explorerplusplus.com/&lt;/A&gt;).&amp;nbsp; I have provided in the attachment an INF file, &lt;STRONG&gt;Explorer++_WOW64.inf&lt;/STRONG&gt;, that will install the 32-bit version of Explorer++ into \Program Files (x86)\Explorer++.&amp;nbsp; If you would like to try these PowerToys with Explorer++, place &lt;STRONG&gt;&lt;STRONG&gt;Explorer++_WOW64&lt;/STRONG&gt;.inf&lt;/STRONG&gt; into the folder with the 32-bit Explorer++ extracted files.&amp;nbsp; Then right click on &lt;STRONG&gt;&lt;STRONG&gt;Explorer++_WOW64&lt;/STRONG&gt;.inf&lt;/STRONG&gt; and select Install.&amp;nbsp; This will install Explorer++ into a \Program Files (x86)\Explorer++ folder and add an &lt;EM&gt;Explorer++ 32-bit&lt;/EM&gt; program group to the Start Menu.&lt;/P&gt;
&lt;P&gt;If you would like to use this PowerToy with another 32-bit file management program, simply install that program and find the full path to the executable file. Then edit &lt;STRONG&gt;ExploreAs32bit.inf&lt;/STRONG&gt; and &lt;STRONG&gt;ExploreAsAdmin32bit.inf&lt;/STRONG&gt; and replace both instances of the following path with the path to the desired executable:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;%ProgramFiles(x86)%\Explorer++\Explorer++.exe&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Then install the modifed INF Files.&lt;/P&gt;
&lt;P&gt;For more information on running 32-bit applications and scripts on 64-bit Windows, read the following MSDN articles.&lt;/P&gt;
&lt;P&gt;Running 32-bit Applications &lt;BR&gt;&lt;A title=http://msdn.microsoft.com/en-us/library/aa384249(v=VS.85).aspx href="http://msdn.microsoft.com/en-us/library/aa384249(v=VS.85).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa384249(v=VS.85).aspx"&gt;http://msdn.microsoft.com/en-us/library/aa384249(v=VS.85).aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Requesting WMI Data on a 64-bit Platform &lt;BR&gt;&lt;A title=http://msdn.microsoft.com/en-us/library/aa393067(VS.85).aspx href="http://msdn.microsoft.com/en-us/library/aa393067(VS.85).aspx" mce_href="http://msdn.microsoft.com/en-us/library/aa393067(VS.85).aspx"&gt;http://msdn.microsoft.com/en-us/library/aa393067(VS.85).aspx&lt;/A&gt;&lt;/P&gt;
&lt;TABLE border=2 cellSpacing=0 cellPadding=2 width=691&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=687&gt;&lt;STRONG&gt;Important Note:&lt;/STRONG&gt; For these PowerToys to work, the Elevate Command PowerToy from &lt;A href="http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx" mce_href="http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx"&gt;here&lt;/A&gt; must also be installed.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;&lt;I&gt;&lt;B&gt;- Michael Murgolo, &lt;/B&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/STRONG&gt;&lt;A href="http://www.microsoft.com/info/cpyright.mspx" mce_href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;STRONG&gt;Terms of Use&lt;/STRONG&gt;&lt;/A&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3331323" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Updated Sysinternals Suite Installer</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2010/02/26/updated-sysinternals-suite-installer.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="3316" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-31-57-31/Install_5F00_SysinternalsSuite.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2010/02/26/updated-sysinternals-suite-installer.aspx</id><published>2010-02-26T23:39:00Z</published><updated>2010-02-26T23:39:00Z</updated><content type="html">&lt;p&gt;In my &lt;a href="http://technet.microsoft.com/en-us/magazine/2008.06.elevation.aspx"&gt;June 2008 TechNet Magazine article&lt;/a&gt; I provided an INF file for installing the &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb842062.aspx" target="_blank"&gt;Sysinternals Suite&lt;/a&gt;, which is used by the CMD and PowerShell Prompt Here as System PowerToys.&amp;#160; It installs the Suite into the &lt;em&gt;Program Files\Sysinternals Suite&lt;/em&gt; folder, creates Start Menu shortcuts for the Suite's graphical tools/help files and registers the ShellRunas tool.&amp;#160; It also adds an entry into Add/Remove Programs so that the Suite can be uninstalled.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/UpdatedSysinternalsSuiteInstaller_10676/image_2.png" target="_blank"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/UpdatedSysinternalsSuiteInstaller_10676/image_thumb.png" width="126" height="244" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I recently had the need to reinstall the Sysinternals Suite on my computer.&amp;#160; However, I realized that I needed to update the installer due to changes in the mix of tools included in the Suite.&amp;#160; I’ve posted the updated &lt;strong&gt;Install_SysinternalsSuite.inf&lt;/strong&gt; file in the attached Zip file.&amp;#160; Follow the instructions in the June 2008 TechNet Magazine article for using it.&lt;/p&gt;  &lt;p&gt;I will try to update this more frequently in the future as the content of the Sysinternals Suite changes.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;&lt;b&gt;- Michael Murgolo, &lt;/b&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Disclaimer: The information on this site is provided &amp;quot;AS IS&amp;quot; with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/strong&gt;&lt;a href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;strong&gt;Terms of Use&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3315731" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Elevation PowerToys for the Windows PowerShell Integrated Scripting Environment (ISE)</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2010/01/01/elevation-powertoys-for-the-windows-powershell-integrated-scripting-environment-ise.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="17908" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-30-33-03/PowerShellISEPowertoys.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2010/01/01/elevation-powertoys-for-the-windows-powershell-integrated-scripting-environment-ise.aspx</id><published>2010-01-01T14:59:00Z</published><updated>2010-01-01T14:59:00Z</updated><content type="html">&lt;p&gt;Windows PowerShell 2.0 includes an Integrated Scripting Environment (ISE).&amp;#160; This application enables you to write, run, and test scripts and modules in a graphical environment.&amp;#160; It has features such as syntax-coloring, tab completion, visual debugging, Unicode-compliance, context-sensitive Help, and a tabbed/multi-pane user interface.&lt;/p&gt;  &lt;p&gt;Windows PowerShell 2.0 adds an Edit command to the context menu options for Powershell script, module, and data file types (.ps1, .psm1, and .psd1 extensions).&amp;#160; However, if you need to edit/test a script as an Administrator you would need to right click on the start menu icon for the ISE, run it as administrator, open the script in the editor, and navigate the Command Pane to the script’s folder to run it.&amp;#160; So I created an &lt;em&gt;Edit as Administrator&lt;/em&gt; PowerToy for these file types to shortcut this process.&amp;#160; Install &lt;strong&gt;PowerShellEditAsAdmin.inf&lt;/strong&gt; to use it.&lt;/p&gt;  &lt;p&gt;The other two PowerToys add context menu options (&lt;em&gt;PowerShell ISE Here&lt;/em&gt; and &lt;em&gt;PowerShell ISE Here as Administrator&lt;/em&gt;) to folders and drives to open the PowerShell ISE with the selected folder or drive as the ISE current directory.&amp;#160; Install &lt;strong&gt;PowerShellISEHere.inf&lt;/strong&gt; and &lt;strong&gt;PowerShellISEHereAsAdmin.inf&lt;/strong&gt; to use these.&lt;/p&gt;  &lt;p&gt;When you use the “as Administrator” versions of these PowerToys, you will see the elevation prompt will be for Windows Command Processor (cmd.exe).&amp;#160; This happens because I am using the Start command that is built into cmd.exe to launch the ISE and set the working directory.&amp;#160; I initially attempted to do this with the new Start-Process PowerShell cmdlet.&amp;#160; However, I hit two issues that prevented me from using it.&amp;#160; Start-Process allows you to use the “runas” verb with the –Verb switch to start a process elevated.&amp;#160; Unfortunately, if you use the “runas” verb then the –WorkingDirectory switch does not work.&amp;#160; So then I tried elevating powershell.exe first and then using Start-Process.&amp;#160; Unfortunately, passing in the Start-Process cmdlet with the –Command switch kept stripping out the double quotes causing the –WorkingDirectory path to error when it contained a space in the path.&amp;#160; If anyone out there can figure this out, please post the solution back as a comment.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;table border="2" cellspacing="0" cellpadding="2" width="683"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="679"&gt;&lt;strong&gt;Important Note:&lt;/strong&gt; For these PowerToys to work, the Elevate Command PowerToy from &lt;a href="http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx"&gt;here&lt;/a&gt; must also be installed.&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;&lt;b&gt;- Michael Murgolo, &lt;/b&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Disclaimer: The information on this site is provided &amp;quot;AS IS&amp;quot; with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/strong&gt;&lt;a href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;strong&gt;Terms of Use&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3303303" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Elevation Gadget 2.0</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2009/12/17/elevation-gadget-2-0.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="22165" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-30-12-66/Elevation.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2009/12/17/elevation-gadget-2-0.aspx</id><published>2009-12-17T22:38:00Z</published><updated>2009-12-17T22:38:00Z</updated><content type="html">&lt;p&gt;In my &lt;a href="http://technet.microsoft.com/en-us/magazine/2008.06.elevation.aspx" target="_blank"&gt;June 2008 TechNet Magazine article&lt;/a&gt; I introduced the Elevation Gadget.&amp;#160; This Windows Sidebar Gadget functioned as drag and drop target to elevate programs, scripts, etc.&amp;#160; Version 2 sports an updated look and can now be enlarged (enlarges when undocked on Windows Vista, enlarges via the Size control on Windows 7). However, the biggest change is the addition of a command box.&amp;#160; Below are a few screen shots.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/ElevationGadget2.0_84C5/GadgetSmall_1.png" target="_blank"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="GadgetSmall" border="0" alt="GadgetSmall" src="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/ElevationGadget2.0_84C5/GadgetSmall_thumb_1.png" width="130" height="100" /&gt;&lt;/a&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;a href="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/ElevationGadget2.0_84C5/GadgetLargeCmd.png" target="_blank"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="GadgetLargeCmd" border="0" alt="GadgetLargeCmd" src="http://blogs.technet.com/blogfiles/elevationpowertoys/WindowsLiveWriter/ElevationGadget2.0_84C5/GadgetLargeCmd_thumb.png" width="260" height="100" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You can type directly into the command box.&amp;#160; You can also drag a file to the command box and the path to the file will appear there.&amp;#160; To execute the command, press Enter or click on the Elevation Arrow graphic.&amp;#160; The command box has a 100 line history buffer.&amp;#160; You can cycle through the items in the history using the Up and Down Arrow keys.&amp;#160; To clear the command box, hit the Escape key.&lt;/p&gt;  &lt;p&gt;Finally, if you have the &lt;a href="http://blogs.technet.com/elevationpowertoys/archive/2009/11/20/explore-as-administrator-powertoy.aspx" target="_blank"&gt;Explore as Administrator PowerToy&lt;/a&gt; installed you can type:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;explore &amp;quot;&amp;lt;drive or folder path&amp;gt;&amp;quot;&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;to launch the file manager application configured for the Explore as Administrator PowerToy focused on the drive or folder path specified on the command line.&lt;/p&gt;  &lt;p&gt;To install the Elevation Gadget 2.0, download Elevate.zip below and rename the file Elevate.gadget.&amp;#160; After renaming, double click on the file to install it.&amp;#160; (If you have the older version installed.&amp;#160; You should uninstall it before installing the new version.)&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;&lt;b&gt;- Michael Murgolo, &lt;/b&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Disclaimer: The information on this site is provided &amp;quot;AS IS&amp;quot; with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/strong&gt;&lt;a href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;strong&gt;Terms of Use&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3301266" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Explore as Administrator PowerToy</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2009/11/20/explore-as-administrator-powertoy.aspx" /><link rel="enclosure" type="application/x-zip-compressed" length="16346" href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-29-54-43/ExploreAsAdmin.zip" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2009/11/20/explore-as-administrator-powertoy.aspx</id><published>2009-11-20T19:26:00Z</published><updated>2009-11-20T19:26:00Z</updated><content type="html">&lt;p&gt;Have you ever tried to use Windows Explorer to create a folder within or copy a file into a protected folder such a Program Files or Windows and had to deal with the confusing “File Operation” dialog box before you could complete your task.&amp;#160; This is one of the most confusing and poorly understood features of User Account Control.&lt;/p&gt;  &lt;p&gt;When running as a administrator with UAC enabled, your standard user token does not have write permissions to these protected folders.&amp;#160; Unfortunately, because Windows Explorer was not designed to run in multiple instances in the same desktop session, Windows cannot simply throw up a UAC prompt and then launch an elevated instance of Explorer.&amp;#160; Instead, you get one or more elevation prompts (if full-prompting is enabled) and Windows completes the operations using the full administrator token.&amp;#160; This can be annoying if you have to make repeated operations in these folders.&lt;/p&gt;  &lt;p&gt;So to work around this annoyance, I’ve created a new Explore as Administrator PowerToy.&amp;#160; Since this PowerToy cannot simply elevate Explorer, it requires that you install a third-party graphical file management program.&amp;#160; You can use almost any file management program you like as long as it will accept a folder path as a command line argument.&amp;#160; Let me illustrate what I mean by this with the program I like to use with the Explore as Administrator PowerToy, which is called Explorer++ (&lt;a title="http://explorerplusplus.com/" href="http://explorerplusplus.com/" mce_href="http://explorerplusplus.com/"&gt;http://explorerplusplus.com/&lt;/a&gt;).&amp;#160; Download the Zip file for Explorer++.&amp;#160; (Grab the 32-bit or 64-bit version that matches the version of Windows that you are running.)&amp;#160; Extract the files, you’ll see that Explorer++ is a single executable file.&amp;#160; Open a command prompt in the folder where you extracted the files and run the following command:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;Explorer++.exe C:\Windows&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;You will see that Explorer++.exe opened with the C:\Windows folder already selected.&lt;/p&gt;  &lt;p&gt;If you would like to try this PowerToy with Explorer++, place &lt;strong&gt;Explorer++.inf&lt;/strong&gt; included in the attachment for this post into the folder with the Explorer++ extracted files.&amp;#160; The right click on &lt;strong&gt;Explorer++.inf&lt;/strong&gt; and select Install.&amp;#160; This will install Explorer++ into a \Program Files\Explorer++ folder and add an Explorer++ program group to the Start Menu.&lt;/p&gt;  &lt;p&gt;You can then right click on the &lt;strong&gt;ExploreAsAdmin.inf&lt;/strong&gt; also included in the attachment for this post and select Install.&amp;#160; Once the PowerToy is installed, you will see an Explore as Administrator option when right clicking on drives and folders in Windows Explorer.&amp;#160; When you select this option it will start Explorer++ elevated focused on the selected drive or folder.&lt;/p&gt;  &lt;p&gt;If you would like to use this PowerToy with another file management program, simply install that program and find the full path to the executable file. Then edit &lt;strong&gt;ExploreAsAdmin.inf&lt;/strong&gt; and replace both instances of the following path with the path to the desired executable:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New"&gt;%ProgramFiles%\Explorer++\Explorer++.exe&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Then install the modifed &lt;strong&gt;ExploreAsAdmin.inf&lt;/strong&gt;.&lt;/p&gt;  &lt;table border="2" cellspacing="0" cellpadding="2" width="664"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="660"&gt;&lt;strong&gt;Important Note:&lt;/strong&gt; For this PowerToy to work, the Elevate Command PowerToy from &lt;a href="http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx" target="_blank"&gt;here&lt;/a&gt; must also be installed.&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;&lt;b&gt;- Michael Murgolo, &lt;/b&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Disclaimer: The information on this site is provided &amp;quot;AS IS&amp;quot; with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/strong&gt;&lt;a href="http://www.microsoft.com/info/cpyright.mspx" mce_href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;strong&gt;Terms of Use&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3295443" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Welcome to the Elevation PowerToys Blog</title><link rel="alternate" type="text/html" href="http://blogs.technet.com/b/elevationpowertoys/archive/2009/11/20/welcome-to-the-elevation-powertoys-blog.aspx" /><id>http://blogs.technet.com/b/elevationpowertoys/archive/2009/11/20/welcome-to-the-elevation-powertoys-blog.aspx</id><published>2009-11-20T18:47:00Z</published><updated>2009-11-20T18:47:00Z</updated><content type="html">&lt;P&gt;A while back I wrote two articles for TechNet Magazine describing a set of tools to work around a number of shortcomings when trying to elevate some types of tasks in Windows Vista and higher with User Account Control enabled.&amp;nbsp; You can find these articles here:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Utility Spotlight: Script Elevation PowerToys for Windows Vista &lt;BR&gt;&lt;A href="http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx" target=_blank mce_href="http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx"&gt;http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;New Elevation PowerToys for Windows Vista &lt;BR&gt;&lt;A href="http://technet.microsoft.com/en-us/magazine/2008.06.elevation.aspx" target=_blank mce_href="http://technet.microsoft.com/en-us/magazine/2008.06.elevation.aspx"&gt;http://technet.microsoft.com/en-us/magazine/2008.06.elevation.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Since then I have been working on several Elevation PowerToys but have not had the time to sit down and create another large article and tools download.&amp;nbsp; My experience with blogging on the &lt;A href="http://blogs.technet.com/deploymentguys/" target=_blank mce_href="http://blogs.technet.com/deploymentguys/"&gt;Deployment Guys blog&lt;/A&gt; made me realize that the best way to get these new tools to you would be to create a new blog where I could write about and host the new Elevation PowerToys.&amp;nbsp; It would allow me break up the work by posting about one tool at a time and take feedback on them as well.&lt;/P&gt;
&lt;P&gt;So welcome to the blog and I hope you find the content to come useful and enlightening.&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;B&gt;- Michael Murgolo, &lt;/B&gt;Senior Consultant, Microsoft Services, U.S. East Region.&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Disclaimer: The information on this site is provided "AS IS" with no warranties, confers no rights, and is not supported by the authors or Microsoft Corporation. Use of included script samples are subject to the terms specified in the &lt;/STRONG&gt;&lt;A href="http://www.microsoft.com/info/cpyright.mspx" mce_href="http://www.microsoft.com/info/cpyright.mspx"&gt;&lt;STRONG&gt;Terms of Use&lt;/STRONG&gt;&lt;/A&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3295422" width="1" height="1"&gt;</content><author><name>Michael Murgolo</name><uri>http://blogs.technet.com/murgolom/ProfileUrlRedirect.ashx</uri></author></entry></feed>