<?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>Luka Manojlovic</title>
	<atom:link href="http://luka.manojlovic.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://luka.manojlovic.net</link>
	<description>Luka&#039;s technical blog</description>
	<lastBuildDate>Mon, 30 Apr 2012 15:21:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Getting ASP.NET &#8211; C# running a System center Orchestartor 2012 Runbook and survive :)</title>
		<link>http://luka.manojlovic.net/2012/04/30/getting-asp-net-c-running-a-system-center-orchestartor-2012-runbook-and-survive/</link>
		<comments>http://luka.manojlovic.net/2012/04/30/getting-asp-net-c-running-a-system-center-orchestartor-2012-runbook-and-survive/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 15:16:49 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server 2010]]></category>
		<category><![CDATA[System center 2012]]></category>
		<category><![CDATA[Windows server 2008 R2]]></category>
		<category><![CDATA[ASP.NET Orchestrator]]></category>
		<category><![CDATA[Orchestrator]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=376</guid>
		<description><![CDATA[I wanted to create ASP.NET webpage with three simple fields name, surname and mobile and I wanted Orchestrator behind to create Exchange 2010 mailbox on my Exchange server&#8230; My friends helped me out by giving me suggestions and help &#8211; I want to share this knowledge with you now&#8230; What we have: Exchange 2010 server [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to create ASP.NET webpage with three simple fields name, surname and mobile and I wanted Orchestrator behind to create Exchange 2010 mailbox on my Exchange server&#8230;<br />
My friends helped me out by giving me suggestions and help &#8211; I want to share this knowledge with you now&#8230;</p>
<p>What we have:<br />
Exchange 2010 server on one server<br />
SC 2012 &#8211; Orchestrator &#8211; on different server &#8211; with Exchange 2010 console instaled + SP2 applied</p>
<p>My friend <a href="http://exchange.si/" target="_blank">Saso</a> created a ps1 script that creates user in Exchange 2010 (with address book policy, active sync policy&#8230;) that I use on Exchange 2010 server by inserting a line of comma separated values name,surname,password.</p>
<p>I wanted this script to be run from Orchestrator server &#8211; so first thing you need to do if you want to run PS script against Exchange 2010 server you need to install Exchange 2010 console on Orchestartor! Hey! You need to install also SP2 if you want full functionality of Exchange Powershell Snapin!</p>
<p>You can not run Exchange Snapin and powershell scripts directly &#8211; <a href="http://www.purgar.net/using-exchange-2010-cmdlets-in-system-center-orchestrator/" target="_blank">Jure</a> has more info how you can do it in Orchestrator</p>
<p><a href="http://luka.manojlovic.net/wp-content/uploads/2012/04/01-Running-Exchange-PS1-with-Orch.png"><img class="alignnone size-medium wp-image-377" title="01 - Running Exchange PS1 with Orch" src="http://luka.manojlovic.net/wp-content/uploads/2012/04/01-Running-Exchange-PS1-with-Orch-300x170.png" alt="" width="300" height="170" /></a></p>
<p>When this thing worked (I forgot SP2 for Exchange 2010 on Orchestrator and I lost 2 hours to figure it out! <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) I have started to write code for my website where I want to trigger my runbook with parameters&#8230;</p>
<p>I have fist set input parameters in my Runbook&#8230;</p>
<p><a href="http://luka.manojlovic.net/wp-content/uploads/2012/04/02-Runbook-inputs.png"><img class="alignnone size-medium wp-image-378" title="02 - Runbook inputs" src="http://luka.manojlovic.net/wp-content/uploads/2012/04/02-Runbook-inputs-300x195.png" alt="" width="300" height="195" /></a></p>
<p>After that I have folowed<a href="http://blogs.technet.com/b/neilp/archive/2012/02/14/sql-cluster-with-custom-front-end.aspx" target="_blank"> this </a>article to create costum class file (search for part <strong>Creating the custom interface</strong>).</p>
<p>So I created <strong>scorch.sc </strong>(name it however you want in a previous step) and imported it in my Visual Studio evironment&#8230;</p>
<p>You need to place it:</p>
<p><a href="http://luka.manojlovic.net/wp-content/uploads/2012/04/03-Class.png"><img class="alignnone size-medium wp-image-380" title="03 - Class" src="http://luka.manojlovic.net/wp-content/uploads/2012/04/03-Class-300x183.png" alt="" width="300" height="183" /></a></p>
<p>You should comment this line to get it work in your project&#8230;</p>
<p><a href="http://luka.manojlovic.net/wp-content/uploads/2012/04/04-Modifications.png"><img class="alignnone size-medium wp-image-381" title="04 - Modifications" src="http://luka.manojlovic.net/wp-content/uploads/2012/04/04-Modifications-300x203.png" alt="" width="300" height="203" /></a></p>
<p>and finaly you can go to your project and start coding&#8230;</p>
<p><a href="http://luka.manojlovic.net/wp-content/uploads/2012/04/05-Code.png"><img class="alignnone size-medium wp-image-382" title="05 - Code" src="http://luka.manojlovic.net/wp-content/uploads/2012/04/05-Code-300x127.png" alt="" width="300" height="127" /></a></p>
<p>1. Put the URL of your Orch web service<br />
2. Enter credentials<br />
3. Define the name of your runbook<br />
4. runbookpars [X] &#8211; X is ID of the input parameter in rubook</p>
<p>and finaly you should be able to run your script&#8230;</p>
<p><a href="http://luka.manojlovic.net/wp-content/uploads/2012/04/06-Working.png"><img class="alignnone size-medium wp-image-383" title="06 - Working" src="http://luka.manojlovic.net/wp-content/uploads/2012/04/06-Working-300x187.png" alt="" width="300" height="187" /></a></p>
<p>I find System center Orchestator 2012 as fantastic product that can realy help you automate your IT processes&#8230;</p>
<p>So guys let&#8217;s automate! <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Help:<br />
<a href="http://msdn.microsoft.com/en-us/library/hh921685.aspx">http://msdn.microsoft.com/en-us/library/hh921685.aspx</a> - thanks to <a href="http://blogs.technet.com/b/dcaro/" target="_blank">Damien</a><br />
<a href="http://blogs.technet.com/b/neilp/archive/2012/02/14/sql-cluster-with-custom-front-end.aspx">http://blogs.technet.com/b/neilp/archive/2012/02/14/sql-cluster-with-custom-front-end.aspx</a><br />
<a href="http://www.purgar.net/category/orchestrator/">http://www.purgar.net/category/orchestrator/</a> - thanks to <a href="http://www.purgar.net/" target="_blank">Jure</a><br />
voodoo C# help &#8211; thanks to <a href="http://blog.rthand.com/" target="_blank">Miha</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2012/04/30/getting-asp-net-c-running-a-system-center-orchestartor-2012-runbook-and-survive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSDays12 &#8211; Sofia Bulgaria</title>
		<link>http://luka.manojlovic.net/2012/03/29/msdays12-sofia-bulgaria/</link>
		<comments>http://luka.manojlovic.net/2012/03/29/msdays12-sofia-bulgaria/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 07:21:54 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=373</guid>
		<description><![CDATA[Fantastic time with friends at the event&#8230; Cool sessions&#8230; Here is my contribution in form of powerpoint presentations&#8230; &#160;]]></description>
			<content:encoded><![CDATA[<p>Fantastic time with friends at the event&#8230; Cool sessions&#8230;</p>
<p>Here is my contribution in form of powerpoint presentations&#8230;</p>
<p>&nbsp;<br />
<iframe title ="Preview" scrolling="no" marginheight="0" marginwidth="0" frameborder="0" width="165px" height="128px" style="padding:0;background-color:#fcfcfc;" src="https://skydrive.live.com/embed?cid=38C674F31C0CB95C&#038;resid=38C674F31C0CB95C%212403&#038;authkey=AM3SzfQBB-bmsdk"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2012/03/29/msdays12-sofia-bulgaria/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change time sync interval in Windows server 2008 (R2)&#8230;</title>
		<link>http://luka.manojlovic.net/2011/12/18/change-time-sync-interval-in-windows-server-2008-r2/</link>
		<comments>http://luka.manojlovic.net/2011/12/18/change-time-sync-interval-in-windows-server-2008-r2/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 14:12:56 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=365</guid>
		<description><![CDATA[During regular check of my Hyper-V hosts (Windows servers 2008 (R2)) I have seen that some of them have time out of sync even if all of them have configured external NTP source (I am using pool.ntp.org &#8211; in my case si.pool.ntp.org (Slovenian pool))&#8230; But by default Windows is making NTP query and correction every 7 days (604800 [...]]]></description>
			<content:encoded><![CDATA[<p>During regular check of my Hyper-V hosts (Windows servers 2008 (R2)) I have seen that some of them have time out of sync even if all of them have configured external NTP source (I am using pool.ntp.org &#8211; in my case si.pool.ntp.org (Slovenian pool))&#8230;</p>
<p>But by default Windows is making NTP query and correction every 7 days (604800 seconds <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )&#8230;</p>
<p>Well as NTP query is from network prospective small / light I have decided to make this check and sync once per hour&#8230; (3600 seconds)&#8230;</p>
<p>Well where do we set up this?</p>
<p>The key that you need to change is located in:</p>
<p><strong>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<br />
W32Time\TimeProviders\NtpClient\SpecialPollInterval</strong></p>
<p>Change from 604800 to 3600 (1 hour for example)&#8230; And restart Windows Time service</p>
<p>You can check snapshots on:<br />
<a href="https://skydrive.live.com/?cid=38C674F31C0CB95C&amp;id=38C674F31C0CB95C%212390#cid=38C674F31C0CB95C&amp;id=38C674F31C0CB95C%212391" target="_blank">https://skydrive.live.com/?cid=38C674F31C0CB95C&amp;id=38C674F31C0CB95C%212390#cid=38C674F31C0CB95C&amp;id=38C674F31C0CB95C%212391</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/12/18/change-time-sync-interval-in-windows-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SloWUG NG &#8211; goriška IT pro uporabniška skupina&#8230;</title>
		<link>http://luka.manojlovic.net/2011/11/05/slowug-ng-goriska-it-pro-uporabniska-skupina/</link>
		<comments>http://luka.manojlovic.net/2011/11/05/slowug-ng-goriska-it-pro-uporabniska-skupina/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 18:19:47 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=357</guid>
		<description><![CDATA[Pa smo jo zagnali! Vabljeni vsi, ki se profesionalno ali za hobi ukvarjate z administracijo IT sistemov pa tudi tisti, ki vas zene zelja po novih znanjih, novih izkušnjah, pogovorih in druzenju z ljudmi, ki se ukvarjajo s podobnimi stvarmi kot vi&#8230; SloWUG NG je &#8220;hčerinska&#8221; skupnost skupnosti SloWUG (http://www.slowug.si). SloWUG v Ljubljani ze vrsto [...]]]></description>
			<content:encoded><![CDATA[<p>Pa smo jo zagnali! Vabljeni vsi, ki se profesionalno ali za hobi ukvarjate z administracijo IT sistemov pa tudi tisti, ki vas zene zelja po novih znanjih, novih izkušnjah, pogovorih in druzenju z ljudmi, ki se ukvarjajo s podobnimi stvarmi kot vi&#8230;</p>
<p>SloWUG NG je &#8220;hčerinska&#8221; skupnost skupnosti SloWUG (<a href="http://www.slowug.si/">http://www.slowug.si</a>). SloWUG v Ljubljani ze vrsto let na srečanjih združuje ITjevce iz celotne Slovenije&#8230;<br />
Podobno zgodbo zelimo začeti tudi v drugih mestih po Sloveniji in tako je nastala tudi skupnost SloWUG NG (<a href="http://ng.slowug.si/">http://ng.slowug.si</a>), kjer se bomo enkrat na mesec srečevali na različnih lokacijah v Novi Gorici in prisluhnili dvem ali trem predavateljem, ki bodo predstavili novosti, rešitve ali pa kakšen praktičen primer iz vsakdanjega dela.</p>
<p>Srečanja so brezplačna in namenjena širitvi znanj, sklepanju novih prijateljstev in morda tudi novih poslovnih sodelovanj.</p>
<p>Vabljeni torej 15.11.2011 v prostore Primorskega tehnološkega parka&#8230; Več informacij na <a href="http://ng.slowug.si">http://ng.slowug.si</a></p>
<p>Se vidimo!</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/11/05/slowug-ng-goriska-it-pro-uporabniska-skupina/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sinergia Q&amp;A &#8211; IPv6 session and RDS&amp;VDI session</title>
		<link>http://luka.manojlovic.net/2011/10/20/sinergia-qa-ipv6-session-and-rdsvdi-session/</link>
		<comments>http://luka.manojlovic.net/2011/10/20/sinergia-qa-ipv6-session-and-rdsvdi-session/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 13:04:59 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=353</guid>
		<description><![CDATA[How to anyway prioritize IPv4 over IPv6 http://tuts4tech.net/2010/04/05/set-preference-for-ipv4-over-ipv6-on-windows-7/ &#160;]]></description>
			<content:encoded><![CDATA[<p>How to anyway prioritize IPv4 over IPv6 <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://tuts4tech.net/2010/04/05/set-preference-for-ipv4-over-ipv6-on-windows-7/">http://tuts4tech.net/2010/04/05/set-preference-for-ipv4-over-ipv6-on-windows-7/</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/10/20/sinergia-qa-ipv6-session-and-rdsvdi-session/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m speaking at Sinergija 2011! :)</title>
		<link>http://luka.manojlovic.net/2011/10/07/i-speaking-at-sinergija-2011/</link>
		<comments>http://luka.manojlovic.net/2011/10/07/i-speaking-at-sinergija-2011/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 14:14:39 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=348</guid>
		<description><![CDATA[If you are coming to Sinergija 2011 in Belgrade I have two sessions &#8211; one on VDI and RDS in Windows server 2008 R2 and second about IPv6 and Microsoft&#8230; See ya!]]></description>
			<content:encoded><![CDATA[<p>If you are coming to Sinergija 2011 in Belgrade I have two sessions &#8211; one on VDI and RDS in Windows server 2008 R2 and second about IPv6 and Microsoft&#8230; See ya!</p>
<p><a href="http://luka.manojlovic.net/wp-content/uploads/2011/10/i-am-speaking-at-250x300px.jpg"><img class="alignnone size-full wp-image-349" title="i am speaking at 250x300px" src="http://luka.manojlovic.net/wp-content/uploads/2011/10/i-am-speaking-at-250x300px.jpg" alt="" width="300" height="250" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/10/07/i-speaking-at-sinergija-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do it! simbioza.eu</title>
		<link>http://luka.manojlovic.net/2011/10/07/do-it-simbioza-eu/</link>
		<comments>http://luka.manojlovic.net/2011/10/07/do-it-simbioza-eu/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 06:55:58 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=345</guid>
		<description><![CDATA[Mladi učimo starejše računalništva&#8230; Imaš dve uri časa, da v tvojem kraju pripraviš delavnico na kateri boš starejše učil uporabe računalnika? Prijavi se na http://www.simbioza.eu/  Naredimo skupaj nekaj dobrega za nas vse&#8230;]]></description>
			<content:encoded><![CDATA[<p>Mladi učimo starejše računalništva&#8230;</p>
<p>Imaš dve uri časa, da v tvojem kraju pripraviš delavnico na kateri boš starejše učil uporabe računalnika? Prijavi se na <a href="http://www.simbioza.eu/">http://www.simbioza.eu/</a> </p>
<p>Naredimo skupaj nekaj dobrega za nas vse&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/10/07/do-it-simbioza-eu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyper-V virtual machine backup script&#8230;</title>
		<link>http://luka.manojlovic.net/2011/09/29/hyper-v-virtual-machine-backup-script/</link>
		<comments>http://luka.manojlovic.net/2011/09/29/hyper-v-virtual-machine-backup-script/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 10:59:27 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[MS Scripting]]></category>
		<category><![CDATA[VBS Scripts]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[Windows server 2008 R2]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=339</guid>
		<description><![CDATA[Today my friend Marko Cepe sent me his VBS script that does great job to backup virtual machines that are running on Hyper-V. This script does shut down virtual machine by sending shut down command to machine using integration services, then it waits virtual machine to enter stopped state, after that it does export of [...]]]></description>
			<content:encoded><![CDATA[<p>Today my friend Marko Cepe sent me his VBS script that does great job to backup virtual machines that are running on Hyper-V.<br />
This script does shut down virtual machine by sending <a href="http://luka.manojlovic.net/2010/05/24/manage-hyper-v-virtual-machines-using-wmi-and-vbs-scripts/" target="_blank">shut down command to machine using integration services</a>, then it waits virtual machine to enter stopped state, after that it does export of the machine and turns the machine back on.</p>
<p><strong>Usage:</strong></p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="636">C:\SKRIPTE\&gt; ExportVM.vbs VMName ExportDirectory</td>
</tr>
</tbody>
</table>
<p><strong>Example: </strong></p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="636">C:\SKRIPTE\&gt; ExportVM.vbs TestVM X:\Backup\TestVM</td>
</tr>
</tbody>
</table>
<p><a href="http://store.manojlovic.net/vbsscripts/hyper-v/ExportVM.vbs" target="_blank">Click, download and enjoy the script.</a></p>
<p>Comments appreciated&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/09/29/hyper-v-virtual-machine-backup-script/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>SBS2011 RDGateway (g)UI?</title>
		<link>http://luka.manojlovic.net/2011/08/03/sbs2011-rdgateway-gui/</link>
		<comments>http://luka.manojlovic.net/2011/08/03/sbs2011-rdgateway-gui/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 16:29:24 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[SBS 2011]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=336</guid>
		<description><![CDATA[Many of you have asked where you can find RDGateway user interface in SBS 2011 &#8211; in fact RDGateway is working but you can not access its interface in SBS 2011. Well you can do that by reading this MS KB article&#8230; How to Manage the Remote Desktop Gateway Service in SBS 2011 http://support.microsoft.com/kb/2472211]]></description>
			<content:encoded><![CDATA[<p>Many of you have asked where you can find RDGateway user interface in SBS 2011 &#8211; in fact RDGateway is working but you can not access its interface in SBS 2011. Well you can do that by reading this MS KB article&#8230;</p>
<p><strong>How to Manage the Remote Desktop Gateway Service in SBS 2011</strong><br />
<a href="http://support.microsoft.com/kb/2472211">http://support.microsoft.com/kb/2472211</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/08/03/sbs2011-rdgateway-gui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small business environments and backup &#8211; HP RDX backup solution</title>
		<link>http://luka.manojlovic.net/2011/06/26/small-business-environments-and-backup-hp-rdx-backup-solution/</link>
		<comments>http://luka.manojlovic.net/2011/06/26/small-business-environments-and-backup-hp-rdx-backup-solution/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 17:02:40 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=330</guid>
		<description><![CDATA[In SBS enviroments there is always problem with backup solutions that are afordable and reliable at the same time. HP has an excelent, quick and robust solution that you can easily implement in SBS environment. It&#8217;s called HP RDX and you can check HP website for more info &#8211; it is composed of internal or [...]]]></description>
			<content:encoded><![CDATA[<p>In SBS enviroments there is always problem with backup solutions that are afordable and reliable at the same time. HP has an excelent, quick and robust solution that you can easily implement in SBS environment. It&#8217;s called HP RDX and you can check HP website for more info &#8211; it is composed of internal or external device and hard disk based cartridge of different sizes. It allows you to copy at a speed between 20-35 MB/s or better around 100 GB / hour&#8230;</p>
<p><a href="http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/12169-304616-3755725-3755725-3755725-3741006.html">http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/12169-304616-3755725-3755725-3755725-3741006.html</a></p>
<p><a href="http://www.youtube.com/watch?v=e5E1c0VrMyg">http://www.youtube.com/watch?v=e5E1c0VrMyg</a></p>
<p>If you have virtualised SBS environment so you are running SBS 2008 or SBS 2011 on Hyper-V platform you can backup your SBS server by using iSCSI on Hyper-V host (you can try <a href="http://www.starwindsoftware.com/starwind-free">http://www.starwindsoftware.com/</a> with their fantastic iSCSI solution). When you have this software installed you can connect your RDX drive to your guest SBS server and use it to perform standard SBS backup on it.<br />
This kind of solution will not work with Microsoft iSCSI target 3.3 (this is MS free iSCSI target that runs on Windows server 2008 R2) as it does not allow to use removable disks as source for iSCSI target disks (it only supports non-removable drives).</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2011/06/26/small-business-environments-and-backup-hp-rdx-backup-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

