<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: SCVMM &#8211; Virtual Machine List Script in Powershell</title>
	<atom:link href="http://www.yusufozturk.info/virtual-machine-manager/scvmm-virtual-machine-list-script-in-powershell.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yusufozturk.info/virtual-machine-manager/scvmm-virtual-machine-list-script-in-powershell.html</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:05:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Laundry Sorter</title>
		<link>http://www.yusufozturk.info/virtual-machine-manager/scvmm-virtual-machine-list-script-in-powershell.html/comment-page-1#comment-3108</link>
		<dc:creator>Laundry Sorter</dc:creator>
		<pubDate>Mon, 20 Dec 2010 21:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.yusufozturk.info/?p=649#comment-3108</guid>
		<description>there are many different operating systems but of course i would still prefer to use linux for stability -:*</description>
		<content:encoded><![CDATA[<p>there are many different operating systems but of course i would still prefer to use linux for stability -:*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: helen</title>
		<link>http://www.yusufozturk.info/virtual-machine-manager/scvmm-virtual-machine-list-script-in-powershell.html/comment-page-1#comment-1998</link>
		<dc:creator>helen</dc:creator>
		<pubDate>Fri, 17 Sep 2010 09:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.yusufozturk.info/?p=649#comment-1998</guid>
		<description>listing vms in Powershell. Output will be Name and Operating System and HOSTNAME:

Add-PSSnapin -name Microsoft.SystemCenter.VirtualMachineManager
Get-Vmmserver localhost
# VM List Script - Yusuf Ozturk
# http://www.yusufozturk.info
$VMProp = Get-VM &#124; Select-Object -Property Name,OperatingSystem,HostName
clear-content -path &quot;C:\VMList.txt&quot;
foreach ($i in $VMProp)
{
$VMName = $i.Name
$VMOprs = $i.OperatingSystem.Name
$VMHostName = $i.HostName
add-content -path “C:\VMList.txt” -value $VMName
add-content -path “C:\VMList.txt” -value $VMOprs
add-content -path “C:\VMList.txt” -value $VMHostName
add-content -path “C:\VMList.txt” -value ‘‘
}</description>
		<content:encoded><![CDATA[<p>listing vms in Powershell. Output will be Name and Operating System and HOSTNAME:</p>
<p>Add-PSSnapin -name Microsoft.SystemCenter.VirtualMachineManager<br />
Get-Vmmserver localhost<br />
# VM List Script &#8211; Yusuf Ozturk<br />
# <a href="http://www.yusufozturk.info" rel="nofollow">http://www.yusufozturk.info</a><br />
$VMProp = Get-VM | Select-Object -Property Name,OperatingSystem,HostName<br />
clear-content -path &#8220;C:\VMList.txt&#8221;<br />
foreach ($i in $VMProp)<br />
{<br />
$VMName = $i.Name<br />
$VMOprs = $i.OperatingSystem.Name<br />
$VMHostName = $i.HostName<br />
add-content -path “C:\VMList.txt” -value $VMName<br />
add-content -path “C:\VMList.txt” -value $VMOprs<br />
add-content -path “C:\VMList.txt” -value $VMHostName<br />
add-content -path “C:\VMList.txt” -value ‘‘<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

