<?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>Kasraeian</title>
	<atom:link href="http://www.kasraeian.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kasraeian.com</link>
	<description>vWorld</description>
	<lastBuildDate>Fri, 16 Nov 2012 17:56:10 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Mass Hard Disk Creator (Ver 0.1)</title>
		<link>http://www.kasraeian.com/2012/11/mass-hard-disk-creator-ver-0-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mass-hard-disk-creator-ver-0-1</link>
		<comments>http://www.kasraeian.com/2012/11/mass-hard-disk-creator-ver-0-1/#comments</comments>
		<pubDate>Fri, 16 Nov 2012 13:37:55 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Get-HardDisk]]></category>
		<category><![CDATA[Get-ScsiController]]></category>
		<category><![CDATA[MHDC]]></category>
		<category><![CDATA[New-HardDisk]]></category>
		<category><![CDATA[New-ScsiController]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Using VMware PowerCLI]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware vSphere PowerCLI]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2394</guid>
		<description><![CDATA[Think about scenario which two or more hard disks should be created and added to a specific VM(s); there are multiple ways like using GUI (vSphere Client) or PowerCLI.   If normal GUI (vSphere Client) going to be use, it would be a time-consuming process but when trying to do it with PowerCLI (automated way), [...]]]></description>
				<content:encoded><![CDATA[<p>Think about scenario which two or more hard disks should be created and added to a specific VM(s); there are multiple ways like using GUI (vSphere Client) or PowerCLI.   <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=':wink:' class='wp-smiley smiley-20' data-recalc-dims="1" /> <br />
If normal GUI (vSphere Client) going to be use, it would be a time-consuming process but when trying to do it with PowerCLI (automated way), it&#8217;d be so much faster.</p>
<p>I had two VMs which needed &#8220;8 hard disks on SATA and 2 hard disk on SSD&#8221; to be added, which means adding 20 disks in total so for preventing suffering from same process in future I made bellow script. ( <a href="http://youtu.be/gr_RMPR6vHg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/youtu.be/gr_RMPR6vHg.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">script demo on YouTube</a> )</p>
<p><span style="color: #ff0000;"><strong>Warning:</strong></span><br />
1. This is first version of script and only work in interactive mode and might have some bug; I&#8217;d be really grateful if you could kindly let me know any possible bug/problem you saw. I&#8217;d try to update it in a way so it can get parameters or/and accepting file as source.<br />
2. Please test it on one test VM before using it on any production VM.</p>
<div id='wpdm_file_9' class='wpdm_file wpdm-only-button'><div class='cont'><div class='btn_outer'><div class='btn_outer_c' style=''><a class='btn_left  ' rel='9' title='Mass Hard Disk Creator (Ver 0.1)' href='http://www.kasraeian.com/?wpdmact=process&did=OS5ob3RsaW5r'  >Download</a><span class='btn_right'>&nbsp;</span></div></div><div class='clear'></div></div></div>
<pre class="brush: powershell; collapse: true; light: false; title: ; toolbar: true; notranslate">###################################
# Title: Mass Hard Disk Creator
# Ver: 0.1
# Author: Sohrab Kasraeian Fard (@Kasraeian)
# Date: 11/15/2012
###################################
CLS
# Get VM List
Write-Host &quot;VM List&quot;
Get-VM | sort Name

# Selecting the target VM
$VM = Read-Host (&quot;`nPlease select the target VM to add new hard disk(s) to it&quot;)

# Checking VM current state
$CH = Get-HardDisk -VM $VM
$CC = Get-VM -Name $VM | Get-ScsiController

if ($CH.count -ge 2) {
	$AHS = 60 - $CH.count
} elseif ($CH.count -ne &quot;&quot;) {
	$AHS = 59
}
if ($CC.count -ge 2) {
	$ACS = 4 - $CC.count
} elseif ($CC.count -ne &quot;&quot;) {
	$ACS = 3
}

$vmh = Get-VM -Name $VM | select VMHost
$vmh = $vmh.VMHost.Name
$vmhds = Get-VMHost $vmh | Get-Datastore | sort name

#Main Process
if ($AHS -lt 60 -or $CH.count -ne &quot;&quot;) {
	Write-Host &quot;`nThere are $ahs free slot available for adding hard disk for selected VM.&quot;

	[Int]$Qty = Read-Host (&quot;How many hard disk(s) do you want to add (Max $ahs)?&quot;)
	[Int]$Cap = Read-Host (&quot;Please define new hard disk(s) capacity in GB [Range: 0.001-1024]&quot;)
	$NDSR = Read-Host (&quot;Should new hard disk(s) be saved on other datastore?&quot;)
	if ($NDSR -like &quot;yes&quot;) {
		$k=1; Write-Host &quot;`n&quot;
		$vmhds | %{ Write-Host &quot;$($k).`t$($_.Name)`t$($_.CapacityGB)`t$($_.FreeSpaceGB)&quot;; $k++ }
		$SNDSI = Read-Host (&quot;Please select new datastore from above list&quot;)
		$SNDS = $vmhds[$SNDSI-1].Name
	}

	if ($ACS -le 4 -and $ACS -gt 0) {
		$NCR = Read-Host (&quot;Want to add new controller for new disks?&quot;)
		if ($NCR -like &quot;yes&quot;) {
			$RNCT = Read-Host (&quot;`n[BLP] BusLogic Parallel`n[LLP] LSI Logic Parallel`n[LLS] LSI Logic SAS`n[VPV] VMware Paravirtual`nWhich controller type should be added [Other = OS Default]?&quot;)
			switch($RNCT) {
				&quot;BLP&quot; { $NCT = &quot;VirtualBusLogic&quot; }
				&quot;LLP&quot; { $NCT = &quot;VirtualLsiLogic&quot; }
				&quot;LLS&quot; { $NCT = &quot;VirtualLsiLogicSAS&quot; }
				&quot;VPV&quot; { $NCT = &quot;ParaVirtual&quot; }
				default { $NCT = &quot;Default&quot; }
			}
		}
	} else {
		Write-Host &quot;There is no empty slot on selected VM for adding any new SCSI Controller.&quot;
	}
	$Approve = Read-Host &quot;Please approve to create new $qty disk(s) for $vm with capacity of $cap GB&quot;

	if ($Approve -eq &quot;Yes&quot; -and $Qty -le $AHS -and $Cap -ge 0.001 -and $Cap -le 1024) {
		for ($j = 1; $j -le $Qty; $j++) {
			if ($j -eq 1 -and $NCR -like &quot;yes&quot; -and $NDSR -notlike &quot;yes&quot;) {
				New-HardDisk -VM $VM -CapacityGB $Cap -StorageFormat Thin | New-ScsiController -Type $NCT -Confirm:$false
				$SC = Get-VM -Name $VM | Get-ScsiController
				$SCT = $SC.count - 1
			} elseif ($j -eq 1 -and $NCR -like &quot;yes&quot; -and $NDSR -like &quot;yes&quot;) {
				New-HardDisk -VM $VM -CapacityGB $Cap -StorageFormat Thin -Datastore $SNDS | New-ScsiController -Type $NCT -Confirm:$false
				$SC = Get-VM -Name $VM | Get-ScsiController
				$SCT = $SC.count - 1
			} elseif ($j -ge 2 -and $NCR -like &quot;yes&quot; -and $NDSR -notlike &quot;yes&quot;) {
				New-HardDisk -VM $VM -CapacityGB $Cap -StorageFormat Thin -Controller &quot;SCSI controller $SCT&quot; -Confirm:$false
			} elseif ($j -ge 2 -and $NCR -like &quot;yes&quot; -and $NDSR -like &quot;yes&quot;) {
				New-HardDisk -VM $VM -CapacityGB $Cap -StorageFormat Thin -Controller &quot;SCSI controller $SCT&quot; -Datastore $SNDS -Confirm:$false
			} elseif ($NDSR -notlike &quot;yes&quot;) {
				New-HardDisk -VM $VM -CapacityGB $Cap -StorageFormat Thin -Confirm:$false
			} elseif ($NDSR -like &quot;yes&quot;) {
				New-HardDisk -VM $VM -CapacityGB $Cap -StorageFormat Thin -Datastore $SNDS -Confirm:$false
			}
		}
	} elseif ($Approve -ne &quot;Yes&quot;) {
		Write-Host &quot;Process terminated by user.&quot; -BackgroundColor Yellow -ForegroundColor Red
	} elseif ($Qty -gt $AHS) {
		Write-Host &quot;Can't create disk more than available free slot!&quot; -BackgroundColor Yellow -ForegroundColor Red
	} elseif ($Cap -lt 0.001 -or $Cap -gt 1024) {
		Write-Host &quot;Selected capacity is out of possible range!&quot; -BackgroundColor Yellow -ForegroundColor Red
	} else {
		Write-Host &quot;Please check given parameter and try again!&quot; -BackgroundColor Yellow -ForegroundColor Red
	}
} elseif ($AHS -eq 0) {
	Write-Host &quot;There is no empty slot on selected VM for adding any hard disk.&quot;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/11/mass-hard-disk-creator-ver-0-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerCLI and Networking</title>
		<link>http://www.kasraeian.com/2012/11/powercli-and-networking/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=powercli-and-networking</link>
		<comments>http://www.kasraeian.com/2012/11/powercli-and-networking/#comments</comments>
		<pubDate>Mon, 12 Nov 2012 23:34:35 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[ESXi 5.0]]></category>
		<category><![CDATA[Get-VirtualSwitch]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[New-NetworkAdapter]]></category>
		<category><![CDATA[New-VirtualPortGroup]]></category>
		<category><![CDATA[Using VMware PowerCLI]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware vSphere PowerCLI]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2355</guid>
		<description><![CDATA[In this post I&#8217;d try to demonstrate the usage of &#8220;VMware PowerCLI&#8221; in case of working in some network area, for more clear, I&#8217;d create new &#8220;Virtual Machine Port Group&#8221; and then would add new vNIC to VMs and connect them to the newly created &#8220;Port Group&#8221;. Step 1 &#8211; Creating new &#8220;Port Group&#8221; First [...]]]></description>
				<content:encoded><![CDATA[<p>In this post I&#8217;d try to demonstrate the usage of &#8220;VMware PowerCLI&#8221; in case of working in some network area, for more clear, I&#8217;d create new &#8220;Virtual Machine Port Group&#8221; and then would add new vNIC to VMs and connect them to the newly created &#8220;Port Group&#8221;.</p>
<p><strong>Step 1 &#8211; Creating new &#8220;Port Group&#8221;</strong></p>
<p>First of all, I&#8217;d checked the networking configuration of two standalone hosts under &#8220;HostConfigurationNetworking&#8221; and as it shown in the bellow screen shots, there is no &#8220;Virtual Machine Port Group&#8221; under &#8220;vSwitch1&#8243; and it&#8217;s only contain one &#8220;VMKernel&#8221; for vMotion purpose for each host.</p>
<p><a href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-01.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-01.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2359" style="border: 1px solid black;" title="P5-06-A-01" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-01.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-02.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-02.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2360" style="border: 1px solid black;" title="P5-06-A-02" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-02.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p>After running bellow &#8220;PowerCLI&#8221; command, one port group would be created on each host with indicated name as shown.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">$vmh = Get-VMHost; $vmh | %{ Get-VirtualSwitch -VMHost $_ | where {$_.name -like "vSwitch1"} | New-VirtualPortGroup -Name "Sync Channel"}</pre>
<p><a href="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-03.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-03.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2361" style="border: 1px solid black;" title="P5-06-A-03" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-03.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-04.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-04.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2362" style="border: 1px solid black;" title="P5-06-A-04" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-04.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-05.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-05.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2363" style="border: 1px solid black;" title="P5-06-A-05" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-A-05.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p>Now lets check each part of code:<span id="more-2355"></span></p>
<p>Bellow code would get a list of connected host and insert them in the &#8220;$vmh&#8221; variable, so this variable would contain names, and other information of connected hosts.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">$vmh = Get-VMHost;</pre>
<p>Bellow piece of code would repeat internal command which replaced by &#8220;dots&#8221; for each item in &#8220;$vmh&#8221; variable. if &#8220;$vmh&#8221; contain 2 items, internal commands would run twice and if &#8220;$vmh&#8221; contains 100 items then those commands would be run 100 times, each time for each item.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">$vmh | %{ ...... }</pre>
<p>Now the first part of internal commands would be &#8220;Get-VirtualSwitch -VMHost $_&#8221; and it will get the vSwitch information for each item passed to it;<br />
For being more clear, command would select 1 item among 100 in &#8220;$vmh&#8221; and then run the &#8220;Get-VirtualSwitch -VMH0st $_&#8221; command for it while the host name would be equal to the selected item the pipeline would pass the current information to the next command.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">$vmh | %{ Get-VirtualSwitch -VMHost $_ | .... }</pre>
<p>The first pipeline would help us to filter some data by passing data from left side to the right side, &#8220;Where {$_.name -like &#8220;vSwitch1&#8243;}&#8221;; up to now, one host selected and then its virtual switches and now by using &#8220;$_.name -like ***&#8221; only those switches would be selected which have the given pattern or name.<br />
Here, I&#8217;ve filter those switches which had &#8220;vSwitch1&#8243; name and then the result would be pass to the next part (right side) by using the pipeline again. :wink:</p>
<pre class="brush: powershell; gutter: true; first-line: 1">$vmh | %{ Get-VirtualSwitch -VMHost $_ | where {$_.name -like "vSwitch1"} | .... }</pre>
<p>The second command which is important and would do the main job is &#8220;New-VirtualPortGroup -Name &#8220;Sync Channel&#8221;"; as it self describe, this command would create new port group with name of &#8220;Sync Channel&#8221; on the vSwitch1 which passed from previous pipeline (left side) on the selected host from &#8220;$vmh&#8221;.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">$vmh | %{ Get-VirtualSwitch -VMHost $_ | where {$_.name -like "vSwitch1"} | New-VirtualPortGroup -Name "Sync Channel"}</pre>
<p><strong>Step 2 &#8211; Add new vNIC to VMs and connecting them</strong></p>
<p>I&#8217;m checking the VMs network connection both from both host networking view and from &#8220;Virtual Machine Properties&#8221; as shown in bellow pictures.</p>
<p><a href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-01.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-01.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2364" style="border: 1px solid black;" title="P5-06-B-01" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-01.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-02.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-02.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2365" style="border: 1px solid black;" title="P5-06-B-02" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-02.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-03.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-03.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2366" style="border: 1px solid black;" title="P5-06-B-03" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-03.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-04.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-04.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2367" style="border: 1px solid black;" title="P5-06-B-04" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-04.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p>As it shown in the above pictures, their two vNIC only connected to default &#8220;Virtual Machine Port Group&#8221; named &#8220;VM Network&#8221;; I did same check by using bellow &#8220;PowerCLI&#8221; commands.<br />
First get all VMs which are started by &#8220;NSCE&#8221; using &#8220;<span style="text-decoration: underline;">Get-VM NSCE*</span>&#8221; and then get their vNICs using bellow line.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">Get-VM NSCE* | Get-NetworkAdapter</pre>
<p><img class="alignnone size-thumbnail wp-image-2368" style="border: 1px solid black;" title="P5-06-B-05" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-05.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></p>
<p>It&#8217;s time to add new vNIC (3rd) to these VMs and it&#8217;s possible by just simply replacing the &#8220;Get-NetworkAdapter&#8221; with &#8220;New-NetworkAdapter&#8221;; this command needed some parameter in order to correctly and completely work.<br />
When passing the VM name using pipeline (from left to right), it&#8217;s possible to run the commend by only providing the &#8220;Port Group&#8221; which VMs should connect to; bellow I&#8217;ve added two more parameters for meeting my VMs requirement.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">Get-VM NSCE* | New-NetworkAdapter -NetworkName "Sync Channel" -StartConnected:$true -Type "e1000"</pre>
<p><a href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-06.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-06.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2369" style="border: 1px solid black;" title="P5-06-B-06" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-06.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p>Bellow image showing the VMs network adapter information I get using &#8220;PowerCLI&#8221;, &#8220;Virtual Machine Properties&#8221; windows and host networking view.</p>
<p><a href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-07.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-07.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2370" style="border: 1px solid black;" title="P5-06-B-07" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-07.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-08.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-08.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2371" style="border: 1px solid black;" title="P5-06-B-08" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-08.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-09.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-09.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2372" style="border: 1px solid black;" title="P5-06-B-09" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-09.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-10.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-10.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2373" style="border: 1px solid black;" title="P5-06-B-10" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-10.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-11.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-11.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2374" style="border: 1px solid black;" title="P5-06-B-11" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-06-B-11.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p><strong>Note:</strong><br />
There might be other ways for doing these tasks by using &#8220;VMware PowerCLI&#8221; but as I&#8217;m beginner this is as far as I got now, if I find other way for these tasks, I&#8217;d update this post as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/11/powercli-and-networking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerCLI on Server Core</title>
		<link>http://www.kasraeian.com/2012/11/powercli-on-server-core/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=powercli-on-server-core</link>
		<comments>http://www.kasraeian.com/2012/11/powercli-on-server-core/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 23:39:21 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Install-WindowsFeature]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[Using VMware PowerCLI]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware vSphere PowerCLI]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Windows Server 2012 Core]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2284</guid>
		<description><![CDATA[It&#8217;s possible and so easy to install &#8220;VMware PowerCLI&#8221; on the full edition of &#8220;Microsoft Windows (Client/Server)&#8221; (with GUI) but what about &#8220;Windows Server Core Edition&#8221;? I&#8217;ve tried to install it on &#8220;Microsoft Windows Server 2012 Core&#8221; and here I&#8217;m listing some little points needed to take care of. First of all, &#8220;VMware PowerCLI&#8221; needs &#8220;.NET [...]]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s possible and so easy to install &#8220;VMware PowerCLI&#8221; on the full edition of &#8220;Microsoft Windows (Client/Server)&#8221; (with GUI) but what about &#8220;Windows Server Core Edition&#8221;?</p>
<p>I&#8217;ve tried to install it on &#8220;Microsoft Windows Server 2012 Core&#8221; and here I&#8217;m listing some little points needed to take care of.<br />
First of all, &#8220;VMware PowerCLI&#8221; needs &#8220;.NET Framework 2.0&#8243; which is not installed by default, so it should be installed before starting the whole process.</p>
<p><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-01.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-01.jpg"><img class="alignnone size-thumbnail wp-image-2324" title="P5-05-01" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-01.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-02.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-02.jpg"><img class="alignnone size-thumbnail wp-image-2325" title="P5-05-02" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-02.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p>Adding or remove of new feature or rule is possible through command line or by using GUI on other server, here I&#8217;d install &#8220;.NET Framework&#8221; using PowerShell.</p>
<p><strong>Step 1 &#8211; installing &#8220;.NET Framework&#8221;</strong></p>
<p>Run &#8220;powershell&#8221; command so the normal command prompt would change to the &#8220;PS C:&gt;&#8221;.<span id="more-2284"></span></p>
<p>Check the current state of feature and rules by using bellow command</p>
<pre class="brush: powershell; gutter: true; first-line: 1">Get-WindowsFeature</pre>
<p>For being more detail, filter the output and just look for any rule or feature contains &#8220;NET&#8221; in their names.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">Get-WindowsFeature | where name -like net-*</pre>
<p><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-03.jpg.png')" onmouseout="removepreview()" href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-03.jpg"><img class="alignnone size-thumbnail wp-image-2326" title="P5-05-03" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-03.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p>The box behind &#8220;.NET Framework 3.5 Features&#8221; is empty but before starting the installation, lets simulate it and check if the process would be successful by using bellow command.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">Install-WindowsFeature -Name "NET-Framework-Features" -Source [CD-Network-Source] -Restart -WhatIf</pre>
<p><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-04.jpg.png')" onmouseout="removepreview()" href="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-04.jpg"><img class="alignnone size-thumbnail wp-image-2327" title="P5-05-04" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-04.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p>The &#8220;WhatIf&#8221; option would check the process and let us know the result, for installation, just remove the &#8220;WhatIf&#8221; and run the command again and after the installation, check the installed feature again.</p>
<pre class="brush: powershell; gutter: true; first-line: 1">Install-WindowsFeature -Name "NET-Framework-Features" -Source [CD-Network-Source] -Restart</pre>
<p><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-05.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-05.jpg"><img class="alignnone size-thumbnail wp-image-2328" title="P5-05-05" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-05.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-06.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-06.jpg"><img class="alignnone size-thumbnail wp-image-2329" title="P5-05-06" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-06.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-07.jpg.png')" onmouseout="removepreview()" href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-07.jpg"><img class="alignnone size-thumbnail wp-image-2330" title="P5-05-07" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-07.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p><strong>Step 2 &#8211; Installing &#8220;vSphere PowerCLI&#8221;</strong></p>
<p>The rest is simple and easy installation process as shown bellow.</p>
<p><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-08.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-08.jpg"><img class="alignnone size-thumbnail wp-image-2331" title="P5-05-08" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-08.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-09.jpg.png')" onmouseout="removepreview()" href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-09.jpg"><img class="alignnone size-thumbnail wp-image-2332" title="P5-05-09" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-09.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-10.jpg.png')" onmouseout="removepreview()" href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-10.jpg"><img class="alignnone size-thumbnail wp-image-2333" title="P5-05-10" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-10.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-11.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-11.jpg"><img class="alignnone size-thumbnail wp-image-2334" title="P5-05-11" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-11.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-12.jpg.png')" onmouseout="removepreview()" href="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-12.jpg"><img class="alignnone size-thumbnail wp-image-2335" title="P5-05-12" src="http://i1.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-12.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-13.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-13.jpg"><img class="alignnone size-thumbnail wp-image-2336" title="P5-05-13" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-13.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-14.jpg.png')" onmouseout="removepreview()" href="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-14.jpg"><img class="alignnone size-thumbnail wp-image-2337" title="P5-05-14" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-14.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a> <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-15.jpg.png')" onmouseout="removepreview()" href="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-15.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-15.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="alignnone size-thumbnail wp-image-2338" title="P5-05-15" src="http://i0.wp.com/www.kasraeian.com/wp-content/uploads/2012/11/P5-05-15.jpg?resize=150%2C150" alt="" data-recalc-dims="1" /></a></p>
<p><strong>Notes:</strong></p>
<p> <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=':?:' class='wp-smiley smiley-23' data-recalc-dims="1" /> It&#8217;s better to have the windows installation media somewhere close as it might be needed by some feature or rules.<br /> <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=':?:' class='wp-smiley smiley-23' data-recalc-dims="1" /> If the console (only interaction way) has been maximized, some prompt might go behind that, so making the window smaller might be better during this installation. (Image &#8220;P5-05-11&#8243;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/11/powercli-on-server-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual Storage Appliance (VSA)</title>
		<link>http://www.kasraeian.com/2012/11/virtual-storage-appliance-vsa/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=virtual-storage-appliance-vsa</link>
		<comments>http://www.kasraeian.com/2012/11/virtual-storage-appliance-vsa/#comments</comments>
		<pubDate>Fri, 09 Nov 2012 15:32:42 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Data ONTAP Edge]]></category>
		<category><![CDATA[DataCore]]></category>
		<category><![CDATA[FalconStor]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[OpenFiler]]></category>
		<category><![CDATA[SANsymphony-V]]></category>
		<category><![CDATA[StoreVirtual VSA]]></category>
		<category><![CDATA[StorMagic]]></category>
		<category><![CDATA[SvSAN]]></category>
		<category><![CDATA[Virtual Storage Appliance]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VSA]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2289</guid>
		<description><![CDATA[Today, I&#8217;ve searched for some possible Virtual Storage Appliance (VSA) options and found bellow products, some are popular and some are new (at least for me), so here the list. Brand Product Last Version Product Page Download Page Info VMware, Inc. vSphere Storage Appliance (VMware VSA) 5.1.1 link link Documentation HP StoreVirtual VSA ??? link [...]]]></description>
				<content:encoded><![CDATA[<p>Today, I&#8217;ve searched for some possible Virtual Storage Appliance (VSA) options and found bellow products, some are popular and some are new (at least for me), so here the list.</p>
<table>
<tbody>
<tr>
<td style="text-align: center;"><strong>Brand</strong></td>
<td style="text-align: center;"><strong>Product</strong></td>
<td style="text-align: center;"><strong>Last Version</strong></td>
<td style="text-align: center;"><strong>Product Page</strong></td>
<td style="text-align: center;"><strong>Download Page</strong></td>
<td style="text-align: center;"><strong>Info</strong></td>
</tr>
<tr>
<td>VMware, Inc.</td>
<td>vSphere Storage Appliance (VMware VSA)</td>
<td style="text-align: center;">5.1.1</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vmware.com/products/datacenter-virtualization/vsphere/vsphere-storage-appliance/overview.html.png')" onmouseout="removepreview()" href="http://www.vmware.com/products/datacenter-virtualization/vsphere/vsphere-storage-appliance/overview.html" target="_blank">link</a></td>
<td style="text-align: center;"><a href="https://my.vmware.com/web/vmware/info/slug/datacenter_cloud_infrastructure/vmware_vsphere_storage_appliance/5_1" target="_blank">link</a></td>
<td style="text-align: center;"><a href="http://www.vmware.com/support/pubs/vsphere-storage-appliance-pubs.html" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>HP</td>
<td>StoreVirtual VSA</td>
<td style="text-align: center;">???</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/h18006.www1.hp.com/products/storage/software/vsa/index.html.png')" onmouseout="removepreview()" href="http://h18006.www1.hp.com/products/storage/software/vsa/index.html" target="_blank">link</a></td>
<td style="text-align: center;"><a href="https://h20392.www2.hp.com/portal/swdepot/try.do?productNumber=P4000_DEMO" target="_blank">trial</a></td>
<td style="text-align: center;"><a href="http://h20195.www2.hp.com/v2/erl.aspx?keywords=p4000+vsa+lefthand&amp;logic=OR&amp;numberitems=25&amp;query=yes" target="_blank">Resource Library</a></td>
</tr>
<tr>
<td>NetApp</td>
<td>Data ONTAP Edge</td>
<td style="text-align: center;">8.1</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.netapp.com/us/products/platform-os/data-ontap-edge/.png')" onmouseout="removepreview()" href="http://www.netapp.com/us/products/platform-os/data-ontap-edge/" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/support.netapp.com/NOW/apbu/oemcp/protcd/evaluation/edge/.png')" onmouseout="removepreview()" href="http://support.netapp.com/NOW/apbu/oemcp/protcd/evaluation/edge/" target="_blank">trial</a></td>
<td style="text-align: center;"><a href="https://support.netapp.com/documentation/docweb/index.html?productID=61475" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>StorMagic</td>
<td>SvSAN/SvSAN 5</td>
<td style="text-align: center;">???</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.stormagic.com/index.php.png')" onmouseout="removepreview()" href="http://www.stormagic.com/index.php" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.stormagic.com/SvSAN_download.php.png')" onmouseout="removepreview()" href="http://www.stormagic.com/SvSAN_download.php" target="_blank">trial</a></td>
<td style="text-align: center;"><a href="http://www.stormagic.com/Resources.php" target="_blank">Resources</a></td>
</tr>
<tr>
<td>FalconStor</td>
<td>NSS Virtual Appliance</td>
<td style="text-align: center;">7.0</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.falconstor.com/products/network-storage-server/specifications?tab=nss-virtual-appliance.png')" onmouseout="removepreview()" href="http://www.falconstor.com/products/network-storage-server/specifications?tab=nss-virtual-appliance" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.falconstor.com/products/network-storage-server/nss-for-vmware-trial.png')" onmouseout="removepreview()" href="http://www.falconstor.com/products/network-storage-server/nss-for-vmware-trial" target="_blank">trial</a> / <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.falconstor.com/download-iscsi-san-for-free.png')" onmouseout="removepreview()" href="http://www.falconstor.com/download-iscsi-san-for-free" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://www.falconstor.com/library/documents/datasheets-and-solution-briefs" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>DataCore</td>
<td>SANsymphony-V Virtual SAN Appliance</td>
<td style="text-align: center;">9.?</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.datacore.com/Software/Closer-Look/virtual-san-appliance.aspx.png')" onmouseout="removepreview()" href="http://www.datacore.com/Software/Closer-Look/virtual-san-appliance.aspx" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.datacore.com/Software/Closer-Look/software-downloads.aspx.png')" onmouseout="removepreview()" href="http://www.datacore.com/Software/Closer-Look/software-downloads.aspx" target="_blank">link</a></td>
<td style="text-align: center;"><a href="http://www.datacore.com/Company/News/resource-center.aspx" target="_blank">Resource Center</a></td>
</tr>
<tr>
<td>Openfiler</td>
<td>Openfiler</td>
<td style="text-align: center;">2.3</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.openfiler.com/products.png')" onmouseout="removepreview()" href="http://www.openfiler.com/products" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.openfiler.com/community/download.png')" onmouseout="removepreview()" href="http://www.openfiler.com/community/download" target="_blank">link</a></td>
<td style="text-align: center;"><a href="http://www.openfiler.com/learn/" target="_blank">Documentation</a> / <a href="http://www.openfiler.com/about" target="_blank">About</a></td>
</tr>
<tr>
<td>Nexenta Systems, Inc.</td>
<td>NexentaStor Community Edition</td>
<td style="text-align: center;">3.1.3.5</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/nexentastor.org/.png')" onmouseout="removepreview()" href="http://nexentastor.org/" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.nexentastor.org/projects/site/wiki/CommunityEdition.png')" onmouseout="removepreview()" href="http://www.nexentastor.org/projects/site/wiki/CommunityEdition" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://nexentastor.org/projects/site/documents" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>OmniTI Computer Consulting, Inc.</td>
<td>OmniOS</td>
<td style="text-align: center;"> r151004</td>
<td style="text-align: center;"><a href="http://omnios.omniti.com/" target="_blank">link</a></td>
<td style="text-align: center;"><a href="http://omnios.omniti.com/wiki.php/Installation" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://omnios.omniti.com/wiki.php/WikiStart" target="_blank">Documentation</a> / <a href="http://omnios.omniti.com/wiki.php/VMwareNotes" target="_blank">VMware Note</a></td>
</tr>
</tbody>
</table>
<p>Also, There are some other applications or custom build OS which can be used to create a &#8220;Virtual Storage Server&#8221;.</p>
<table border="0">
<tbody>
<tr>
<td style="text-align: center;"><strong>Brand</strong></td>
<td style="text-align: center;"><strong>Product</strong></td>
<td style="text-align: center;"><strong>Last Version</strong></td>
<td style="text-align: center;"><strong>Product Page</strong></td>
<td style="text-align: center;"><strong>Download Page</strong></td>
<td style="text-align: center;"><strong>Info</strong></td>
</tr>
<tr>
<td>StarWind Software, Inc.</td>
<td>StarWind iSCSI SAN &amp; NAS (SAN)</td>
<td style="text-align: center;">6.0.4837</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.starwindsoftware.com/starwind-iscsi-san-overview.png')" onmouseout="removepreview()" href="http://www.starwindsoftware.com/starwind-iscsi-san-overview" target="_blank">link</a> / <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.starwindsoftware.com/starwind-free.png')" onmouseout="removepreview()" href="http://www.starwindsoftware.com/starwind-free" target="_blank">free version</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.starwindsoftware.com/registration-iscsi-san.png')" onmouseout="removepreview()" href="http://www.starwindsoftware.com/registration-iscsi-san" target="_blank">link</a> / <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.starwindsoftware.com/registration-iscsi-san-free.png')" onmouseout="removepreview()" href="http://www.starwindsoftware.com/registration-iscsi-san-free" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://www.starwindsoftware.com/editions-comparison" target="_blank">Editions Comparison</a> / <a href="http://www.starwindsoftware.com/resources" target="_blank">Resources</a></td>
</tr>
<tr>
<td>iXsystems, Inc.</td>
<td>FreeNAS</td>
<td style="text-align: center;">8.3</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.freenas.org/.png')" onmouseout="removepreview()" href="http://www.freenas.org/" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/sourceforge.net/projects/freenas/files/FreeNAS-8.3.0/.png')" onmouseout="removepreview()" href="http://sourceforge.net/projects/freenas/files/FreeNAS-8.3.0/" target="_blank">free</a></td>
<td style="text-align: center;"><a href="Documentation" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>NAS4Free</td>
<td>NAS4Free</td>
<td style="text-align: center;">9.1.0.1</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.nas4free.org.png')" onmouseout="removepreview()" href="http://www.nas4free.org" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.nas4free.org/downloads.html.png')" onmouseout="removepreview()" href="http://www.nas4free.org/downloads.html" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://wiki.nas4free.org/doku.php" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>OpenIndiana</td>
<td>OpenIndiana</td>
<td style="text-align: center;">151a5</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/openindiana.org/.png')" onmouseout="removepreview()" href="http://openindiana.org/" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/openindiana.org/download/#text.png')" onmouseout="removepreview()" href="http://openindiana.org/download/#text" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://openindiana.org/support/documentation/" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>Illumian Project</td>
<td>Illumian</td>
<td style="text-align: center;">1.0</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/illumian.org.png')" onmouseout="removepreview()" href="http://illumian.org" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/illumian.org/download.htm.png')" onmouseout="removepreview()" href="http://illumian.org/download.htm" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://wiki.illumos.org/display/illumos/illumian" target="_blank">Documentation</a></td>
</tr>
<tr>
<td>ZFSguru</td>
<td>ZFSguru</td>
<td style="text-align: center;">0.2-beta8</td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/zfsguru.com.png')" onmouseout="removepreview()" href="http://zfsguru.com" target="_blank">link</a></td>
<td style="text-align: center;"><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/zfsguru.com/download.png')" onmouseout="removepreview()" href="http://zfsguru.com/download" target="_blank">free</a></td>
<td style="text-align: center;"><a href="http://zfsguru.com/doc" target="_blank">Documentation</a> / <a href="http://zfsguru.com/doc/roadmap" target="_blank">Roadmap</a></td>
</tr>
<tr>
<td>Server Elements</td>
<td>NASLite-2 / NASLite-M2</td>
<td style="text-align: center;">2.67 / 1.67</td>
<td style="text-align: center;"><a href="http://www.serverelements.com/?target=Products" target="_blank">link</a></td>
<td style="text-align: center;">-</td>
<td style="text-align: center;"><a href="http://www.serverelements.com/?target=Documentation" target="_blank">Documentation</a></td>
</tr>
</tbody>
</table>
<p style="text-align: left;"><strong>Update 1 [Nov 10, 2012]:</strong><br />
Thanks to &#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/storageboy.com/.png')" onmouseout="removepreview()" href="http://storageboy.com/">David Robertson</a> (<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/twitter.com/#!/@daverdfw.png')" onmouseout="removepreview()" href="http://twitter.com/#!/@daverdfw" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/twitter.com/#!/@daverdfw.png')" onmouseout="removepreview()" onclick="removepreview()">@daverdfw</a> <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=')' class='wp-smiley smiley-20' data-recalc-dims="1" /> for his kind help, &#8220;FreeNAS, NAS4Free and Nexenta Community Edition&#8221; has been added.</p>
<p style="text-align: left;"><strong>Update 2 [Nov 11, 2012]:</strong><br />
&#8220;OmniOS&#8221;, &#8220;NASLite-2/NASLite-M2&#8243; as well as &#8220;Info&#8221; section has been added.</p>
<p style="text-align: left;"> <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=':?:' class='wp-smiley smiley-23' data-recalc-dims="1" /> There might be other VSA as well and I&#8217;d be happy and thankful if you kindly share any others VSA you know, so I&#8217;d update this table.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/11/virtual-storage-appliance-vsa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2012 as Home Lab Storage Server</title>
		<link>http://www.kasraeian.com/2012/09/windows-server-2012-as-home-lab-storage-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-server-2012-as-home-lab-storage-server</link>
		<comments>http://www.kasraeian.com/2012/09/windows-server-2012-as-home-lab-storage-server/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 08:29:32 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[ESXi 5.0]]></category>
		<category><![CDATA[ESXi 5.1]]></category>
		<category><![CDATA[iSCSI]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware vSphere PowerCLI]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vSphere 5.x]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows Server 2012]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2237</guid>
		<description><![CDATA[After long absence I&#8217;m starting my work on this blog and other projects. For the first post I&#8217;d try to summarize the step needed to install and configure iSCSI or NFS server by using &#8220;Microsoft Windows Server 2012&#8243; for home lab based on &#8220;VMware ESXi 5.x&#8221; but for step-by-step visual guide &#8220;Windows Server 2012 &#8211; File and [...]]]></description>
				<content:encoded><![CDATA[<p>After long absence I&#8217;m starting my work on this blog and other projects. For the first post I&#8217;d try to summarize the step needed to install and configure iSCSI or NFS server by using &#8220;Microsoft Windows Server 2012&#8243; for home lab based on &#8220;VMware ESXi 5.x&#8221; but for step-by-step visual guide &#8220;<a title="Windows Server 2012 - File and Storage Services" href="http://www.kasraeian.com/step-by-step-visual-guide/windows-server-2012-file-and-storage-services" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/step-by-step-visual-guide/windows-server-2012-file-and-storage-services.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">Windows Server 2012 &#8211; File and Storage Services</a>&#8221; page can be check.  <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=':wink:' class='wp-smiley smiley-20' data-recalc-dims="1" /> </p>
<p><span style="font-size: medium;"><strong>Requirements:</strong></span><br />Virtual/Physical server with Windows Server 2012<br />Host/vHost with VMware ESXi 5.x<br />Server should have some free space to be able to present them as NFS or iSCSI storage.</p>
<p><span style="font-size: medium;"><strong>Config #1 &#8211; iSCSI implementation</strong></span><br />First of all make sure &#8220;VMware ESXi&#8221; hosts can use and connect to iSCSI storage, for more information on &#8220;Basic software iSCSI setup&#8221;, <a title="Configuring and troubleshooting basic software iSCSI setup" href="http://kb.vmware.com/kb/1008083" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/kb.vmware.com/kb/1008083.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">KB1008083</a> can be checked.</p>
<p>On the server side, &#8220;iSCSI Target Server&#8221; role should be install from &#8220;Server ManagerManageAdd Roles and FeaturesFile And Storage ServicesFile and iSCSI Services&#8221; and then configured.</p>
<p>After installation of role completed successfully, open the &#8220;Server Manager&#8221; and select &#8220;File and Storage Services&#8221;; now by selecting &#8220;iSCSI&#8221; option, server can create new virtual disk and present them (as LUN) to other server (initiators) or simply edit/delete existing iSCSI virtual disks and targets.</p>
<p>For creating new iSCSI virtual disk and target, right click on free space area of &#8220;iSCSI VIRTUAL DISKS&#8221; and select &#8220;New iSCSI Virtual Disk&#8221;; in the first step of wizard window select one drive with sufficient disk space and press &#8220;Next&#8221;.</p>
<p>In &#8220;iSCSI Virtual Disk Name&#8221; type file name for new virtual disk and for future use and simplicity enter short description for it and press &#8220;Next&#8221;. for example:<br />Name: Pro-iSCSI-C1<br />Description: iSCSI virtual disk for production server on cluster 01</p>
<p>Now, based on free space showing and space needed to present to other servers enter the disk size.</p>
<p>It&#8217;s possible to create new iSCSI Target or use the existing one;<br />By creating new one, new virtual disk would be presented as LUN0 on new target.<br />By selecting from existing &#8220;Targets&#8221;, the new virtual disk would be other LUN on that target, for example LUN2 on Target1.</p>
<p>Check the confirmation information and if everything is correct press the &#8220;Create&#8221; button, after short time new virtual disk (LUN) would be ready to present.</p>
<p>Microsoft Windows Server 2012 is like other iSCSI servers/targets and VMware ESXi host can connect to this &#8220;iSCSI Target&#8221; as well and work.</p>
<p><span style="color: #ff0000;"><strong>Notes:<br /></strong></span>Please note that &#8220;Microsoft Windows Server 2012&#8243; would create one file on selected drive for each virtual disk and would assign disk space to that file based on size which would be configure later! for example if 40 GB selected for size of one virtual disk, one file with 40 GB size would be created. (Pre-allocate)</p>
<p><strong style="font-size: medium;">Config #2 &#8211; NFS implementation</strong></p>
<p>Creating and using NFS on Windows Server is easy and straight forward process; bellow steps can help to prepare and present NFS Storage to the VMware ESXi 5.x. </p>
<p>First of all, install &#8220;Server for NFS&#8221; role from &#8220;Server ManagerManageFile And Storage ServicesFile and iSCSI Services&#8221; and then few clicks is needed to make this feature up and running.</p>
<p>After successful installation of NFS role, right click on selected drive or folder and select &#8220;Properties&#8221;. then select &#8220;NFS Sharing&#8221; tab and press the &#8220;Manage NFS Sharing &#8230;&#8221; button; as this share would be presented to VMware ESXi, few changes should be made to the default settings.</p>
<p>Make sure the &#8220;Allow unmapped user Unix access (by UID/GID)&#8221; radio button should be selected.</p>
<p>If this &#8220;NFS Share&#8221; should be able to be written by VMs and Hosts, the &#8220;Type of access&#8221; on the &#8220;NFS Share Permission&#8221; window should be change from &#8220;Read-Only&#8221; to &#8220;Read-Write&#8221;.</p>
<p>The last step would be adding NFS Share to the VMware ESXi hosts and it can be easily done by pressing &#8220;Add Storage &#8230;&#8221; from &#8220;HostConfigurationStorage&#8221;; in the new window select the &#8220;Network File System&#8221; and in the next step provide the server name/ip and &#8220;NFS Share&#8221; address.</p>
<p>&#8220;NFS Share&#8221; address or &#8220;Folder&#8221; would be the name of NFS starting with &#8220;<strong>/</strong>&#8220;; for example, if I made folder on Windows with name of NFS_Share and share that with same name on &#8220;NFS Share Tab&#8221; I should give &#8220;/NFS_Share&#8221; as the folder or address here.</p>
<p>And the last part would be &#8220;Datastore Name&#8221; which would be appear on the &#8220;Datastores&#8221; list.</p>
<p><strong style="color: #ff0000;">Notes:<br /></strong>One drive can be selected for NFS share and the whole process is the same as for folders, but if the drive is selected for  be done simply for one or more folder with same process.</p>
<p>If drive is selected for being shared as &#8220;NFS Share&#8221; two or more hidden folders might be visible on the &#8220;Datastore Browser&#8221;; folders like &#8220;$RECYCLE.BIN&#8221; or &#8220;System Volume Information&#8221;.</p>
<p>Kerberos option can be checked or unchecked and this change don&#8217;t prevent hosts from adding and using &#8220;NFS Share&#8221;.</p>
<p>Also it&#8217;s possible to use &#8220;NFS Shares&#8221; with both &#8220;Root Access Disallowed&#8221; and &#8220;Root Access Allowed&#8221; configuration.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/09/windows-server-2012-as-home-lab-storage-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware vSphere 5.1</title>
		<link>http://www.kasraeian.com/2012/09/vmware-vsphere-5-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-vsphere-5-1</link>
		<comments>http://www.kasraeian.com/2012/09/vmware-vsphere-5-1/#comments</comments>
		<pubDate>Wed, 12 Sep 2012 14:03:52 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[ESXi 5.1]]></category>
		<category><![CDATA[vMA]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware vCLI]]></category>
		<category><![CDATA[VMware vSphere Management Assistant]]></category>
		<category><![CDATA[VMware vSphere PowerCLI]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vSphere 5.1]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2223</guid>
		<description><![CDATA[Few days back, &#8220;VMware, Inc.&#8221; has released newest version of &#8220;VMware vSphere&#8221; (Sept 10, 2012) and in this post, I want to share some links for documents, pages and posters. All in one place: Thanks to &#8220;Eric Siebert&#8220;, Here is a another great post on his site (vSphere-Land) which will help you find all links for applications, documents and [...]]]></description>
				<content:encoded><![CDATA[<p>Few days back, &#8220;VMware, Inc.&#8221; has released newest version of &#8220;VMware vSphere&#8221; (Sept 10, 2012) and in this post, I want to share some links for documents, pages and posters.</p>
<p><span style="font-size: medium;"><strong>All in one place:</strong></span><br />
Thanks to &#8220;<strong>Eric Siebert</strong>&#8220;, <a title="vSphere 5.1 Link-O-Rama" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/vsphere-land.com/news/vsphere-51-link-o-rama.html.png')" onmouseout="removepreview()" href="http://vsphere-land.com/news/vsphere-51-link-o-rama.html" target="_blank">Here</a> is a another great post on his site (<a title="vSphere-Land" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/vsphere-land.com/.png')" onmouseout="removepreview()" href="http://vsphere-land.com/" target="_blank">vSphere-Land</a>) which will help you find all links for applications, documents and KB and lots more.</p>
<p><span style="font-size: medium;"><strong>Pages:</strong></span><br />
VMware vSphere PowerCLI ( <a title="VMware vSphere PowerCLI Main Page" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/communities.vmware.com/community/vmtn/server/vsphere/automationtools/powercli.png')" onmouseout="removepreview()" href="http://communities.vmware.com/community/vmtn/server/vsphere/automationtools/powercli" target="_blank">Link</a> )<br />
VMware vSphere Command-Line Interface [vCLI] ( <a title="VMware vSphere Command-Line Interface (vCLI) Main Page" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/communities.vmware.com/community/vmtn/server/vsphere/automationtools/vsphere_cli.png')" onmouseout="removepreview()" href="http://communities.vmware.com/community/vmtn/server/vsphere/automationtools/vsphere_cli" target="_blank">Link</a> )<br />
VMware vSphere Management Assistant [vMA] ( <a title="VMware vSphere Management Assistant (vMA) Main Page" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/communities.vmware.com/community/vmtn/server/vsphere/automationtools/vima.png')" onmouseout="removepreview()" href="http://communities.vmware.com/community/vmtn/server/vsphere/automationtools/vima" target="_blank">Link</a> )</p>
<p><span style="font-size: medium;"><strong>Applications:</strong></span><br />
VMware vSphere PowerCLI ( <a title="Version: 5.1.0 R1" href="https://my.vmware.com/group/vmware/get-download?downloadGroup=VSP510-PCLI-510" target="_blank">Main</a>, <a title="Version: 5.1.0 R1" href="https://my.vmware.com/group/vmware/get-download?downloadGroup=PCLI51R1T" target="_blank">Tenant</a> )<br />
VMware vSphere Command-Line Interface [vCLI] ( <a title="Version: 5.1" href="https://my.vmware.com/group/vmware/details?downloadGroup=VSP510-VCLI-510&amp;productId=285" target="_blank">Main</a> )<br />
VMware vSphere Management Assistant [vMA] ( <a title="Version: 5.1.0" href="https://my.vmware.com/group/vmware/get-download?downloadGroup=VSP510-VMA-510" target="_blank">Link</a> )</p>
<p><span style="font-size: medium;"><strong>Documentation:</strong></span><br />
VMware vSphere PowerCLI ( <a title="General" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vmware.com/support/developer/PowerCLI/.png')" onmouseout="removepreview()" href="http://www.vmware.com/support/developer/PowerCLI/" target="_blank">Main</a>, <a title="General" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vmware.com/support/developer/PowerCLIforTenants/.png')" onmouseout="removepreview()" href="http://www.vmware.com/support/developer/PowerCLIforTenants/" target="_blank">Tenant</a> )<br />
VMware vSphere Command-Line Interface [vCLI] ( <a title="General" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vmware.com/support/developer/vcli/.png')" onmouseout="removepreview()" href="http://www.vmware.com/support/developer/vcli/" target="_blank">Main</a> )<br />
VMware vSphere Management Assistant [vMA] ( <a title="General" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vmware.com/support/developer/vima/.png')" onmouseout="removepreview()" href="http://www.vmware.com/support/developer/vima/" target="_blank">Link</a> )</p>
<p><span style="font-size: medium;"><strong>Posters:</strong></span><br />
VMware vSphere PowerCLI 5.1 Poster ( <a title="Source Page" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/blogs.vmware.com/vipowershell/2012/09/powercli-5-1-poster.html.png')" onmouseout="removepreview()" href="http://blogs.vmware.com/vipowershell/2012/09/powercli-5-1-poster.html" target="_blank">Page</a>, <a title="PDF Version" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/blogs.vmware.com/vipowershell/files/2012/09/PowerCLI_5_1_Poster.pdf.png')" onmouseout="removepreview()" href="http://blogs.vmware.com/vipowershell/files/2012/09/PowerCLI_5_1_Poster.pdf" target="_blank">PDF</a> )<br />
VMware vCloud Networking Poster ( <a title="Source Page" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/blogs.vmware.com/vsphere/2012/09/vmware-vcloud-networking-poster.html.png')" onmouseout="removepreview()" href="http://blogs.vmware.com/vsphere/2012/09/vmware-vcloud-networking-poster.html" target="_blank">Page</a>, <a title="PDF Version" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/blogs.vmware.com/vsphere/files/2012/09/VMW-vCloud-Networking-Poster2.pdf.png')" onmouseout="removepreview()" href="http://blogs.vmware.com/vsphere/files/2012/09/VMW-vCloud-Networking-Poster2.pdf" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/blogs.vmware.com/vsphere/files/2012/09/VMW-vCloud-Networking-Poster2.pdf.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">PDF</a> )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/09/vmware-vsphere-5-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SlideRocket &amp; Microsoft Certifications</title>
		<link>http://www.kasraeian.com/2012/06/sliderocket-microsoft-certifications/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sliderocket-microsoft-certifications</link>
		<comments>http://www.kasraeian.com/2012/06/sliderocket-microsoft-certifications/#comments</comments>
		<pubDate>Sat, 09 Jun 2012 22:00:32 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[MCSA]]></category>
		<category><![CDATA[MCSA: Windows Server 2012]]></category>
		<category><![CDATA[MCSE]]></category>
		<category><![CDATA[MCSE: Desktop Infrastructure]]></category>
		<category><![CDATA[MCSE: Server Infrastructure]]></category>
		<category><![CDATA[Microsoft Certification]]></category>
		<category><![CDATA[SlideRocket]]></category>
		<category><![CDATA[Windows Server 2012 certification]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2192</guid>
		<description><![CDATA[This post a little different from my other posts here and title might look unrelated but here the story. I&#8217;ve made a little online presentation (road map) using &#8220;SlideRocket&#8221; for &#8220;Microsoft Certifications&#8221; and I&#8217;m going to update time to time based on &#8220;Microsoft&#8221; announcements. When I tried to place it here (tested both post and [...]]]></description>
				<content:encoded><![CDATA[<p>This post a little different from my other posts here and title might look unrelated but here the story.</p>
<p>I&#8217;ve made a little online presentation (road map) using &#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.sliderocket.com/.png')" onmouseout="removepreview()" href="http://www.sliderocket.com/" target="_blank">SlideRocket</a>&#8221; for &#8220;Microsoft Certifications&#8221; and I&#8217;m going to update time to time based on &#8220;Microsoft&#8221; announcements.<br />
When I tried to place it here (tested both post and page), I just found out &#8220;WordPress&#8221; is not supporting &#8220;iframes&#8221; for some reasons so after searching for solution online (instead of looking for it in &#8220;SildeRocket&#8221; Support portal) I found multiple plugins for handling this situation and bellow you can find some of them; I&#8217;ve chosen &#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/wordpress.org/extend/plugins/iframe/.png')" onmouseout="removepreview()" href="http://wordpress.org/extend/plugins/iframe/" target="_blank">iframes</a>&#8221; plugin just based on its information on &#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/wordpress.org/extend/plugins/iframe/other_notes/.png')" onmouseout="removepreview()" href="http://wordpress.org/extend/plugins/iframe/other_notes/" target="_blank">Other Notes</a>&#8221; tab.</p>
<ol>
<li><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/wordpress.org/extend/plugins/iframe/.png')" onmouseout="removepreview()" href="http://wordpress.org/extend/plugins/iframe/" target="_blank">iframes</a></li>
<li><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/wordpress.org/extend/plugins/embed-iframe/.png')" onmouseout="removepreview()" href="http://wordpress.org/extend/plugins/embed-iframe/" target="_blank">embed-iframe</a></li>
<li><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/wordpress.org/extend/plugins/advanced-iframe/.png')" onmouseout="removepreview()" href="http://wordpress.org/extend/plugins/advanced-iframe/" target="_blank">Advanced iframe</a></li>
<li><a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/wordpress.org/extend/plugins/iframe-preserver/.png')" onmouseout="removepreview()" href="http://wordpress.org/extend/plugins/iframe-preserver/" target="_blank">Iframe Preserver</a></li>
</ol>
<p>And now, here is the presentation; it&#8217;s based on certifications related to &#8220;Windows Server 2012&#8243; and it made on &#8220;June 8, 2012&#8243;.</p>

<!-- iframe plugin v.2.6 wordpress.org/extend/plugins/iframe/ -->
<iframe src="http://app.sliderocket.com:80/app/fullplayer.aspx?id=face4dd5-341e-4614-bdbc-0a31be5efa24" width="600" scrolling="no" frameborder="0" height="480" class="iframe-class"></iframe>
<p>If you are interested on &#8220;Microsoft Certification&#8221; you can check &#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.microsoft.com/learning/en/us/default.aspx.png')" onmouseout="removepreview()" href="http://www.microsoft.com/learning/en/us/default.aspx" target="_blank">Microsoft Learning</a>&#8221; or visiting/bookmarking <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/portal.sliderocket.com/Kasraeian/Microsoft-Certifications.png')" onmouseout="removepreview()" href="http://portal.sliderocket.com/Kasraeian/Microsoft-Certifications" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/portal.sliderocket.com/Kasraeian/Microsoft-Certifications.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">this link</a> as I&#8217;m going to keep it simple and update.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/06/sliderocket-microsoft-certifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using VMware PowerCLI (#007) &#8211; Remote PowerCLI</title>
		<link>http://www.kasraeian.com/2012/06/using-vmware-powercli-007-remote-powercli/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-vmware-powercli-007-remote-powercli</link>
		<comments>http://www.kasraeian.com/2012/06/using-vmware-powercli-007-remote-powercli/#comments</comments>
		<pubDate>Mon, 04 Jun 2012 21:03:53 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[Remote Desktop Services]]></category>
		<category><![CDATA[RemoteApp]]></category>
		<category><![CDATA[Terminal Service]]></category>
		<category><![CDATA[Using VMware PowerCLI]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware vSphere PowerCLI]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2144</guid>
		<description><![CDATA[I&#8217;m working on new SMB project which need running application remotely and I thought it&#8217;s good time to work on &#8220;Microsoft Remote Desktop Service&#8221; on &#8220;Windows Server 2008 R2 SP1&#8243;. In this case, server should be configured in a way to present application for remote access and here I came up with idea of presenting [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m working on new SMB project which need running application remotely and I thought it&#8217;s good time to work on &#8220;Microsoft Remote Desktop Service&#8221; on &#8220;Windows Server 2008 R2 SP1&#8243;.<br />
In this case, server should be configured in a way to present application for remote access and here I came up with idea of presenting &#8220;VMware PowerCLI&#8221; for remote access to the lab, this way it will save some bandwidth and speed up the whole process.<br />
Well, There might be (guess there&#8217;s) a way for connecting to Other server and use PowerCLI remotely but I didn&#8217;t look for it yet, so for those who know the way, it might look super-complex way of doing simple work.  <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=':wink:' class='wp-smiley smiley-20' data-recalc-dims="1" /> </p>
<p>Bellow, you can find related steps I&#8217;ve taken so far &#8230;</p>

<div class="ngg-galleryoverview" id="ngg-gallery-12-2144">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.kasraeian.com/2012/06/using-vmware-powercli-007-remote-powercli/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-138" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-01.jpg" title="Optional #1&lt;br /&gt;In first step, &quot;Desktop Experience&quot; should be added to the installed features as it might be needed in future." class="shutterset_set_12" >
								<img title="p4-20-01" alt="p4-20-01" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-01.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-139" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-02.jpg" title="Optional #1&lt;br /&gt;Select &quot;Desktop Experience&quot; and continue the process" class="shutterset_set_12" >
								<img title="p4-20-02" alt="p4-20-02" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-02.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-140" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-03.jpg" title="Optional #1" class="shutterset_set_12" >
								<img title="p4-20-03" alt="p4-20-03" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-03.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-141" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-04.jpg" title="Optional #1" class="shutterset_set_12" >
								<img title="p4-20-04" alt="p4-20-04" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-04.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-142" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-05.jpg" title="Optional #1&lt;br /&gt;After installation of this feature the server should be restarted to apply the changes." class="shutterset_set_12" >
								<img title="p4-20-05" alt="p4-20-05" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-05.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-143" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-06.jpg" title="Optional #1&lt;br /&gt;Server has been restarted and everything is installed successfully" class="shutterset_set_12" >
								<img title="p4-20-06" alt="p4-20-06" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-06.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-144" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-07.jpg" title="Optional #1&lt;br /&gt;Checking current &quot;Features&quot;" class="shutterset_set_12" >
								<img title="p4-20-07" alt="p4-20-07" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-07.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-145" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-08.jpg" title="Optional #2&lt;br /&gt;As first &quot;Role&quot;, &quot;Remote Desktop Web Access&quot; could be install so user can gain access to desktops and &quot;RemoteApps&quot; using web browser." class="shutterset_set_12" >
								<img title="p4-20-08" alt="p4-20-08" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-08.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-146" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-09.jpg" title="Optional #2" class="shutterset_set_12" >
								<img title="p4-20-09" alt="p4-20-09" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-09.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-147" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-10.jpg" title="Optional #2&lt;br /&gt;Select &quot;Remote Desktop&quot; role from list" class="shutterset_set_12" >
								<img title="p4-20-10" alt="p4-20-10" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-10.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-148" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-11.jpg" title="Optional #2&lt;br /&gt;Introduction to &quot;Remote Desktop Services&quot;" class="shutterset_set_12" >
								<img title="p4-20-11" alt="p4-20-11" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-11.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-149" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-12.jpg" title="Optional #2&lt;br /&gt;All role services can be checked but currently &quot;Remote Desktop Web Access&quot; (RDWA) is needed to be installed" class="shutterset_set_12" >
								<img title="p4-20-12" alt="p4-20-12" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-12.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-150" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-13.jpg" title="Optional #2&lt;br /&gt;RDWA needed &quot;Web Server (IIS)&quot; to be installed on the server so it can present web pages and applications via web." class="shutterset_set_12" >
								<img title="p4-20-13" alt="p4-20-13" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-13.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-151" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-14.jpg" title="Optional #2&lt;br /&gt;Note the web address mentioned in the &quot;Confirmation&quot; page" class="shutterset_set_12" >
								<img title="p4-20-14" alt="p4-20-14" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-14.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-152" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-15.jpg" title="Optional #2" class="shutterset_set_12" >
								<img title="p4-20-15" alt="p4-20-15" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-15.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-153" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-16.jpg" title="Optional #2&lt;br /&gt;One or more warning might be shown up, based on server configuration.&lt;br /&gt;Here, first warning is because I've disabled automatic update." class="shutterset_set_12" >
								<img title="p4-20-16" alt="p4-20-16" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-16.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-154" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-17.jpg" title="Optional #2&lt;br /&gt;&quot;Remote Desktop Services&quot; and &quot;Web Server (IIS)&quot; has been installed successfully." class="shutterset_set_12" >
								<img title="p4-20-17" alt="p4-20-17" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-17.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-155" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-18.jpg" title="Optional #3&lt;br /&gt;If there is valid generated certificate for this web server it can be change easily.&lt;br /&gt;Open the &quot;Internet Information Services (IIS) Manager&quot;, select the Server Name, double click on the &quot;Server Certificate&quot;.&lt;br /&gt;now check the default server certificate." class="shutterset_set_12" >
								<img title="p4-20-18" alt="p4-20-18" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-18.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-156" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-19.jpg" title="Optional #3&lt;br /&gt;New certificate from existing CA Server in domain can be added by selecting &quot;Create Domain Certificate ...&quot; from action panel.&lt;br /&gt;&lt;strong&gt;In the &quot;Common Name&quot; provide the FQDN for the server.&lt;/strong&gt;" class="shutterset_set_12" >
								<img title="p4-20-19" alt="p4-20-19" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-19.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-157" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-20.jpg" title="Optional #3&lt;br /&gt;Select the existing &quot;CA Server&quot; and provide friendly name for saving the new Certificate under this name." class="shutterset_set_12" >
								<img title="p4-20-20" alt="p4-20-20" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-20.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-158" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-21.jpg" title="Optional #3&lt;br /&gt;Check if the new certificate installed correctly" class="shutterset_set_12" >
								<img title="p4-20-21" alt="p4-20-21" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-21.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-159" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-22.jpg" title="Optional #3&lt;br /&gt;Change the site certificate from default (self-signed) certificate to newly generated certificate&lt;br /&gt;Select &quot;Sites&quot; from connections panel, select the default site and press &quot;Bindings ...&quot; on action panel.&lt;br /&gt;Edit &quot;https&quot; binding and select friendly name which has been given to new certificate." class="shutterset_set_12" >
								<img title="p4-20-22" alt="p4-20-22" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-22.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-160" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-23.jpg" title="Optional #4&lt;br /&gt;Browse the installed site&lt;br /&gt;https://IP_or_Name/RDWeb/" class="shutterset_set_12" >
								<img title="p4-20-23" alt="p4-20-23" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-23.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-161" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-24.jpg" title="Optional #4&lt;br /&gt;In the &quot;Configuration&quot; tab, select &quot;One or more RemoteApp sources&quot; and specify the server name." class="shutterset_set_12" >
								<img title="p4-20-24" alt="p4-20-24" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-24.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-162" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-25.jpg" title="Optional #4&lt;br /&gt;&quot;RemoteApp Programs&quot; should be empty as no application gas been added to it." class="shutterset_set_12" >
								<img title="p4-20-25" alt="p4-20-25" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-25.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-163" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-26.jpg" title="Time to add main/primary &quot;role service&quot;" class="shutterset_set_12" >
								<img title="p4-20-26" alt="p4-20-26" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-26.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-164" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-27.jpg" title="Select the &quot;Remote Desktop Session Host&quot;&lt;br /&gt;This role service will enable the server to present desktop, resources and applications to users." class="shutterset_set_12" >
								<img title="p4-20-27" alt="p4-20-27" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-27.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-165" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-28.jpg" title="Read the warning and Microsoft recommendation" class="shutterset_set_12" >
								<img title="p4-20-28" alt="p4-20-28" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-28.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-166" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-29.jpg" title="If all users are using OS and RDP Client which support &quot;NLA&quot; then select the first one, here for doing some tests I've selected the second which is less secure." class="shutterset_set_12" >
								<img title="p4-20-29" alt="p4-20-29" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-29.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-167" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-30.jpg" title="Time for licensing part, select the licensing based on bought licenses or what's in the plan for future to be bought" class="shutterset_set_12" >
								<img title="p4-20-30" alt="p4-20-30" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-30.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-168" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-31.jpg" title="Specify the users and groups who going to have access to this server." class="shutterset_set_12" >
								<img title="p4-20-31" alt="p4-20-31" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-31.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-169" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-32.jpg" title="I didn't select this option during this test for simplifying the whole process and tracking problems (if there be any) easier." class="shutterset_set_12" >
								<img title="p4-20-32" alt="p4-20-32" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-32.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-170" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-33.jpg" title="Review the settings and continue" class="shutterset_set_12" >
								<img title="p4-20-33" alt="p4-20-33" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-33.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-171" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-34.jpg" title=" " class="shutterset_set_12" >
								<img title="p4-20-34" alt="p4-20-34" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-34.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-172" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-35.jpg" title="Second restart if &quot;Desktop Experience&quot; (Optional #1) has been added before." class="shutterset_set_12" >
								<img title="p4-20-35" alt="p4-20-35" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-35.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-173" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-36.jpg" title="After restart the installation would be finish.&lt;br /&gt;
First warning in this screen shot is because of my &quot;Automatic Update&quot; setting.&lt;br /&gt;Error has been occurred because I had stopped and disabled &quot;Windows Firewall&quot; service. (&lt;a href=&quot;http://support.microsoft.com/kb/2027551&quot; target=&quot;_blank&quot; &gt;Related KB&lt;/a&gt;)" class="shutterset_set_12" >
								<img title="p4-20-36" alt="p4-20-36" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-36.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-174" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-37.jpg" title="Checking if &quot;Remote Desktop Session Host&quot; has been installed successfully." class="shutterset_set_12" >
								<img title="p4-20-37" alt="p4-20-37" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-37.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-175" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-38.jpg" title="Running the &quot;RemoteApp Manager&quot;&lt;br /&gt;Path: &quot;Start\Administrative Tools\Remote Desktop Services\RemoteApp Manager&quot;" class="shutterset_set_12" >
								<img title="p4-20-38" alt="p4-20-38" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-38.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-176" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-39.jpg" title="Optional #5&lt;br /&gt;For adding one more security layer, &quot;Digital Signature Settings&quot; can be configured." class="shutterset_set_12" >
								<img title="p4-20-39" alt="p4-20-39" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-39.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-177" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-40.jpg" title="Optional #5&lt;br /&gt;Select the &quot;Sign with a digital certificate&quot; and press &quot;Change&quot;" class="shutterset_set_12" >
								<img title="p4-20-40" alt="p4-20-40" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-40.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-178" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-41.jpg" title="Optional #5&lt;br /&gt;Newly created certificate for &quot;Remote Desktop Web Access&quot; (Optional #3) or default self-signed certificate can be selected" class="shutterset_set_12" >
								<img title="p4-20-41" alt="p4-20-41" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-41.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-179" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-42.jpg" title="Optional #5&lt;br /&gt;Information of selected certificate would be shown under &quot;Digital certificate details&quot;" class="shutterset_set_12" >
								<img title="p4-20-42" alt="p4-20-42" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-42.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-180" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-43.jpg" title="Optional #6&lt;br /&gt;If there is one or more server with &quot;Web Access&quot; service role, they can be configured to present applications from different servers." class="shutterset_set_12" >
								<img title="p4-20-43" alt="p4-20-43" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-43.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-181" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-44.jpg" title="Optional #6&lt;br /&gt;Open the &quot;Server Manager\Configuration\Local Users and Groups\Groups&quot;&lt;br /&gt;Select and edit &quot;TS Web Access Computers&quot;" class="shutterset_set_12" >
								<img title="p4-20-44" alt="p4-20-44" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-44.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-182" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-45.jpg" title="Optional #6&lt;br /&gt;By default it's empty, to add &quot;Web Access&quot; servers, press &quot;Add&quot;" class="shutterset_set_12" >
								<img title="p4-20-45" alt="p4-20-45" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-45.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-183" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-46.jpg" title="Optional #6&lt;br /&gt;Find and add appropriate servers&lt;br /&gt;&lt;strong&gt;Default &quot;Object Types ...&quot; is not set to &quot;Computers&quot;, so it should be changed before searching&lt;/strong&gt;" class="shutterset_set_12" >
								<img title="p4-20-46" alt="p4-20-46" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-46.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-184" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-47.jpg" title="Now it's time to add some &quot;RemoteApp&quot; to the list for presenting to users" class="shutterset_set_12" >
								<img title="p4-20-47" alt="p4-20-47" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-47.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-185" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-48.jpg" title="Before adding, &quot;VMware vSphere PowerCLI&quot; should be installed on the server." class="shutterset_set_12" >
								<img title="p4-20-48" alt="p4-20-48" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-48.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-186" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-49.jpg" title="Optional #7&lt;br /&gt;Based on shown warning and written recommendation, &quot;PowerShell Execution Policy&quot; should be changed to allow scripts run without errors." class="shutterset_set_12" >
								<img title="p4-20-49" alt="p4-20-49" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-49.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-187" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-50.jpg" title="Optional #7&lt;br /&gt;Bellow command should be run to apply required changes&lt;br /&gt;&lt;strong&gt;Set-ExecutionPolicy RenoteSigned&lt;/strong&gt;" class="shutterset_set_12" >
								<img title="p4-20-50" alt="p4-20-50" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-50.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-188" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-51.jpg" title="Select appropriate modules for installation" class="shutterset_set_12" >
								<img title="p4-20-51" alt="p4-20-51" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-51.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-189" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-52.jpg" title=" " class="shutterset_set_12" >
								<img title="p4-20-52" alt="p4-20-52" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-52.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-190" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-53.jpg" title="Press &quot;Add RemoteApps Programs ...&quot; on the &quot;Action&quot; panel of &quot;RemoteApp Manager&quot;" class="shutterset_set_12" >
								<img title="p4-20-53" alt="p4-20-53" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-53.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-191" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-54.jpg" title="Select programs which should be presented to users, Here I've selected both &quot;PowerShell&quot; and &quot;VMware PowerCLI&quot;" class="shutterset_set_12" >
								<img title="p4-20-54" alt="p4-20-54" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-54.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-192" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-55.jpg" title="Review the settings" class="shutterset_set_12" >
								<img title="p4-20-55" alt="p4-20-55" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-55.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-193" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-56.jpg" title="Now programs has been added to list and would be presented to users as &quot;RemoteApp&quot;" class="shutterset_set_12" >
								<img title="p4-20-56" alt="p4-20-56" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-56.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-194" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-57.jpg" title="Optional #8&lt;br /&gt;&quot;RemoteApp&quot; can be exported to the &quot;.rdp&quot; files or &quot;.MSI&quot; Packages&lt;br /&gt;I've selected &quot;VMware PowerCLI&quot; and pressed &quot;Create .rdp File&quot;" class="shutterset_set_12" >
								<img title="p4-20-57" alt="p4-20-57" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-57.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-195" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-58.jpg" title="Optional #8&lt;br /&gt;During export process, the &quot;Server and Port&quot; of presenting server can be changed&lt;br /&gt;If the server is behind the router/firewall or &quot;Port Mapping&quot; has been used, new configuration can be saved to this &quot;.rdp&quot; file" class="shutterset_set_12" >
								<img title="p4-20-58" alt="p4-20-58" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-58.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-196" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-59.jpg" title="Optional #8" class="shutterset_set_12" >
								<img title="p4-20-59" alt="p4-20-59" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-59.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-197" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-60.jpg" title="Optional #8&lt;br /&gt;Exported &quot;.rdp&quot; file saved so it can be shared" class="shutterset_set_12" >
								<img title="p4-20-60" alt="p4-20-60" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-60.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-198" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-61.jpg" title="Optional #8&lt;br /&gt;Place created &quot;.rdp&quot; file on some other system and test it" class="shutterset_set_12" >
								<img title="p4-20-61" alt="p4-20-61" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-61.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-199" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-62.jpg" title="Optional #8&lt;br /&gt;By lunching the &quot;.rdp&quot; file, attached information of the application and server would be shown&lt;br /&gt;&quot;Publisher&quot; would shown the information of the certificate which has been used to signed" class="shutterset_set_12" >
								<img title="p4-20-62" alt="p4-20-62" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-62.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-200" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-63.jpg" title="Optional #8&lt;br /&gt;Provide the credential with permission to connect to server and &quot;RemoteApp&quot;&lt;br /&gt;This user might be added during service installation or after that" class="shutterset_set_12" >
								<img title="p4-20-63" alt="p4-20-63" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-63.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-201" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-64.jpg" title="Optional #8&lt;br /&gt;After providing the correct credential, the connection would be started" class="shutterset_set_12" >
								<img title="p4-20-64" alt="p4-20-64" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-64.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-202" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-65.jpg" title="&quot;RemoteApp&quot; has been lunched successfully and it's ready to be use" class="shutterset_set_12" >
								<img title="p4-20-65" alt="p4-20-65" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-65.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-203" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-66.jpg" title="Optional #9&lt;br /&gt;For testing purpose &quot;hostname&quot; command can be run which will return the host running the program (Server Name)" class="shutterset_set_12" >
								<img title="p4-20-66" alt="p4-20-66" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-66.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-204" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/p4-20-67.jpg" title="Optional #9&lt;br /&gt;As final test I've connected to my vCenter and Counted my VMs" class="shutterset_set_12" >
								<img title="p4-20-67" alt="p4-20-67" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/rpcli/thumbs/thumbs_p4-20-67.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

<div class="nggv_container"><input type="hidden" id="ngg-genric-err-msg" value="There was a problem saving your vote, please try again in a few moments." /><script type="text/javascript" src="http://www.kasraeian.com/wp-content/plugins/nextgen-gallery-voting/js/ajaxify-stars.js"></script><link rel="stylesheet" href="http://www.kasraeian.com/wp-content/plugins/nextgen-gallery-voting/css/star_rating.css" type="text/css" media="all" /><div class="nggv-error" style="display:none; border: 1px solid red;"></div><div class="nggv-vote-form"><span class="inline-rating"><ul class="star-rating"><li class="current-rating" style="width:62%;">Currently 3.1/5 Stars.</li><li><a href="/feed/?nggv_gid=12&r=20" title="1 star out of 5" class="one-star">1</a></li><li><a href="/feed/?nggv_gid=12&r=40" title="2 stars out of 5" class="two-stars">2</a></li><li><a href="/feed/?nggv_gid=12&r=60" title="3 stars out of 5" class="three-stars">3</a></li><li><a href="/feed/?nggv_gid=12&r=80" title="4 stars out of 5" class="four-stars">4</a></li><li><a href="/feed/?nggv_gid=12&r=100" title="5 stars out of 5" class="five-stars">5</a></li></ul></span><img class="nggv-star-loader" src="http://i0.wp.com/www.kasraeian.com/wp-content/plugins/nextgen-gallery-voting/images/loading.gif?w=600" style="display:none;" data-recalc-dims="1" /></div></div>
<p><strong>Update #1</strong><br />
I Found <a href="http://vniklas.djungeln.se/2012/03/09/using-windows-powershell-web-access-for-vmm2012-administration/" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/vniklas.djungeln.se/2012/03/09/using-windows-powershell-web-access-for-vmm2012-administration/.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">this post</a> by &#8220;Niklas&#8221; ( <a href="https://twitter.com/#!/@vniklas/" target="_blank">@vniklas</a> <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=')' class='wp-smiley smiley-20' data-recalc-dims="1" /> about &#8220;<a href="http://technet.microsoft.com/en-us/library/hh831611.aspx" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/technet.microsoft.com/en-us/library/hh831611.aspx.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">PowerShell Web Access</a>&#8221; on &#8220;Windows Server 2012&#8243;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/06/using-vmware-powercli-007-remote-powercli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AWESOME, &#8220;Veeam Backup Free Edition&#8221; is released</title>
		<link>http://www.kasraeian.com/2012/06/awesome-veeam-backup-free-edition-is-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=awesome-veeam-backup-free-edition-is-released</link>
		<comments>http://www.kasraeian.com/2012/06/awesome-veeam-backup-free-edition-is-released/#comments</comments>
		<pubDate>Mon, 04 Jun 2012 20:57:25 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Veeam]]></category>
		<category><![CDATA[Veeam Backup]]></category>
		<category><![CDATA[Veeam Backup Free Edition]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2155</guid>
		<description><![CDATA[Yesterday &#8220;June 04, 2012&#8243;, &#8220;Veeam Software, Inc.&#8221; has released one new awesome product. This product is based on newer version of their award-winning product, &#8220;Veeam Backup &#38; Replication&#8221; with no host, physical socket or virtual machine limitation (Free Edition). And here, just part of great news about &#8220;Free Edition&#8221;: Backup &#38; Recover VMs form Environments [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday &#8220;June 04, 2012&#8243;, &#8220;Veeam Software, Inc.&#8221; has released one new awesome product.<br />
This product is based on newer version of their award-winning product, &#8220;Veeam Backup &amp; Replication&#8221; with no host, physical socket or virtual machine limitation (Free Edition).</p>
<p>And here, just part of great news about &#8220;Free Edition&#8221;:</p>
<ul>
<li>Backup &amp; Recover VMs form Environments based on both hypervisor (VMware and Microsoft)</li>
<li>Support both managed and standalone hosts (VMware vCenter/Microsoft SCVMM).</li>
<li>Do Compression and Deduplication (included my own result in screen shot)</li>
<li>Recover file/files from VM</li>
<li>Recover file/files from guest OS inside VM</li>
<li>And now, it&#8217;s possible to &#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.veeam.com/free-vmware-esxi-backup.html.png')" onmouseout="removepreview()" href="http://www.veeam.com/free-vmware-esxi-backup.html" target="_blank">Migrate VMs between hosts and/or datastores</a>&#8220;</li>
</ul>
<p>One other great thing about &#8220;Veeam Backup Free Edition&#8221; is the upgrade path (from administration point of view), there&#8217;s no need to uninstall/re-install this software if the license bought latter, just enter the license in the software and use same UI* and same system.<br />
* Some features/options might not be shown in &#8220;Free Edition&#8221; but they would be shown as soon as software get proper license.  <img src='http://i1.wp.com/www.kasraeian.com/wp-includes/images/blank.gif?w=600' alt=':wink:' class='wp-smiley smiley-20' data-recalc-dims="1" /> </p>
<p style="text-align: left;">New product got lots of improvement from new interface, Veeam ZIP, capability of migrating live VMs and lot more.<br />
<img class="aligncenter" title="Veeam ZIP   (Source: Veeam Software)" src="http://i1.wp.com/www.veeam.com/images/658x205_preview_backup_free.png?resize=600%2C265" alt="" data-recalc-dims="1" />Bellow I&#8217;ve attached few screen shots from internally ran beta version on my lab but I highly recommend to get it yourself and work with it, sure you&#8217;d love it as well!</p>
<p style="text-align: left;">
<div class="ngg-galleryoverview" id="ngg-gallery-13-2155">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.kasraeian.com/2012/06/awesome-veeam-backup-free-edition-is-released/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-205" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-01.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-01" alt="p4-23-01" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-01.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-206" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-02.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-02" alt="p4-23-02" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-02.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-207" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-03.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-03" alt="p4-23-03" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-03.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-208" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-04.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-04" alt="p4-23-04" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-04.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-209" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-05.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-05" alt="p4-23-05" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-05.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-210" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-06.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-06" alt="p4-23-06" src="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-06.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-211" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-07.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-07" alt="p4-23-07" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-07.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-212" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-08.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-08" alt="p4-23-08" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-08.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-213" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-09.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-09" alt="p4-23-09" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-09.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-214" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i2.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-10.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-10" alt="p4-23-10" src="http://i0.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-10.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 		
	<div id="ngg-image-215" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/p4-23-11.jpg" title=" " class="shutterset_set_13" >
								<img title="p4-23-11" alt="p4-23-11" src="http://i1.wp.com/www.kasraeian.com/wp-content/gallery/vbfe/thumbs/thumbs_p4-23-11.jpg?resize=100%2C75" />
							</a data-recalc-dims="1">
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

<div class="nggv_container"><input type="hidden" id="ngg-genric-err-msg" value="There was a problem saving your vote, please try again in a few moments." /><div class="nggv-error" style="display:none; border: 1px solid red;"></div><div class="nggv-vote-form"><span class="inline-rating"><ul class="star-rating"><li class="current-rating" style="width:62%;">Currently 3.1/5 Stars.</li><li><a href="/feed/?nggv_gid=13&r=20" title="1 star out of 5" class="one-star">1</a></li><li><a href="/feed/?nggv_gid=13&r=40" title="2 stars out of 5" class="two-stars">2</a></li><li><a href="/feed/?nggv_gid=13&r=60" title="3 stars out of 5" class="three-stars">3</a></li><li><a href="/feed/?nggv_gid=13&r=80" title="4 stars out of 5" class="four-stars">4</a></li><li><a href="/feed/?nggv_gid=13&r=100" title="5 stars out of 5" class="five-stars">5</a></li></ul></span><img class="nggv-star-loader" src="http://i0.wp.com/www.kasraeian.com/wp-content/plugins/nextgen-gallery-voting/images/loading.gif?w=600" style="display:none;" data-recalc-dims="1" /></div></div></p>
<p>Here, are some review and posts from VMware Experts, vExperts, SME and &#8230;</p>
<ul>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.gabesvirtualworld.com/veeam-backup-replication-6-1-released.png')" onmouseout="removepreview()" href="http://www.gabesvirtualworld.com/veeam-backup-replication-6-1-released" target="_blank">Veeam Backup &amp; Replication 6.1 released</a>&#8221; by &#8220;Gabrie van Zanten&#8221; ( <a href="https://twitter.com/#!/@gabvirtualworld" target="_blank">@gabvirtualworld</a> )</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vuemuer.it/en/?p=3421.png')" onmouseout="removepreview()" href="http://www.vuemuer.it/en/?p=3421" target="_blank">#Veeam Backup &amp; Replication 6.1 is out</a>&#8221; by &#8220;Luca Dell’Oca&#8221; ( <a href="https://twitter.com/#!/@dellock6" target="_blank">@dellock6</a> ) [<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vuemuer.it/?p=3429.png')" onmouseout="removepreview()" href="http://www.vuemuer.it/?p=3429" target="_blank">Italian Version</a>]</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/vinfrastructure.it/en/2012/06/something-awesome-from-veeam-for-virtualization-lovers/.png')" onmouseout="removepreview()" href="http://vinfrastructure.it/en/2012/06/something-awesome-from-veeam-for-virtualization-lovers/" target="_blank">Veeam Backup &amp; Replication 6.1</a>&#8221; by &#8220;Andrea Mauro&#8221; ( <a href="https://twitter.com/#!/@Andrea_Mauro" target="_blank">@Andrea_Mauro</a> ) [<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/vinfrastructure.it/2012/06/something-awesome-from-veeam-for-virtualization-lovers/.png')" onmouseout="removepreview()" href="http://vinfrastructure.it/2012/06/something-awesome-from-veeam-for-virtualization-lovers/" target="_blank">Italian Version</a>]</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vladan.fr/veeam-6-1-released-and-introduced-also-a-free-version-of-veeam/.png')" onmouseout="removepreview()" href="http://www.vladan.fr/veeam-6-1-released-and-introduced-also-a-free-version-of-veeam/" target="_blank">Veeam Backup &amp; Replication 6.1 released and brings also a Free Version</a>&#8221; by &#8220;Vladan SEGET&#8221; ( <a href="https://twitter.com/#!/@vladan" target="_blank">@vladan</a> )</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/defaultreasoning.com/2012/06/04/awesome-veeam-backup-replication-6-1-released/.png')" onmouseout="removepreview()" href="http://defaultreasoning.com/2012/06/04/awesome-veeam-backup-replication-6-1-released/" target="_blank">Awesome! Veeam Backup &amp; Replication 6.1 released</a>&#8221; by &#8220;Marek Zdrojewski&#8221; ( <a href="https://twitter.com/#!/@MarekDotZ" target="_blank">@MarekDotZ</a> )</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/virtualizationreview.com/blogs/virtual-insider/2012/06/veeam-backup-and-replication-6-1.aspx.png')" onmouseout="removepreview()" href="http://virtualizationreview.com/blogs/virtual-insider/2012/06/veeam-backup-and-replication-6-1.aspx" target="_blank">Veeam Backup and Replication 6.1 is Virtualization&#8217;s Best Friend</a>&#8221; by &#8220;Elias Khnaser&#8221; ( <a href="https://twitter.com/#!/@ekhnaser" target="_blank">@ekhnaser</a> )</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vclouds.nl/2012/06/04/today-veeam-released-backup-replication-6-1-whats-new/.png')" onmouseout="removepreview()" href="http://www.vclouds.nl/2012/06/04/today-veeam-released-backup-replication-6-1-whats-new/" target="_blank">Veeam released Backup &amp; Replication v6.1</a>&#8221; by &#8220;Marco Broeken&#8221; ( <a href="https://twitter.com/#!/@mbroeken">@mbroeken</a> )</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/blog.mwpreston.net/2012/06/04/something-awesome-from-veeam-backup-and-replication-6-1-is-here-and-its-free/.png')" onmouseout="removepreview()" href="http://blog.mwpreston.net/2012/06/04/something-awesome-from-veeam-backup-and-replication-6-1-is-here-and-its-free/" target="_blank">Something Awesome From #Veeam – Backup and Replication 6.1 is here (and it’s free!!!)</a>&#8221; by &#8220;Mike Preston&#8221; ( <a href="https://twitter.com/#!/@mwpreston" target="_blank">@mwpreston</a> )</li>
<li>&#8220;<a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.veeam.com/news/veeam-introduces-free-backup-for-vmware-and-hyper-v-with-the-new-fastscp179.html.png')" onmouseout="removepreview()" href="http://www.veeam.com/news/veeam-introduces-free-backup-for-vmware-and-hyper-v-with-the-new-fastscp179.html" target="_blank">VEEAM INTRODUCES FREE BACKUP FOR VMWARE AND HYPER-V WITH “THE NEW FASTSCP”</a>&#8221; by &#8220;Veeam Software&#8221; ( <a href="https://twitter.com/#!/@veeam" target="_blank">@Veeam</a> )</li>
</ul>
<p>This new product can be found by <a title="Veeam Backup Free Edition" onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.veeam.com/virtual-machine-backup-solution-free.html.png')" onmouseout="removepreview()" href="http://www.veeam.com/virtual-machine-backup-solution-free.html" target="_blank">this link</a> and for comparison of &#8220;Free Edition vs. Full (paid) Edition&#8221; this <a onclick="removepreview()" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.veeam.com/veeam_backup_and_replication-free_vs_full_ds.pdf.png')" onmouseout="removepreview()" href="http://www.veeam.com/veeam_backup_and_replication-free_vs_full_ds.pdf" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.veeam.com/veeam_backup_and_replication-free_vs_full_ds.pdf.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">PDF</a> can be used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/06/awesome-veeam-backup-free-edition-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New VMware PowerPoint Icons &amp; Images</title>
		<link>http://www.kasraeian.com/2012/05/new-vmware-powerpoint-icons-images/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-vmware-powerpoint-icons-images</link>
		<comments>http://www.kasraeian.com/2012/05/new-vmware-powerpoint-icons-images/#comments</comments>
		<pubDate>Fri, 25 May 2012 15:43:19 +0000</pubDate>
		<dc:creator>Sohrab Kasraeian Fard</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.kasraeian.com/?p=2116</guid>
		<description><![CDATA[&#8220;VMware&#8221; has been released new three PowerPoint files which contains cool diagrams as well as product icons and images which is a great resource for creating new presentations. You can simply download these three files from this link. &#160; Note: This document was created using the official VMware icon and diagram library. Copyright © 2012 VMware, [...]]]></description>
				<content:encoded><![CDATA[<p>&#8220;VMware&#8221; has been released new three PowerPoint files which contains cool diagrams as well as product icons and images which is a great resource for creating new presentations.<br />
You can simply download these three files from <a href="http://communities.vmware.com/thread/400678" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/communities.vmware.com/thread/400678.png')" onmouseout="removepreview()" onclick="removepreview()" target="_blank">this link</a>.</p>
<p><a href="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/05/P4-19-01.jpg" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.kasraeian.com/wp-content/uploads/2012/05/P4-19-01.jpg.png')" onmouseout="removepreview()" onclick="removepreview()"><img class="wp-image-2120 aligncenter" title="P4-19-01" src="http://i2.wp.com/www.kasraeian.com/wp-content/uploads/2012/05/P4-19-01.jpg?resize=512%2C384" alt="" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<blockquote><p>Note:<br />
This document was created using the official VMware icon and diagram library. Copyright © 2012 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. VMware products are covered by one or more patents listed at <a href="http://www.vmware.com/go/patents" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vmware.com/go/patents.png')" onmouseout="removepreview()" onclick="removepreview()">http</a><a href="http://www.vmware.com/go/patents" onmouseover="drawpreview('http://www.kasraeian.com/wp-content/plugins/tooltip/images/www.vmware.com/go/patents.png')" onmouseout="removepreview()" onclick="removepreview()">://www.vmware.com/go/patents</a>.</p>
<p>VMware does not endorse or make any representations about  third party information included in this document, nor does the inclusion of any VMware icon or diagram in this document imply such an endorsement.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kasraeian.com/2012/05/new-vmware-powerpoint-icons-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
