<div class="gmail_quote">On Wed, Nov 17, 2010 at 4:31 PM, Jon Rhoades <span dir="ltr"><<a href="mailto:jrhoades@svi.edu.au">jrhoades@svi.edu.au</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div style="font-family:Arial;font-size:10pt;color:#000000">Hi,<br><br>We need to force encryption between Outlook & Exchange as it's being updated to 2010.  The recommended way is to apply a Group policy, but since we have Samba...<br>
<br>The registry key we need to set is:<br>HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\11.0\Outlook\RPC\EnableRPCEncryption with a DWORD value of 1.  <br><br>I would normally do something like:<br><install cmd='reg add HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\11.0\Outlook\RPC /v "EnableRPCEncryption" /d "1" /t REG_DWORD /f' /><br>
<br>But of course this is applied to the WPKG admin account's HKCU registry hive, not the user(s).<br><br>Is there a way of adding it to all users registry hive?<br><br></div></div></blockquote><div><br></div><div>I would recommend using Active Setup (<a href="http://en.wikipedia.org/wiki/Active_Setup">http://en.wikipedia.org/wiki/Active_Setup</a>).</div>
<div><br></div><div>These two install commands should get you on the right track, but I haven't tested them at all.  </div><div><br></div><div><font class="Apple-style-span" face="Arial"><install cmd='reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\wpkgEnableOutlookEncryption /v "Version" /d "1" /t REG_SZ /f' /></font></div>
<div><font class="Apple-style-span" face="Arial"><br></font></div><div><font class="Apple-style-span" face="Arial"><install cmd='reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\wpkgEnableOutlookEncryption /v "StubPath" /d "<span class="Apple-style-span" style="font-family: arial; "><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; ">reg add HKEY_CURRENT_USER\Software\</span><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; "></span><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; ">Policies\Microsoft\Office\11.</span><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; "></span><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; ">0\Outlook\RPC /v EnableRPCEncryption</span></span> /t REG_SZ /f" /></font></div>
<div><br></div><div><br></div><div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; "><span class="Apple-style-span" style="font-family: arial; font-size: small; ">Once the two reg values are set by wpkg, the command in StubPath will be run once for each user that logs into the workstation (thus setting the appropriate value in HKCU).  If you ever need to change it back, you can just set "Version" to "2" and change "StubPath" to either delete or update the value as needed.</span></span></div>
<div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; "><span class="Apple-style-span" style="font-family: arial; font-size: small; "><br></span></span></div><div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; "><span class="Apple-style-span" style="font-family: arial; font-size: small; ">If you have problems with it running reg.exe in this manner, you can put that reg command into a bat file, have wpkg copy it to the workstation, and then point StubPath to that location (e.g. "c:\windows\</span></span><span class="Apple-style-span" style="font-family: Arial; ">wpkgEnableOutlookEncryption.bat").</span></div>
<div><span class="Apple-style-span" style="font-family: Arial; "><br></span></div><div><span class="Apple-style-span" style="font-family: Arial; ">Cheers,</span></div><div><span class="Apple-style-span" style="font-family: Arial; "><br>
</span></div><div><span class="Apple-style-span" style="font-family: Arial; ">Troy</span></div><div><span class="Apple-style-span" style="font-family: Arial; "><br></span></div><div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; "><span class="Apple-style-span" style="font-family: arial; font-size: small; "><br>
</span></span></div></div>