<?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/"
	>

<channel>
	<title>Michael O&#039;Brien Online</title>
	<atom:link href="http://www.mobonline.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.mobonline.net</link>
	<description>Tips &#38; Tricks for IT</description>
	<lastBuildDate>Wed, 21 Jul 2010 22:36:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Automatically post videos to YouTube</title>
		<link>http://www.mobonline.net/?p=249</link>
		<comments>http://www.mobonline.net/?p=249#comments</comments>
		<pubDate>Wed, 21 Jul 2010 22:36:16 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[GoogleCL]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=249</guid>
		<description><![CDATA[Yes, its possible and it works pretty well! I like doing youtube videos but i don&#8217;t like sitting for hours waiting for it to upload (this is ireland afterall 35k/sec upload!) so after some thought and research i didnt really find anything Windows Based that i could stick in a scheduled task on my file]]></description>
			<content:encoded><![CDATA[<p>Yes, its possible and it works pretty well! I like doing youtube videos but i don&#8217;t like sitting for hours waiting for it to upload (this is ireland afterall 35k/sec upload!) so after some thought and research i didnt really find anything Windows Based that i could stick in a scheduled task on my file server and leave run overnight, lots of stuff for cURL but Windows nada (i could of possibly gone cURL for windows, but where&#8217;s the fun in that <img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-smilewithtongueout" alt="Smile with tongue out" src="http://www.mobonline.net/wp-content/uploads/2010/07/wlEmoticonsmilewithtongueout.png" /> ).</p>
<p>  <span id="more-249"></span>
<p>Download my scripts <a href="http://www.mobonline.net/ytscript.rar" target="_blank">here</a> and extract to your desired location (important to include the folders), then go and download googlecl from <a href="http://code.google.com/p/googlecl/downloads/list?can=2&amp;q=*.zip&amp;colspec=Filename+Summary+Uploaded+Size+DownloadCount" target="_blank">here</a> extract into a folder called googlecl where you extracted the first lot of scripts and folders.</p>
<p>Open a command line and navigate to Googlecl directory and run:</p>
<pre class="csharpcode">google.exe youtube list</pre>
<p>You should be taken to a webpage in order to provide your details. After this open the youtube.ps1 file in notepad and edit the following lines to point to the correct directories:</p>
<pre class="csharpcode">$dir = <span class="str">&quot;F:\youtube\&quot;
$wrkdir = &quot;</span>F:\youtube\Processing\<span class="str">&quot;
$FinDir = &quot;</span>F:\youtube\Finished\<span class="str">&quot;
$logs = &quot;</span>F:\youtube\Logs\<span class="str">&quot;
$gcl = &quot;</span>F:\youtube\googlecl\google.exe&quot;</pre>
<p>By default the script uploads all videos to “Games” (gaming category) have a look at the catalogue for youtube categories <a href="http://gdata.youtube.com/schemas/2007/categories.cat" target="_blank">here</a> and see what “term” you can use for the following line and replace Games with your desired term:</p>
<pre class="csharpcode">invoke-expression <span class="str">&quot;$gcl youtube post --category <strong><font color="#ff0000">Games</font></strong> $wrkdir$vid&quot;</span> | <span class="kwrd">out</span>-null</pre>
<p>Finally modify the run.bat located in the scripts folder to point to your paths and give it a go, to automate simply create a scheduled task. I have this set on my server and a network drive shared out, so i simply drag a wmv file to the network drive and at 2:30am every day the server uploads to youtube.</p>
<p>The script isn&#8217;t perfect but it works.</p>
<p>Code for youtube.ps1 script:</p>
<pre class="csharpcode">$date = get-date -uformat &quot;%d%m%Y-%H%M&quot;
$file = &quot;$date.txt&quot;
$dir = &quot;F:\youtube\&quot;
$wrkdir = &quot;F:\youtube\Processing\&quot;
$FinDir = &quot;F:\youtube\Finished\&quot;
$logs = &quot;F:\youtube\Logs\&quot;
$gcl = &quot;F:\youtube\googlecl\google.exe&quot;
get-childitem $dir -name -filter &quot;*.wmv&quot; <span class="kwrd">&gt;</span> $dir$file
$vid = Get-Content $dir$file -totalcount 1
$vid
move-Item $dir$vid $wrkdir
$timer = get-date
&quot;Starting at $timer&quot; | out-file $logs$file
invoke-expression &quot;$gcl youtube post --category Games $wrkdir$vid&quot; | out-null
$timer = get-date
&quot;Finished at $timer&quot; | out-file $logs$file -append
move-Item $wrkdir$vid $Findir
Remove-Item $dir$file</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=249</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iOS4 + Exchange Issues</title>
		<link>http://www.mobonline.net/?p=247</link>
		<comments>http://www.mobonline.net/?p=247#comments</comments>
		<pubDate>Wed, 14 Jul 2010 00:26:15 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[ActivSync]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=247</guid>
		<description><![CDATA[From MS Exchange Team Blog: http://msexchangeteam.com/archive/2010/07/01/455342.aspx Recently Apple released iOS 4 (the new name for the operating system that runs on iPhones, iPod touches, and iPads). Since its release there have been numerous reports (link, link, link) of a number of issues with new iPhone 4s (and older iPhone models running the updated software version)]]></description>
			<content:encoded><![CDATA[<p>From MS Exchange Team Blog:   <br /><a href="http://msexchangeteam.com/archive/2010/07/01/455342.aspx" target="_blank">http://msexchangeteam.com/archive/2010/07/01/455342.aspx</a></p>
<p>Recently Apple released iOS 4 (the new name for the operating system that runs on iPhones, iPod touches, and iPads). Since its release there have been numerous reports (<a href="http://news.softpedia.com/news/Apple-Tries-to-Fix-Exchange-Mail-Issues-Issues-on-iOS-4-Devices-145727.shtml">link</a>, <a href="http://news.softpedia.com/news/Problems-with-iPhone-iOS-4-Upgrade-Signaled-by-MIT-145552.shtml">link</a>, <a href="http://www.zdnet.com/blog/sybase/update-google-says-ios-4-update-problems-with-email-sync-now-fixed/212">link</a>) of a number of issues with new iPhone 4s (and older iPhone models running the updated software version) when using Exchange ActiveSync (EAS). I wanted to put up a quick posting about what issues users may be seeing and what we’re doing about it.</p>
<p>  <span id="more-247"></span>
<p>Issues:</p>
<ol>
<li>Exchange administrators are seeing heavier than normal loads on their servers from users with iOS devices: We are in contact with Apple’s engineering team and are trying to help them fix this issue. In the meantime Apple has released a support article (<a href="http://support.apple.com/kb/TS3398">link</a>) which directs administrators who are experiencing this issue to push an iOS profile (<a href="http://km.support.apple.com/library/APPLE/APPLECARE_ALLGEOS/TS3398/DefaultEASTaskTimeout.mobileconfig">link</a>) that changes the timeout their Exchange ActiveSync connection uses to their users to four minutes which should be long enough for the vast majority of users. Those that need longer can edit the XML file in any text editor by searching for ‘240.0’ (no quotes) and changing it to the desired number of seconds, or you can use Apple’s configuration utility editor (<a href="http://support.apple.com/kb/DL926">link</a>) to make this change.
<p>Update @1:10 PM: We had suggested using Apple&#8217;s configuration utility to make this change. Apple has informed us that you should not use the configuration utility to edit or install the update. Use a text editor such as Notepad to edit the timeout value in the update, if required.</p>
</li>
<li>Email, calendar, or contacts are not syncing: We believe this is the same issue as #1. The support article and solution listed above are the current recommendation from Apple while a fix is being worked on. </li>
<li>iPhone is not working with Google Apps over Exchange ActiveSync: Google licenses the server portion of Exchange ActiveSync from Microsoft (<a href="http://www.microsoft.com/presspass/press/2009/feb09/02-09statement.mspx">link</a>) but Google wrote their own software to implement the protocol. Google is responsible for making sure their implementation of Exchange ActiveSync runs correctly and in this case Google claims that they had a server issue (<a href="http://www.google.com/support/forum/p/Google+Apps/thread?tid=4c987dfb3dac3fdf&amp;hl=en">link</a>). </li>
</ol>
<p>We have been in contact with Apple about each of these issues (as well as some others that seem to not be directly related to EAS but are more email related in general). Apple has assured us that a fix is being worked on though they have not commented on a release timeline for the fix. We will be continuing to work with Apple to help resolve the current issues relating to iOS 4 using Exchange ActiveSync.</p>
<p><a href="http://twitter.com/MobileGlick">Adam Glick</a>    <br />Sr. Technical Product Manager</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=247</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ToolTip: Network Delay Simulator</title>
		<link>http://www.mobonline.net/?p=242</link>
		<comments>http://www.mobonline.net/?p=242#comments</comments>
		<pubDate>Wed, 30 Jun 2010 22:51:32 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=242</guid>
		<description><![CDATA[ToolTip: Network Delay Simulator. Great Tool pointed out by my colleague alex verboon.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.verboon.info/index.php/2010/06/tooltip-network-delay-simulator/">ToolTip: Network Delay Simulator</a>.</p>
<p>Great Tool pointed out by my colleague alex verboon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=242</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GPO Search Tool</title>
		<link>http://www.mobonline.net/?p=231</link>
		<comments>http://www.mobonline.net/?p=231#comments</comments>
		<pubDate>Sun, 25 Apr 2010 12:14:17 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Windows 2003]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Group Policy]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=231</guid>
		<description><![CDATA[My colleague Alex Verboon posted up a link to a great tool the other day for GPO. Take a look: http://gps.cloudapp.net/]]></description>
			<content:encoded><![CDATA[<p>My colleague <a href="http://www.verboon.info" target="_blank">Alex Verboon</a> posted up a link to a great tool the other day for GPO. Take a look:</p>
<p><a title="http://gps.cloudapp.net/" href="http://gps.cloudapp.net/" target="_blank">http://gps.cloudapp.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=231</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Online Services</title>
		<link>http://www.mobonline.net/?p=229</link>
		<comments>http://www.mobonline.net/?p=229#comments</comments>
		<pubDate>Mon, 19 Apr 2010 01:02:47 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft Online Services]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=229</guid>
		<description><![CDATA[One of my biggest worries about running my fathers business’s Sharepoint (WSS) and Exchange (Packaged with SBS 2003) is the element of Backing up and Expandability. I always fear the day that i would get the dreaded phonecall (you know the one that all Administrators dread) in which email is offline or the sharepoint is]]></description>
			<content:encoded><![CDATA[<p>One of my biggest worries about running my fathers business’s Sharepoint (WSS) and Exchange (Packaged with SBS 2003) is the element of Backing up and Expandability. I always fear the day that i would get the dreaded phonecall (you know the one that all Administrators dread) in which email is offline or the sharepoint is offline / missing files. I have been lucky to date in that ive only had one failure in which i was able to use a backup to restore everything.</p>
<p> <span id="more-229"></span>
<p>The business went from 100% paper estimation / quotation to about 80% Electronic / 20% paper around 2000, at this stage it was a pc with Windows ME (yeh we unfortunately went down this route) and a copy of Office 2000 + a Canon Bubblejet printer. At that time it was really great, estimates could be typed up, printed and recalled later, there was so many new business processes that came about with the addition of the simple addition of a computer + office that it helped the business to scale somewhat. It was 2002 when we got ISDN in the business and this is when we utilised a small part of the internet, mainly email even at that the volume of email was very low because of the area of business we are involved in. Faxing was a big thing, so we utilised the software that came with the ISDN modem (RVSCOM) to fax estimates and quotes mainly to trade customers.</p>
<p>We got more computers to do even more things, the business expanded as expected and the old paper way of doing lookups and referencing for our business went and in came Specialised software for mixing paints etc… We didn&#8217;t have to ring up the paint supplier anymore to get mixtures that were too new to be on the outdated Micro Fiche system we had.</p>
<p>I soon realised around 2004/2005 that we had such a wealth of data that we had to be able to back it up and recover it in the event of failure, at the time we purchased a Dell PowerEdge SC420 it came with SBS2003 we also got a DDS tape drive which was big money back then. By then we had Broadband, email was in greater use (although we still didnt use exchange that came with SBS) and we now had Sage involved in the mix. There was greater and greater amounts of data being created and filed.</p>
<p>In 2008 we started using exchange (as we got our own domain) and in the same year we started using sharepoint. File shares etc had been migrated into sharepoint, the reason was simple; At this time we had moved premises and there wasn&#8217;t the facility to host any IT equipment at the time, so VPN had to be setup so we could get email to the business in our new premises.</p>
<p>Late 2009 i implemented a new system based on Infopath + sharepoint to create a job card system, this was great and worked really well for us, this more or less finalised / completed our move to 100% electronic processes. Email and sharepoint are a core part of the business and allows us to work in multiple locations and use the same data.</p>
<p>Recently here in 2010 ive had to look at replacing the server (which was showing its age), the cost of replacing was in and about €2500 after hardware and SBS 2008 was purchased; Its a single cost that i wasnt really going to get into, because i knew that i would need a new backup device and software. </p>
<p>I was stuck, i had learned recently about Microsoft Online Services, a great set of tools and services from Microsoft that included Sharepoint and Exchange for a really low cost (€42 per month for Exchange + Sharepoint with 5 users), the thing i was always afraid of when looking at this was the migration… Because i know its always a pain to migrate from one system to another.</p>
<p>It was easier than i thought, i downloaded the Exchange Migration app, pointed it at the mailboxes and migrated… simple, even put forwarders on the accounts in active directory. The client pc’s got loaded with a Application that does a sort of single signon to the MSO services:</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.mobonline.net/wp-content/uploads/2010/04/image.png" width="205" height="393" /> </p>
<p>It configures outlook or whatever service you have with MSO painlessly. I think its a great service and i would highly recommend it to anyone who is feeling the pinch of running servers etc..</p>
<p>Sharepoint was the only pain to migrate, but using Sharepoint Designer 2007 i was able to copy all the documents etc from one server to another.</p>
<p>For more info checkout:</p>
<p><a href="http://www.microsoft.com/online" target="_blank">http://www.microsoft.com/online</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=229</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do i: Rejoin computer to the same account?</title>
		<link>http://www.mobonline.net/?p=227</link>
		<comments>http://www.mobonline.net/?p=227#comments</comments>
		<pubDate>Tue, 06 Apr 2010 01:36:03 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Windows 2003]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Active Directory]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=227</guid>
		<description><![CDATA[Pet hate of mine is creation of new computer accounts (ahhh) for machines that have been reimaged, rejoining the same account is actually really simple! Open up AD Users &#38; Computers Find your computer account Right click an hit “Reset” Join the computer to the domain with the old account. Bam, computers back on the]]></description>
			<content:encoded><![CDATA[<p>Pet hate of mine is creation of new computer accounts (ahhh) for machines that have been reimaged, rejoining the same account is actually really simple!</p>
<ol>
<li>Open up AD Users &amp; Computers</li>
<li>Find your computer account</li>
<li>Right click an hit “Reset”</li>
<li>Join the computer to the domain with the old account.</li>
</ol>
<p>Bam, computers back on the domain with the same name and groups! Simple</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=227</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forgotten Tools: Altiris DS</title>
		<link>http://www.mobonline.net/?p=224</link>
		<comments>http://www.mobonline.net/?p=224#comments</comments>
		<pubDate>Wed, 17 Mar 2010 17:10:40 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Altiris DS]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Symantec]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=224</guid>
		<description><![CDATA[As consultants we always have the challenge of migrating from one Desktop OS to a Newer Version and normally we stick to the same products: USMT, SCCM and Radia CAE; Its rare that we deviate from this because we know that USMT + SCCM or Radia is bullet proof, millions of desktops have been migrated]]></description>
			<content:encoded><![CDATA[<p>As consultants we always have the challenge of migrating from one Desktop OS to a Newer Version and normally we stick to the same products: USMT, SCCM and Radia CAE; Its rare that we deviate from this because we know that USMT + SCCM or Radia is bullet proof, millions of desktops have been migrated this way with much success.</p>
<p> <span id="more-224"></span>
<p>While Altiris may not be as capable in other areas as SCCM or Radia CAE, there is one thing it does get right: <strong>Migration &amp; Deployment</strong>. There is some things to think about however, its ok saying “Well that Desktop running Windows XP/2000 there, we want it upgraded to Windows Vista / 7 while retaining user data”. There is a set of logical steps have to be thought of here, during my Windows Migrations i plan migrations as follows:</p>
<ol>
<li>Perform automated backup of Desktop / Laptop using ImageX, Ghost or RapiDeploy </li>
<li>Run and Store USMT in a Shared Location using a logical naming convention that uses tokens </li>
<li>Image the Machine </li>
<li>Restore USMT Data from Shared Location </li>
<li>Get user to Test      <br />a.) Failure – Restore Image taken in Step 1. b.) Success continue onto next desktops. </li>
</ol>
<p>Symantec Employee Jason Short shows this as a self initiated process using Symantec Workflow Manager which interacts with Altiris DS (6.9):    <br /><a title="http://www.screencast.com/users/skturnbow/folders/Camtasia/media/843d11ef-1c1a-4cfa-85bd-33ed41bae585" href="http://www.screencast.com/users/skturnbow/folders/Camtasia/media/843d11ef-1c1a-4cfa-85bd-33ed41bae585" target="_blank">http://www.screencast.com/users/skturnbow/folders/Camtasia/media/843d11ef-1c1a-4cfa-85bd-33ed41bae585</a></p>
<p>Remember, Imaging machines is easy but migrating data takes time and careful planning. Migration plans should have an acceptable number of machines imaged per day! Migrations can take anywhere between 45 Minutes to 3 Hours, do allow for this disparity. </p>
<p><strong>Symantec Resources:</strong></p>
<p>Deploying Windows 7 &#8211; <a title="http://www.symantec.com/business/theme.jsp?themeid=windows7" href="http://www.symantec.com/business/theme.jsp?themeid=windows7" target="_blank">http://www.symantec.com/business/theme.jsp?themeid=windows7</a>     <br />Getting Started&#160; &#8211; <a title="https://www-secure.symantec.com/connect/blogs/migrating-windows-7-get-started-here" href="https://www-secure.symantec.com/connect/blogs/migrating-windows-7-get-started-here" target="_blank">https://www-secure.symantec.com/connect/blogs/migrating-windows-7-get-started-here</a></p>
<p>Windows 7 Migration Commercial </p>
<p align="center"><object id="flashObj" width="486" height="412" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,47,0"><param name="movie" value="http://c.brightcove.com/services/viewer/federated_f9/39584950001?isVid=1&amp;publisherID=29563735001" /><param name="bgcolor" value="#FFFFFF" /><param name="flashVars" value="videoId=50909625001&amp;playerID=39584950001&amp;domain=embed&amp;" /><param name="base" value="http://admin.brightcove.com" /><param name="seamlesstabbing" value="false" /><param name="allowFullScreen" value="true" /><param name="swLiveConnect" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://c.brightcove.com/services/viewer/federated_f9/39584950001?isVid=1&amp;publisherID=29563735001" bgcolor="#FFFFFF" flashVars="videoId=50909625001&#038;playerID=39584950001&#038;domain=embed&#038;" base="http://admin.brightcove.com" name="flashObj" width="486" height="412" seamlesstabbing="false" type="application/x-shockwave-flash" allowFullScreen="true" swLiveConnect="true" allowScriptAccess="always" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=224</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows + BootCamp (Mac)</title>
		<link>http://www.mobonline.net/?p=223</link>
		<comments>http://www.mobonline.net/?p=223#comments</comments>
		<pubDate>Wed, 17 Mar 2010 16:50:21 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=223</guid>
		<description><![CDATA[Mitch Garvis has a great article on running Windows 7 with BootCamp on Intel Based Macs. See here: Click Here]]></description>
			<content:encoded><![CDATA[<p>Mitch Garvis has a great article on running Windows 7 with BootCamp on Intel Based Macs.</p>
<p>See here: <a href="http://garvis.ca/blogs/mitch/archive/2010/03/07/using-boot-camp-in-windows-7.aspx?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+TheWorldAccordingToMitch+%28The+World+According+to+Mitch%29" target="_blank">Click Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=223</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things to look forward to in 2010</title>
		<link>http://www.mobonline.net/?p=199</link>
		<comments>http://www.mobonline.net/?p=199#comments</comments>
		<pubDate>Wed, 20 Jan 2010 20:43:35 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XBOX 360]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=199</guid>
		<description><![CDATA[So here we are in 2010! 2009 was good, but if your a big geek like me well let me assure you 2010 will not disappoint you, 2010 has got something for everyone in store. The guys in Redmond have a lot in store for us Enterprise Consultants and for us who like our Gaming!]]></description>
			<content:encoded><![CDATA[<p>So here we are in 2010! 2009 was good, but if your a big geek like me well let me assure you 2010 will not disappoint you, 2010 has got something for everyone in store.</p>
<p> <span id="more-199"></span>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="Microsoft" border="0" alt="Microsoft" src="http://www.mobonline.net/wp-content/uploads/2010/01/Microsoft.jpg" width="127" height="102" /> </p>
<p>The guys in Redmond have a lot in store for us Enterprise Consultants and for us who like our Gaming! Windows 7 and Windows Server 2008 R2 closed up a year for Microsoft that will now set a high precedent for the product’s it releases in 2010! Windows 7 and Windows 2008 R2 were hailed as the Client and Server OS that we had been waiting for since the Gold editions of Vista and 2008 were first released; Both products where technologically advanced and far ahead of their predecessors (Windows XP and Windows Server 2003); But they had one major problem, they were slow and their ability to run on hardware their predecessors ran on was at times very limited; These are some of the main reasons large business’s really didn&#8217;t go down the 2008 route. Windows 7 and Windows 2008 R2 have now set a standard that Customers and consumers now know that Microsoft can achieve if it puts its great minds to work.</p>
<p>&#160;</p>
<h2>So what else is coming out of the doors of MS in 2010 ?</h2>
<h6>&#160;</h6>
<h6>For Businesses:</h6>
<p>Exchange Server 2010    <br /><a title="http://www.microsoft.com/exchange/2010/en/us/default.aspx" href="http://www.microsoft.com/exchange/2010/en/us/default.aspx">http://www.microsoft.com/exchange/2010/en/us/default.aspx</a>     <br />Released End November, but available now to Customers for 2010</p>
<p>Sharepoint Server 2010    <br /><a title="http://sharepoint2010.microsoft.com/Pages/default.aspx" href="http://sharepoint2010.microsoft.com/Pages/default.aspx">http://sharepoint2010.microsoft.com/Pages/default.aspx</a>     <br />Releasing this year.</p>
<p>System Centre Configuration Manager R3 <a title="http://blogs.technet.com/systemcenter/archive/2009/09/08/announcing-system-center-configuration-manager-2007-r3.aspx" href="http://blogs.technet.com/systemcenter/archive/2009/09/08/announcing-system-center-configuration-manager-2007-r3.aspx">http://blogs.technet.com/systemcenter/archive/2009/09/08/announcing-system-center-configuration-manager-2007-r3.aspx</a>     <br />Releasing Q2 2010</p>
<p>Office 2010    <br /><a title="http://www.microsoft.com/office/2010/en/default.aspx" href="http://www.microsoft.com/office/2010/en/default.aspx">http://www.microsoft.com/office/2010/en/default.aspx</a>     <br />TBA Speculation is March     </p>
<p>Forefront Identity Manager 2010     <br /><a title="http://www.microsoft.com/forefront/identitymanager/en/us/default.aspx" href="http://www.microsoft.com/forefront/identitymanager/en/us/default.aspx">http://www.microsoft.com/forefront/identitymanager/en/us/default.aspx</a>     <br />TBA Speculation is March     </p>
<p>Forefront Endpoint Protection (Previously Codename Sterling)     <br /><a title="http://blogs.technet.com/forefront/archive/2009/10/08/schedule-and-strategy-update-for-forefront-endpoint-protection.aspx" href="http://blogs.technet.com/forefront/archive/2009/10/08/schedule-and-strategy-update-for-forefront-endpoint-protection.aspx">http://blogs.technet.com/forefront/archive/2009/10/08/schedule-and-strategy-update-for-forefront-endpoint-protection.aspx</a>     <br />Releasing Q3/4 2010</p>
<p>Visual Studio 2010    <br /><a href="http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx">http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx</a>     <br />TBA</p>
<p>Windows Mobile 7    <br /><a title="http://www.wired.com/gadgetlab/2009/12/windows-mobile-7-delayed-until-late-2010/" href="http://www.wired.com/gadgetlab/2009/12/windows-mobile-7-delayed-until-late-2010/">http://www.wired.com/gadgetlab/2009/12/windows-mobile-7-delayed-until-late-2010/</a>     <br />Releasing Q4 2010</p>
<p></p>
<h6>For Gamers! </h6>
<p>XBOX 360 Project Natal     <br /><a title="http://www.xbox.com/en-US/live/projectnatal/" href="http://www.xbox.com/en-US/live/projectnatal/">http://www.xbox.com/en-US/live/projectnatal/</a>     <br />Releasing Q4 2010</p>
<hr />
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="google_logo_31" border="0" alt="google_logo_31" src="http://www.mobonline.net/wp-content/uploads/2010/01/google_logo_31.jpg" width="156" height="104" /> </p>
<p>A few years back Google changed the way we find information on the internet, it made searching for what you were looking for Simpler and gave you many sources for what you were looking for. It was simple, you entered your search term and what you were looking for was right there, you didn&#8217;t have to go through pages of possible results to try find what you were looking for.</p>
<p>As we now know google now does much more than search, it’s now made branches to RSS aggregator (Google Reader), Email (Google Mail ‘gmail’), Document repository (Google Docs) and Cloud solutions for business (Google Apps). Everything that google does enhances and simplifies how we do everyday tasks and is not dependant on your Client Platform.</p>
<p>Platforms however are where google is going, the last areas to “improve” are a Client Operating System (Chrome OS) and Mobile Device OS (Android).</p>
<h2>How is google going to challenge what we do in 2010 ?</h2>
<p>&#160;</p>
<p><strong>Chrome OS</strong>     <br /><a title="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html">http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html</a>     <br />Release TBA</p>
<p>Its not long ago that google officially announced that it had been working on its own OS, the guesses and speculation from top tech website had been stating so since probably the end of 2008. Recently gtgt.com got their hands on a VmWare image of an early build of Chrome OS so naturally <a href="http://www.mobonline.net/?p=180" target="_blank">i tried it out over here</a> (to save you a trip i didn&#8217;t like it).</p>
<p>It will be one to watch for the user who uses their PC for Email, some social media, RSS, Web and youtube (basically most of the users today). The footprint on the PC is only the Core OS which is basically a HAL + Browser interface (as opposed to a full blown OS Gui). The beauty of Chrome OS is that documents, photos etc are all stored in your Google Doc’s/Picasa etc… so they don&#8217;t physically exist on the PC itself, so if the PC dies you can simply log into someone else or rebuild yours (Dumb terminals from Mainframe days anyone?).</p>
<p>There has been many Tweets and articles around the place to suggest that this will rival Microsoft&#8217;s Offering of Windows + Exchange + Other server Product in the Enterprise, i don&#8217;t see this happening for a number of reasons.</p>
<p>If you think about it for a second, with all these documents being stored somewhere centrally this then puts a reliance on Computing time etc to be based in a central datacenter that all clients connect in to, this means in addition to all your current email, file or sharepoint infrastructure you need a Client serving infrastructure to support some form of Portal and SSO mechanisms. </p>
<p>Having personally designed many types of Enterprise Desktop policies so that no data is stored locally it is difficult at times to manage centrally without a specialised management platform and one stop IT solution portal which is required, remember there is no Office, Open Office etc productivity suites locally.</p>
<p>So in a nutshell this is probably going to get a sizeable portion of the home light users, no word at the moment on what OEM’s are going to have Chrome Loaded as a factory OS as of yet! </p>
<p>&#160;</p>
<p><strong>Android </strong>    <br /><a title="http://www.android.com/" href="http://www.android.com/">http://www.android.com/</a>     <br />Released, Large Penetration of Consumer Devices 2010!</p>
<p>Android has been quietly making some new friends with the likes of Motorola and HTC towards the end of 2009, Android is Google’s Mobile Device OS</p>
<p><strong>Nexus One     <br /></strong><a title="http://www.google.com/phone/?locale=en_US&amp;s7e=" href="http://www.google.com/phone/?locale=en_US&amp;s7e=">http://www.google.com/phone/?locale=en_US&amp;s7e=</a>    <br />Released Jan 2010</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=199</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hydraq IE 0 Day Exploit (Symantec)</title>
		<link>http://www.mobonline.net/?p=196</link>
		<comments>http://www.mobonline.net/?p=196#comments</comments>
		<pubDate>Tue, 19 Jan 2010 23:33:20 +0000</pubDate>
		<dc:creator>Michael O&#39;Brien</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Symantec]]></category>
		<category><![CDATA[Windows 2003]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 2008 R2]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Hydraq]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mobonline.net/?p=196</guid>
		<description><![CDATA[What does Hydraq do? Hydraq is a targeted attack that installs itself on a user&#8217;s computer or an organization&#8217;s server. It then can be used to search an organization for private information. Hydra can capture and forward all information from an infected computer, including a live feed of windows on a screen and all information]]></description>
			<content:encoded><![CDATA[<h5>What does Hydraq do?</h5>
<p>Hydraq is a targeted attack that installs itself on a user&#8217;s computer or an organization&#8217;s server. It then can be used to search an organization for private information. Hydra can capture and forward all information from an infected computer, including a live feed of windows on a screen and all information typed on the keyboard. Hydra can also be remotely updated to perform additional tasks, including attempting to compromise other machines. </p>
<h5>How does Hydraq infect a computer?</h5>
<ul>
<li>Through a vulnerability in the Internet Explorer web browser <a href="http://www.symantec.com/business/security_response/attacksignatures/detail.jsp?asid=23599">HTTP MSIE Memory Corruption Code Exec (BID 37815)</a></li>
<li>As an attachment to an email using a pdf file read by Adobe Acrobat, Adobe Reader, and Adobe Flash Player <a href="http://www.adobe.com/support/security/bulletins/apsb09-10.html">Adobe APSB09-10</a></li>
</ul>
<p>Typically an email is sent to an individual or small group of individuals, within an organization. All efforts are made to make the email look legitimate, that is, it will appear as though it was sent by somebody the recipient trusts . The subject matter will often be related to the recipient&#8217;s area of business. In order to install the malware, the user must be tricked into either clicking a malicious link or opening an attachment. Both methods then exploit a vulnerability to install the Trojan onto the machine.</p>
<h5>What is the current state of Hydraq?</h5>
<p>At this time, the command and control servers are no longer active so any of the Hydraq trojans still remaining in the field are effectively non-functional. Symantec has released definitions to detect and remove infections of the Hydraq trojan. </p>
<ul>
<li><a href="http://www.symantec.com/business/security_response/writeup.jsp?docid=2010-011114-1830-99&amp;tabid=2">Trojan.Hydraq</a></li>
<li><a href="http://www.symantec.com/business/security_response/writeup.jsp?docid=2010-011411-3125-99">Trojan.Hydraq!gen1</a></li>
</ul>
<p>Customers are encouraged to follow best practices in general and specifically to update to the latest patches available for Adobe Acrobat, Adobe Reader, and Adobe Flash Player. See: <a href="http://www.adobe.com/support/security/bulletins/apsb09-10.html">Adobe APSB09-10</a>. At this time a patch is not available for the Internet Explorer, but IPS signatures have been released by Symantec which block exploitation of both vulnerabilities.</p>
<ul>
<li><a href="http://www.symantec.com/business/security_response/attacksignatures/detail.jsp?asid=23599">HTTP MSIE Memory Corruption Code Exec (BID 37815)</a></li>
<li><a href="http://www.symantec.com/business/security_response/attacksignatures/detail.jsp?asid=23412">HTTP Acrobat PDF Suspicious File Download 4</a></li>
</ul>
<h5>Information on Hydraq</h5>
<ul>
<li><a href="http://www.symantec.com/connect/blogs/trojanhydraq-incident">Security Blog: The Trojan.Hydraq Incident</a></li>
<li><a href="http://www.symantec.com/connect/blogs/protect-yourself-against-exploit-targeting-new-ie-zero-day-vulnerability">Security Blog: Protect Yourself Against Exploit Targeting New IE Zero-Day Vulnerability</a></li>
<li><a href="http://www.symantec.com/security_response/writeup.jsp?docid=2010-011114-1830-99&amp;tabid=2">Security Response Report: Trojan.Hydraq</a></li>
</ul>
<h5>Symantec customers are protected</h5>
<p>Our product and services teams discuss how Symantec customers are effectively protected from this threat.</p>
<h5>Symantec Protection Suite</h5>
<p> The Hydraq attacks were targeted at the core security infrastructure of organizations. Multiple layers of defense bolster an organization&#8217;s ability to defend against such attacks. Symantec Protection Suite users have a robust defense at the gateway with Brightmail Gateway for SMTP email security, along with Web Gateway for Web traffic and usage, ensuring that an organization is able to monitor all incoming and outgoing mail and Web traffic – constantly monitoring for and stopping threats. The Protection Suite ensures endpoints are clean with its market-leading Endpoint Security product. Finally, by having access to Symantec’s Backup Exec for desktops and laptops, in the event an endpoint is infected, doing a complete re-image is quick and easy, ensuring up-time and employee productivity. Symantec’s security products are backed by our Global Intelligence Network, ensuring customers are protected and up-to-date on rules and signatures.
<ul>
<li><a href="http://www.symantec.com/business/protection-suite-enterprise-edition">Protection Suite Enterprise Edition</a></li>
</ul>
<h5>Symantec Security Information Manager</h5>
<p> A number of these attacks were achieved using a combination of attack vectors, resulting in back door Trojans being installed. Security Information Manager can effectively collect and prioritize these events as they occur across the layered security solutions that need to be deployed to protect against a broad variety of these attack vectors. Security Information Manager can further contribute global intelligence to the correlation process to include malicious IP, Worm IP and Botnet IP lists that can be manually updated to automatically conclude incidents around this particular attack. Early detection of single exploited attack vectors may provide preemptive visibility to attacks before they can fully execute.
<ul>
<li><a href="http://www.symantec.com/business/security-information-manager">Security Information Manager</a></li>
</ul>
<h5>DeepSight Early Warning Services</h5>
<p> Symantec DeepSight Early Warning Services provides actionable intelligence covering the complete threat lifecycle, from initial vulnerability to active attack. On January 15 we published a journal about a new unpatched Microsoft Internet Explorer vulnerability, which is leveraged by malware identified by Symantec as Trojan.Hydraq. DeepSight Analysts continue to provide updates to this evolving threat as new information becomes available. DeepSight subscribers benefit from personalized notifications and expert analysis (including patches, countermeasures and workarounds) to better protect critical information assets against a potential attack.
<ul>
<li><a href="http://www.symantec.com/business/services/detail/detail.jsp?pcid=consulting_services&amp;pvid=svc_deepsight_early_warning">DeepSight Early Warning Services</a></li>
</ul>
<h5>Symantec Managed Security Services</h5>
<p> Symantec Managed Security Services monitors over 800 customers (including 92 of the Fortune 500). In response to this threat, Symantec MSS updated our detection capabilities for both the targeted Trojan.Hydraq as well as exploits against the recent IE vulnerability. This monitoring includes customers’ firewalls, intrusion detection sensors (IDS), web proxies and system logs. As this threat is primarily client side, any clients with our Managed Endpoint Security service also received updates to protect their endpoints from this attack. Our SOC Analysts are available to work with customers to take proactive steps to mitigate the IE vulnerability within their enterprise as needed.
<ul>
<li><a href="http://www.symantec.com/business/services/detail/detail.jsp?pcid=managed_services&amp;pvid=svc_managed_security">Managed Security Services</a></li>
</ul>
<h5>Symantec Critical Systems Protection</h5>
<p> The focus of these attacks was to steal intellectual property. Symantec Critical Systems Protection plays a significant role in defending this data by placing constraints around which users and applications have access to sensitive data. Any unauthorized users or applications would have been denied access to the data and an alert would have been generated by making the attempt. Additionally, Symantec Critical Systems Protection provides out-of-the-box protection against both known and unknown remote code execution attempts.
<ul>
<li><a href="http://www.symantec.com/business/critical-system-protection">Critical Systems Protection</a></li>
</ul>
<h5>Altiris Total Management Suite</h5>
<p> With this attack, Total Management Suite customers benefit from the ability to gain complete visibility into their IT environment. Users run accurate asset inventory reports to react quickly to threats and vulnerabilities and take the necessary steps to remediate. Total Management Suite will have quickly found the necessary software updates and/or patches then run automatic processes for all assets – like upgrading to IE 8 in this case. Total Management Suite also generates reports to ensure successful updates or migrations, and update asset inventory reports to prepare for ongoing management.
<ul>
<li><a href="http://www.symantec.com/business/total-management-suite">Total Management Suite</a></li>
</ul>
<h5>Symantec Hosted Services</h5>
<p> Trojan.Hydraq spans multiple communication protocols and can evade signature-based detection. Symantec Hosted Services help protect against converged threats that span email, Web, and instant messaging. Our proprietary heuristic technology for malware and spam filtering, captures and shares threat intelligence across these protocols and provides identification of previously unseen threats. All managed via a single, integrated security management console that simplifies administration while increasing visibility and control.
<ul>
<li><a href="http://www.symantec.com/business/theme.jsp?themeid=hostedservices">Symantec Hosted Services</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mobonline.net/?feed=rss2&amp;p=196</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
