<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>JustinFortmann</title>
	<atom:link href="http://justinfortmann.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://justinfortmann.wordpress.com</link>
	<description>IT Blog Site</description>
	<lastBuildDate>Wed, 21 Dec 2011 19:16:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='justinfortmann.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>JustinFortmann</title>
		<link>http://justinfortmann.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://justinfortmann.wordpress.com/osd.xml" title="JustinFortmann" />
	<atom:link rel='hub' href='http://justinfortmann.wordpress.com/?pushpress=hub'/>
		<item>
		<title>VBscript for Auto-Creating Outlook Email Signatures using Active Directory</title>
		<link>http://justinfortmann.wordpress.com/2011/09/26/vbscript-for-auto-creating-outlook-email-signatures-using-active-directory/</link>
		<comments>http://justinfortmann.wordpress.com/2011/09/26/vbscript-for-auto-creating-outlook-email-signatures-using-active-directory/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 10:21:59 +0000</pubDate>
		<dc:creator>Justin Fortmann</dc:creator>
				<category><![CDATA[IT - Technical]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Email Signature]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[VBscript]]></category>

		<guid isPermaLink="false">http://justinfortmann.wordpress.com/?p=57</guid>
		<description><![CDATA[Here is the VBscript code to do so. Tweak the formatting and contents of signature template below as needed Create the VBscript file (.vbs), deploy it via an Active Directory group policy, and let it do all the work for you. &#8216; &#8230; <a href="http://justinfortmann.wordpress.com/2011/09/26/vbscript-for-auto-creating-outlook-email-signatures-using-active-directory/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=57&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is the VBscript code to do so. Tweak the formatting and contents of signature template below as needed <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Create the VBscript file (.vbs), deploy it via an Active Directory group policy, and let it do all the work for you.</p>
<h5 style="padding-left:30px;"><strong>&#8216; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</strong><br />
<strong>&#8216; DISABLE STATIONERY</strong><br />
<strong>&#8216; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</strong></h5>
<h5 style="padding-left:30px;"><strong>Dim WshShell</strong></h5>
<h5 style="padding-left:30px;"><strong>Set WshShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;)</strong></h5>
<h5 style="padding-left:30px;"><strong></strong> <strong>&#8217;2010 code<br />
</strong><strong>strPath = &#8220;HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\MailSettings\NewStationery&#8221;<br />
</strong><strong>wshshell.regwrite strPath, &#8220;&#8221;, &#8220;REG_EXPAND_SZ&#8221;</strong></h5>
<h5 style="padding-left:30px;"><strong>&#8217;2003 code</strong><br />
<strong>strPath = &#8220;HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\MailSettings\NewStationery&#8221;</strong><br />
<strong>wshshell.regwrite strPath, &#8220;&#8221;, &#8220;REG_EXPAND_SZ&#8221;</strong></h5>
<h5 style="padding-left:30px;"><strong>&#8216;This is the 2007 one</strong><br />
<strong>strPath=&#8221;HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Common\MailSettings\NewStationery&#8221;</strong><br />
<strong>wshshell.regwrite strPath, &#8220;&#8221;, &#8220;REG_EXPAND_SZ&#8221;</strong></h5>
<h5 style="padding-left:30px;"><strong>&#8216;This is the 2000 code<br />
</strong><strong>strPath = &#8220;HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Common\MailSettings\NewStationery&#8221;</strong><br />
<strong>wshshell.regwrite strPath, &#8220;&#8221;, &#8220;REG_EXPAND_SZ&#8221;</strong></h5>
<h5 style="padding-left:30px;"><strong>&#8216; &#8212;&#8212;&#8212;&#8212;&#8212;</strong><br />
<strong>&#8216; SETUP SIGNATURE</strong><br />
<strong>&#8216; &#8212;&#8212;&#8212;&#8212;&#8212;</strong></h5>
<h5 style="padding-left:30px;"><strong>Set objSysInfo = CreateObject(&#8220;ADSystemInfo&#8221;)</strong></h5>
<h5 style="padding-left:30px;"><strong>strUser = objSysInfo.UserName</strong><br />
<strong>Set objUser = GetObject(&#8220;LDAP://&#8221; &amp; strUser)</strong></h5>
<h5 style="padding-left:30px;"><strong>strName = objUser.FullName</strong><br />
<strong>strCompany = objUser.Company</strong><br />
<strong>strPhone = objUser.telephoneNumber</strong><br />
<strong>strMobile = objUser.Mobile</strong><br />
<strong>strFax = objUser.facsimileTelephoneNumber</strong></h5>
<h5 style="padding-left:30px;"><strong>Set objWord = CreateObject(&#8220;Word.Application&#8221;)</strong></h5>
<h5 style="padding-left:30px;"><strong>Set objDoc = objWord.Documents.Add()</strong><br />
<strong>Set objSelection = objWord.Selection</strong></h5>
<h5 style="padding-left:30px;"><strong>Set objEmailOptions = objWord.EmailOptions</strong><br />
<strong>Set objSignatureObject = objEmailOptions.EmailSignature</strong><br />
<strong>Set objSignatureEntries = objSignatureObject.EmailSignatureEntries</strong></h5>
<h5 style="padding-left:30px;"><strong>objSelection.Font.Name = &#8220;Arial&#8221;</strong><br />
<strong>objSelection.Font.Size = &#8220;10&#8243;</strong><br />
<strong>objSelection.Font.Color = vbBlack</strong></h5>
<h5 style="padding-left:30px;"><strong>objSelection.Font.Bold = True</strong><br />
<strong>objSelection.TypeText UCase(strName)</strong><br />
<strong>objSelection.TypeText Chr(11)</strong><br />
<strong>objSelection.TypeText UCase(strCompany)</strong><br />
<strong>objSelection.Font.Bold = False</strong><br />
<strong>objSelection.TypeText Chr(11)</strong></h5>
<h5 style="padding-left:30px;"><strong>objSelection.Font.Name = &#8220;Arial&#8221;</strong><br />
<strong>objSelection.Font.Size = &#8220;9&#8243;</strong></h5>
<h5 style="padding-left:30px;"><strong>If strMobile &lt;&gt; &#8220;&#8221; Then</strong><br />
<strong>   objSelection.TypeText &#8220;Mobile: &#8221; + strMobile + &#8220;  Tel: &#8221; + strPhone</strong><br />
<strong>Else</strong><br />
<strong>   objSelection.TypeText &#8220;Tel: &#8221; + strPhone</strong><br />
<strong>End If</strong></h5>
<h5 style="padding-left:30px;"><strong>If strFax &lt;&gt; &#8220;&#8221; Then</strong><br />
<strong>   objSelection.TypeText Chr(11)</strong><br />
<strong>   objSelection.TypeText &#8220;Fax: &#8221; + strFax</strong><br />
<strong>End If</strong><br />
<strong>objSelection.TypeText Chr(11)</strong></h5>
<h5 style="padding-left:30px;"><strong>objSelection.TypeText &#8220;Address 1&#8243;</strong><br />
<strong>objSelection.TypeText Chr(11)</strong><br />
<strong>objSelection.TypeText &#8220;Address 2&#8243;</strong><br />
<strong>objSelection.TypeText Chr(11)</strong></h5>
<h5 style="padding-left:30px;"><strong>&#8216; Add a picture</strong><br />
<strong>objSelection.TypeParagraph()</strong><br />
<strong>Set objShape = objSelection.InlineShapes.AddPicture(&#8220;<a href="//\\server1\picture.jpg">\\server1\picture.jpg</a>&#8220;)</strong><br />
<strong>objSelection.TypeText Chr(11)</strong></h5>
<h5 style="padding-left:30px;"><strong>objSelection.Font.Name = &#8220;Arial&#8221;</strong><br />
<strong>objSelection.Font.Size = &#8220;8&#8243;</strong></h5>
<h5 style="padding-left:30px;"><strong>&#8216; Add a hyperlink to disclaimer</strong><br />
<strong>objSelection.TypeText &#8220;This email and all its contents are subject to the following disclaimer; &#8220;</strong><br />
<strong>objSelection.Hyperlinks.Add objSelection.Range, &#8220;<a href="http://www.company.com/disclaimer.txt">http://www.company.com/disclaimer.txt</a>&#8220;, &#8220;&#8221;, &#8220;&#8221;, &#8220;<a href="http://www.company.com/disclaimer.txt&quot;Set">http://www.company.com/disclaimer.txt&#8221;</a></strong></h5>
<h5 style="padding-left:30px;"><strong>Set</strong></h5>
<h5 style="padding-left:30px;"><strong>objSelection = objDoc.Range(objSelection.End-40,objSelection.End)</strong><br />
<strong>objSelection.Font.Name = &#8220;Arial&#8221;</strong><br />
<strong>objSelection.Font.Size = 8</strong></h5>
<h5 style="padding-left:30px;"><strong>Set objSelection = objDoc.Range()</strong></h5>
<h5 style="padding-left:30px;"><strong>objSignatureEntries.Add &#8220;AD Signature&#8221;, objSelection</strong><br />
<strong>objSignatureObject.NewMessageSignature = &#8220;AD Signature&#8221;</strong><br />
<strong>&#8216; objSignatureObject.ReplyMessageSignature = &#8220;AD Signature&#8221;</strong></h5>
<h5 style="padding-left:30px;"><strong>objDoc.Saved = True</strong><br />
<strong>objWord.Quit</strong></h5>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinfortmann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinfortmann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinfortmann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinfortmann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justinfortmann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justinfortmann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justinfortmann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justinfortmann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinfortmann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinfortmann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinfortmann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinfortmann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinfortmann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinfortmann.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=57&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justinfortmann.wordpress.com/2011/09/26/vbscript-for-auto-creating-outlook-email-signatures-using-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f5e0549f656874bbd26e2724445d55f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justinfortmann</media:title>
		</media:content>
	</item>
		<item>
		<title>Build a Windows 7 ImageX Dual-Architecture Capture USB Drive</title>
		<link>http://justinfortmann.wordpress.com/2011/08/22/build-a-windows-7-imagex-dual-architecture-capture-usb-drive/</link>
		<comments>http://justinfortmann.wordpress.com/2011/08/22/build-a-windows-7-imagex-dual-architecture-capture-usb-drive/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 13:00:04 +0000</pubDate>
		<dc:creator>Justin Fortmann</dc:creator>
				<category><![CDATA[IT - Technical]]></category>
		<category><![CDATA[Capture]]></category>
		<category><![CDATA[ImageX]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[UFD]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[WAIK]]></category>
		<category><![CDATA[WDS]]></category>
		<category><![CDATA[x64]]></category>
		<category><![CDATA[x86]]></category>

		<guid isPermaLink="false">http://justinfortmann.wordpress.com/?p=32</guid>
		<description><![CDATA[Purpose The following instructions are for creating a USB flash drive with the ImageX capture utility on it, for capturing both x86 and x64 reference PCs. It saves having to carry around two separate flash drives. Steps On the machine &#8230; <a href="http://justinfortmann.wordpress.com/2011/08/22/build-a-windows-7-imagex-dual-architecture-capture-usb-drive/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=32&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration:underline;">Purpose</span></p>
<p>The following instructions are for creating a USB flash drive with the ImageX capture utility on it, for capturing both x86 and x64 reference PCs. It saves having to carry around two separate flash drives.</p>
<p><span style="text-decoration:underline;">Steps</span></p>
<p>On the machine with <a href="http://www.microsoft.com/download/en/details.aspx?id=5753" target="_blank">WAIK7</a> installed, do the following:<br />
1. Click Start, point to All Programs, and then click Microsoft Windows AIK.<br />
2. Right-click Deployment Tools Command Prompt, and then click Run as administrator.<br />
3. Click Yes to open the Deployment Tools Command Prompt window with elevated permissions.<br />
4. In the Deployment Tools Command Prompt window, execute the following:</p>
<p style="padding-left:30px;">a. Type <strong>copype.cmd x86 C:\winpe_x86</strong> and then press ENTER.<br />
b. Type <strong>copype.cmd amd64 C:\winpe_amd64</strong> and then press ENTER.</p>
<p>5. In the Deployment Tools Command Prompt window, perform the following tasks:</p>
<p style="padding-left:30px;">a. Type <strong>copy C:\winpe_x86\winpe.wim C:\winpe_x86\ISO\sources\boot.wim</strong> and then press ENTER.<br />
b. Type <strong>copy C:\winpe_amd64\winpe.wim C:\winpe_amd64\ISO\sources\boot.wim</strong> and then press ENTER.</p>
<p>6. In the Deployment Tools Command Prompt window, perform the following tasks:</p>
<p style="padding-left:30px;">a. Type <strong>copy &#8220;C:\Program Files\Windows AIK\Tools\x86\ImageX.exe&#8221; C:\winpe_x86\ISO\</strong> and then press ENTER.<br />
b. Type <strong>copy &#8220;C:\Program Files\Windows AIK\Tools\amd64\ImageX.exe&#8221; C:\winpe_amd64\ISO\</strong> and then press ENTER.</p>
<p>7. Insert a USB flash drive into the computer.<br />
8. In the Deployment Tools Command Prompt window, type <strong>diskpart</strong>, and then press ENTER.<br />
9. Perform the following tasks to prepare the USB flash drive:</p>
<p style="padding-left:30px;">a. Type <strong>list disk</strong>, and then press ENTER.<br />
b. From the list of disks, identify the number of the USB flash drive. It is important that you identify the correct disk, as you will be formatting the disk. Make sure the size and free space match what you expect for the USB flash drive.<br />
c. Type <strong>select disk <em>number</em></strong>, where number is the disk number of the USB flash drive, and then press ENTER.<br />
d. Type <strong>clean</strong>, and then press ENTER.<br />
e. Type <strong>create partition primary</strong>, and then press ENTER.<br />
f. Type <strong>select partition 1</strong>, and then press ENTER.<br />
g. Type <strong>format fs=ntfs quick</strong>, and then press ENTER.<br />
h. Type <strong>active</strong>, and then press ENTER.<br />
i. Type <strong>exit</strong>, and then press ENTER.</p>
<p>10. In the Deployment Tools Command Prompt window</p>
<p style="padding-left:30px;">a. Type <strong>xcopy /s C:\winpe_amd64\iso\*.* D:\</strong>, where D is the drive letter of the USB flash drive, and then press ENTER.<br />
b. Type <strong>xcopy /s C:\winpe_x86\iso\sources D:\sourcesx86</strong>, where D is the drive letter of the USB flash drive, and then press ENTER</p>
<p>11. Now that the USB flash drive files are in place, the boot manager needs to be adjusted for the extra operating system (WinPE x86) in order to be able to boot it.</p>
<p style="padding-left:30px;">a. Type <strong>bcdedit /enum all /store D:\boot\bcd</strong>, where D is the drive letter of the USB flash drive, and take note of the DeviceID against the {default} boot loader’s “device” parameter (within the {} brackets).<br />
b. Type <strong>bcdedit /store D:\boot\bcd /set {bootmgr} displaybootmenu Yes</strong>, and then press ENTER.<br />
c. Type <strong>bcdedit /store D:\boot\bcd /set {bootmgr} timeout 30</strong>, and then press ENTER.<br />
d. Type <strong>bcdedit /store D:\boot\bcd /create /d &#8220;WinPE x86&#8243; /application osloader</strong>, and then press ENTER. Taking note of the {ID} that is returned as it will be required in the next steps.<br />
e. Type <strong>bcdedit /store D:\boot\bcd /set {<em>ID</em>} detecthal yes</strong>, replacing ID with the ID from step “d”, and then press ENTER.<br />
f. Type <strong>bcdedit /store D:\boot\bcd /set {<em>ID</em>} ems yes</strong>, and then press ENTER.<br />
g. Type <strong>bcdedit /store D:\boot\bcd /set {<em>ID</em>} winpe yes</strong>, and then press ENTER.<br />
h. Type <strong>bcdedit /store D:\boot\bcd /set {<em>ID</em>} device ramdisk=[boot]\sourcesx86\boot.wim,{<em>DeviceID</em>}</strong>, replacing DeviceID with the ID from step “a”, and then press ENTER.<br />
i. Type <strong>bcdedit /store D:\boot\bcd /set {<em>ID</em>} osdevice ramdisk=[boot]\sourcesx86\boot.wim,{<em>DeviceID</em>}</strong>, and then press ENTER.<br />
j. Type <strong>bcdedit /store D:\boot\bcd /set {<em>ID</em>} path \windows\system32\boot\winload.exe</strong>, and then press ENTER.<br />
k. Type <strong>bcdedit.exe /store D:\boot\bcd /displayorder {<em>ID</em>} /addlast</strong>, and then press ENTER.</p>
<p>The USB flash drive will now be ready to use. Boot from the USB, and you will be given the option to boot either WinPE x86 or WinPE x64. Select the architecture of the reference PC that you intend to capture, and then do the ImageX capture.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinfortmann.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinfortmann.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinfortmann.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinfortmann.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justinfortmann.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justinfortmann.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justinfortmann.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justinfortmann.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinfortmann.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinfortmann.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinfortmann.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinfortmann.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinfortmann.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinfortmann.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=32&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justinfortmann.wordpress.com/2011/08/22/build-a-windows-7-imagex-dual-architecture-capture-usb-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f5e0549f656874bbd26e2724445d55f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justinfortmann</media:title>
		</media:content>
	</item>
		<item>
		<title>AD Group Policy &#8211; Regional Options not being Applied</title>
		<link>http://justinfortmann.wordpress.com/2011/05/11/13/</link>
		<comments>http://justinfortmann.wordpress.com/2011/05/11/13/#comments</comments>
		<pubDate>Wed, 11 May 2011 07:41:32 +0000</pubDate>
		<dc:creator>Justin Fortmann</dc:creator>
				<category><![CDATA[IT - Technical]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[gpo]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[not applying]]></category>
		<category><![CDATA[regional]]></category>
		<category><![CDATA[regional options]]></category>
		<category><![CDATA[regional settings]]></category>

		<guid isPermaLink="false">http://justinfortmann.wordpress.com/?p=13</guid>
		<description><![CDATA[I’ve been scratching my head over this problem for a while now and finally came across the solution. Here it is&#8230; When creating a Group Policy (GPO) for Regional Settings, ie. User Configuration &#62; Preferences &#62; Control Panel Settings &#62; &#8230; <a href="http://justinfortmann.wordpress.com/2011/05/11/13/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=13&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve been scratching my head over this problem for a while now and finally came across the solution. Here it is&#8230;</p>
<p>When creating a Group Policy (GPO) for Regional Settings, ie. <strong>User Configuration &gt; Preferences &gt; Control Panel Settings &gt; Regional Options</strong>, there is an interesting behaviour that is not obvious unless you read about it before creating the GPO setting. The underlined in red options are options that will not be applied to users.</p>
<p><a href="http://justinfortmann.files.wordpress.com/2011/05/regionalops1.jpg"><img class="alignleft size-full wp-image-21" title="GPO Regional Options" src="http://justinfortmann.files.wordpress.com/2011/05/regionalops1.jpg?w=640" alt="GPO Regional Options"   /></a></p>
<p>By using Function key F5 through F8, you can toggle the settings on and off.</p>
<p>F5 – Enable all settings<br />
F6 – Enable setting where cursor is sitting<br />
F7 – Disable setting where cursor is sitting<br />
F8 – Disable all settings</p>
<p>The settings will underline green as you turn them on.</p>
<p>Hope this helps!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinfortmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinfortmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinfortmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinfortmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justinfortmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justinfortmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justinfortmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justinfortmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinfortmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinfortmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinfortmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinfortmann.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinfortmann.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinfortmann.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=13&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justinfortmann.wordpress.com/2011/05/11/13/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f5e0549f656874bbd26e2724445d55f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justinfortmann</media:title>
		</media:content>

		<media:content url="http://justinfortmann.files.wordpress.com/2011/05/regionalops1.jpg" medium="image">
			<media:title type="html">GPO Regional Options</media:title>
		</media:content>
	</item>
		<item>
		<title>Lync 2010 Server &#8211; Setting up support for BlackBerry Enterprise Server (BES) 5.02 Collaboration Service</title>
		<link>http://justinfortmann.wordpress.com/2011/02/23/lync-2010-server-setting-up-support-for-blackberry-enterprise-server-bes-5-02-collaboration-service/</link>
		<comments>http://justinfortmann.wordpress.com/2011/02/23/lync-2010-server-setting-up-support-for-blackberry-enterprise-server-bes-5-02-collaboration-service/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 06:03:31 +0000</pubDate>
		<dc:creator>Justin Fortmann</dc:creator>
				<category><![CDATA[IT - Technical]]></category>
		<category><![CDATA[BES]]></category>
		<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[OCS]]></category>

		<guid isPermaLink="false">http://justinfortmann.wordpress.com/?p=6</guid>
		<description><![CDATA[The following steps allow an organisation that wants to upgrade to Lync Server 2010 to do so, without breaking their BlackBerry Enterprise IM clients. In the past, the only way to support BlackBerry Enterprise IM in an OCS 2007 R2 &#8230; <a href="http://justinfortmann.wordpress.com/2011/02/23/lync-2010-server-setting-up-support-for-blackberry-enterprise-server-bes-5-02-collaboration-service/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=6&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The following steps allow an organisation that wants to upgrade to 			Lync Server 2010 to do so, without breaking their BlackBerry 			Enterprise IM clients.</p>
<p>In the past, the only way to support BlackBerry Enterprise IM in an 			OCS 2007 R2 environment has been to use a separate OCS 2007 R1 CWA 			(Communicator Web Access) server to provide the integration between 			BES and OCS. In the current scenario, it is still necessary to use 			an OCS 2007 R1 CWA server to make it work, until such a time as 			Research in Motion releases OCS 2007 R2 and Lync 2010 support within 			BES. It is not necessary to have any other 2007 servers, other than 			the 2007 R1 CWA server. It is also not necessary to have any 2007 			pools.</p>
<p>Note: The following steps assume that there are no 2007 pools or 			servers in place.</p>
<p>&nbsp;</p>
<p>Step 1:</p>
<p>Setup a new Lync Server 2010 topology with a new pool, publish it, 			and install the server.</p>
<p>Step 2:</p>
<p>Setup an OCS 2007 R1 CWA server on a separate server, and configure 			it with default settings.</p>
<p>Step 3:</p>
<p>Install OCSWMIBC.MSI from the Lync Server 2010 media DVD.</p>
<p>Step 4:</p>
<p>Run the “Merge 2007 or 2007 R2 Topology” wizard, accepting all the 			default options. Then check that the OCS 2007 R1 CWA server is under 			the “BackCompatSite\Trusted Application Servers” folder.</p>
<p>Step 5:</p>
<p>Publish the new topology.</p>
<p>Step 6:</p>
<p>Point the BES 5.02 collaboration service at the OCS 2007 R1 virtual 			web server, and restart this service.</p>
<p>&nbsp;</p>
<p>BlackBerry Enterprise IM clients should now be working!</p>
<p>For more detailed instructions on integrating OCS 2007 R1 with Lync 			Server 2010, please review the following procedure:</p>
<p><a href="http://www.ocspedia.com/fe/Lync_Server_2010_Merge_Topology.aspx?ArticleID=107" target="_blank"> http://www.ocspedia.com/fe/Lync_Server_2010_Merge_Topology.aspx?ArticleID=107</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/justinfortmann.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/justinfortmann.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/justinfortmann.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/justinfortmann.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/justinfortmann.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/justinfortmann.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/justinfortmann.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/justinfortmann.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/justinfortmann.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/justinfortmann.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/justinfortmann.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/justinfortmann.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/justinfortmann.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/justinfortmann.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=justinfortmann.wordpress.com&amp;blog=20346927&amp;post=6&amp;subd=justinfortmann&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://justinfortmann.wordpress.com/2011/02/23/lync-2010-server-setting-up-support-for-blackberry-enterprise-server-bes-5-02-collaboration-service/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f5e0549f656874bbd26e2724445d55f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">justinfortmann</media:title>
		</media:content>
	</item>
	</channel>
</rss>
