<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Opalis Community Releases</title><link>http://opalis.codeplex.com/project/feeds/rss</link><description>Sample workflows, objects, code and other items related to System Center&amp;#39;s Opalis Integration Server, published by the Opalis team.</description><item><title>Source code checked in, #69631</title><link>http://opalis.codeplex.com/SourceControl/changeset/changes/69631</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:13:48 GMT</pubDate><guid isPermaLink="false">Source code checked in, #69631 20121001091348P</guid></item><item><title>Source code checked in, #69630</title><link>http://opalis.codeplex.com/SourceControl/changeset/changes/69630</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:07:03 GMT</pubDate><guid isPermaLink="false">Source code checked in, #69630 20121001090703P</guid></item><item><title>Closed Issue: Transform Data [9658]</title><link>http://opalis.codeplex.com/workitem/9658</link><description>hey,&lt;br /&gt;&lt;br /&gt;Just wondering what i&amp;#39;m doing wrong here, i want to translate the subnet to a subnetmask like&amp;#58;&lt;br /&gt;24 - 255.255.255.0&lt;br /&gt;&lt;br /&gt;So i created the XML file like  &amp;#40;see attachment&amp;#41;&lt;br /&gt;&lt;br /&gt;But when the subnet is like 24, i get a result what is not as aspected, it looks like the subnet is split into 2 and 4 so it gets all the subnets where a 2 is in the number and all subnets with a 2 in it.&lt;br /&gt;&lt;br /&gt;help &amp;#63;&lt;br /&gt;Comments: &lt;p&gt;Resolved by user education.&lt;/p&gt;</description><author>jfanjoy</author><pubDate>Mon, 01 Oct 2012 06:17:10 GMT</pubDate><guid isPermaLink="false">Closed Issue: Transform Data [9658] 20121001061710A</guid></item><item><title>Commented Issue: Transform Data [9658]</title><link>http://opalis.codeplex.com/workitem/9658</link><description>hey,&lt;br /&gt;&lt;br /&gt;Just wondering what i&amp;#39;m doing wrong here, i want to translate the subnet to a subnetmask like&amp;#58;&lt;br /&gt;24 - 255.255.255.0&lt;br /&gt;&lt;br /&gt;So i created the XML file like  &amp;#40;see attachment&amp;#41;&lt;br /&gt;&lt;br /&gt;But when the subnet is like 24, i get a result what is not as aspected, it looks like the subnet is split into 2 and 4 so it gets all the subnets where a 2 is in the number and all subnets with a 2 in it.&lt;br /&gt;&lt;br /&gt;help &amp;#63;&lt;br /&gt;Comments: ** Comment from web user: Vrakking ** &lt;p&gt;Thanks, this was just the kind of help i was looking for, not only did you explaine what i was doing wrong, but you also gave me the solution &amp;#40;and more Method&amp;#61;&amp;#34;RegEx&amp;#34;&amp;#41; to handle this kind of usage in the future &amp;#33;&lt;/p&gt;</description><author>Vrakking</author><pubDate>Mon, 01 Oct 2012 05:38:46 GMT</pubDate><guid isPermaLink="false">Commented Issue: Transform Data [9658] 20121001053846A</guid></item><item><title>Commented Issue: Transform Data [9658]</title><link>http://opalis.codeplex.com/workitem/9658</link><description>hey,&lt;br /&gt;&lt;br /&gt;Just wondering what i&amp;#39;m doing wrong here, i want to translate the subnet to a subnetmask like&amp;#58;&lt;br /&gt;24 - 255.255.255.0&lt;br /&gt;&lt;br /&gt;So i created the XML file like  &amp;#40;see attachment&amp;#41;&lt;br /&gt;&lt;br /&gt;But when the subnet is like 24, i get a result what is not as aspected, it looks like the subnet is split into 2 and 4 so it gets all the subnets where a 2 is in the number and all subnets with a 2 in it.&lt;br /&gt;&lt;br /&gt;help &amp;#63;&lt;br /&gt;Comments: ** Comment from web user: jfanjoy ** &lt;p&gt;The problem is that you are performing multiple replacements against the same data.  it does not apply all the replacements as &amp;#34;OR&amp;#34; conditions but rather it applies each replace against the current data.&lt;/p&gt;&lt;p&gt;So if you use a subnet of &amp;#34;24&amp;#34;, then what happens is it attempts to process the replacements for 8 through 23 with no matches then when it processes &amp;#34;24&amp;#34;, it replaces the string &amp;#34;24&amp;#34; with the string &amp;#34;255.255.255.0&amp;#34;.  When it then subsequently applies the replace for &amp;#34;25&amp;#34;, it replaces each &amp;#34;25&amp;#34; in &amp;#34;255.255.255.0&amp;#34; with &amp;#34;255.255.255.128&amp;#34; so you end up with a string like &amp;#34;255.255.255.1285.255.255.255.1285.255.255.255.1285.0&amp;#34; which then continues to get processed and additional replacements happen with it hits the replace for &amp;#34;28&amp;#34; etc.&lt;/p&gt;&lt;p&gt;My recommendation would be to use the RegEx method so you can clearly control exactly what you want searched for and replaced.&lt;/p&gt;&lt;p&gt;I&amp;#39;ve modified your XML with a version that should accomplish what you&amp;#39;re after.  What I did was first apply a &amp;#34;Trim&amp;#34; transform to ensure there are no leading or trailing spaces, then I changed all the replace transforms so that they use regular expression and wrapped each searchstring in &amp;#94; and &amp;#36; which mean start of string and end of string respectively so that when you do a regex search for &amp;#94;24&amp;#36; you will only get a match if &amp;#34;24&amp;#34; is the entire string.&lt;br /&gt;&lt;/p&gt;</description><author>jfanjoy</author><pubDate>Sat, 29 Sep 2012 23:46:46 GMT</pubDate><guid isPermaLink="false">Commented Issue: Transform Data [9658] 20120929114646P</guid></item><item><title>Created Issue: Transform Data [9658]</title><link>http://opalis.codeplex.com/workitem/9658</link><description>hey,&lt;br /&gt;&lt;br /&gt;Just wondering what i&amp;#39;m doing wrong here, i want to translate the subnet to a subnetmask like&amp;#58;&lt;br /&gt;24 - 255.255.255.0&lt;br /&gt;&lt;br /&gt;So i created the XML file like  &amp;#40;see attachment&amp;#41;&lt;br /&gt;&lt;br /&gt;But when the subnet is like 24, i get a result what is not as aspected, it looks like the subnet is split into 2 and 4 so it gets all the subnets where a 2 is in the number and all subnets with a 2 in it.&lt;br /&gt;&lt;br /&gt;help &amp;#63;&lt;br /&gt;</description><author>Vrakking</author><pubDate>Fri, 28 Sep 2012 08:44:11 GMT</pubDate><guid isPermaLink="false">Created Issue: Transform Data [9658] 20120928084411A</guid></item><item><title>Reviewed: Integration Pack for Data Manipulation (Aug 08, 2012)</title><link>http://opalis.codeplex.com/releases/view/46827#ReviewBy-Vrakking</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - Just one word... WOW &amp;#58;&amp;#41; this was exactly wat i was searching for.</description><author>Vrakking</author><pubDate>Wed, 08 Aug 2012 09:44:19 GMT</pubDate><guid isPermaLink="false">Reviewed: Integration Pack for Data Manipulation (Aug 08, 2012) 20120808094419A</guid></item><item><title>Reviewed: Integration Pack for Data Manipulation (Nov 22, 2011)</title><link>http://opalis.codeplex.com/releases/view/46827#ReviewBy-fope</link><description>Rated 5 Stars &amp;#40;out of 5&amp;#41; - Currently I&amp;#39;ve only used the Transform Data Object with the XML specification and it works great - Thanks for that&amp;#33;&amp;#10;Peter Forster - Microsoft MVP 2002-2011</description><author>fope</author><pubDate>Tue, 22 Nov 2011 15:45:42 GMT</pubDate><guid isPermaLink="false">Reviewed: Integration Pack for Data Manipulation (Nov 22, 2011) 20111122034542P</guid></item><item><title>Updated Wiki: Home</title><link>http://opalis.codeplex.com/wikipage?version=19</link><description>&lt;div class="wikidoc"&gt;
&lt;h3&gt;&lt;em&gt;[Looking for Orchestrator content? Go to &lt;a href="http://orchestrator.codeplex.com" target="_self"&gt;
http://orchestrator.codeplex.com&lt;/a&gt;]&lt;/em&gt;&lt;/h3&gt;
&lt;h2&gt;Opalis Integration Server - Community Releases&lt;/h2&gt;
&lt;p&gt;This project contains integrations and workflows for Opalis Integration Server that are released by the Microsoft Opalis team. Releasing these integrations via CodePlex allows the team to provide the community with a way to get new integrations more frequently
 than waiting for new product releases. Watch this site and our TechNet TechCenter for ongoing updates!&lt;/p&gt;
&lt;h3&gt;&lt;span&gt;New to Opalis? Get Started with these Resources&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://social.technet.microsoft.com/wiki/contents/articles/opalis-survival-guide.aspx"&gt;See the Opalis Survival Guide on TechNet Wiki&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.microsoft.com/systemcenter/en/us/opalis.aspx"&gt;Download the latest product version&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt; (includes Integration Packs)
&lt;/li&gt;&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff630946.aspx"&gt;View the Product Documentation&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://social.technet.microsoft.com/Forums/en-US/opalisv5v6/threads"&gt;Join in the Conversation in the Forums&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.technet/com/b/Opalis"&gt;Read the Opalis Team Blog&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://gallery.technet.microsoft.com/site/search?f%5B0%5D.Type=RootCategory&amp;f%5B0%5D.Value=SystemCenter&amp;f%5B0%5D.Text=System%20Center&amp;f%5B1%5D.Type=Tag&amp;f%5B1%5D.Value=Opalis" target="_blank"&gt;Visit the TechNet Gallery to find Opalis integrations&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.technet.com/b/opalis/p/opalis_resources.aspx"&gt;Find additional Resources&lt;/a&gt;
&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span&gt;What's On This Site?&lt;/span&gt;&lt;/h3&gt;
&lt;table border="1" cellspacing="0" cellpadding="10" width="829"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width="427" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Sample Workflows from the Blog &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/56887" target="_blank"&gt;Opalis 6.3 Workflow Samples &amp;ndash; VMM IP&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/44960" target="_blank"&gt;Opalis 6.2.2 Workflow Samples&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;td width="400" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Community-Developed Integration Packs &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/56094" target="_blank"&gt;Integration Pack for Microsoft SharePoint&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/46978" target="_blank"&gt;Integration Pack for Standard OIS Logging&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/46827" target="_blank"&gt;Integration Pack for Data Manipulation&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="427" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Opalis-Related Tools and Utilities&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/57082" target="_blank"&gt;Opalis UI Generator&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/57084" target="_blank"&gt;Opalis Visio Diagram Generator&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;td width="400" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Custom Development Examples &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/55978" target="_blank"&gt;Custom QIK Object using PowerShell Script Example&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/50751" target="_blank"&gt;Opalis-SCOM Extensibility Kit 2.0&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="427" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Best Practice Guides &amp;amp; Samples &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/55991" target="_blank"&gt;Opalis Architecture and Workflow Deployment Docs&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;td width="400" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Downloadable Source Code&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/SourceControl/changeset/changes/53595" target="_blank"&gt;Opalis Policy Tree View Example&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span&gt;Other Opalis-Related Projects on CodePlex&lt;/span&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;General Opalis Extensions:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalisutilities.codeplex.com/" target="_blank"&gt;Opalis Utilities&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisscheduledtasks.codeplex.com/"&gt;Opalis Scheduled Tasks Integration Pack&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;strong&gt;&amp;nbsp;&lt;/strong&gt; &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Opalis Extensions for System Center products:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalissccmextension.codeplex.com/"&gt;Configuration Manager IP Extension&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://sccmclictropalis.codeplex.com/"&gt;SCCM Client Center Intetgration Pack&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://scsmoip.codeplex.com/"&gt;Opalis Integration Pack for System Center Service Manager&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisvmmextended.codeplex.com/"&gt;Virtual Machine Manager Extended integration Pack&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Opalis Extensions for other Microsoft products / technologies:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalisadextension.codeplex.com/" target="_blank"&gt;Opalis Active Directory Extension&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisexchangemail.codeplex.com/" target="_blank"&gt;Exchange Email Extension&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalislocalsecurity.codeplex.com/" target="_blank"&gt;Local Group and User Management&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Opalis Extensions for 3rd-Party products:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalisvmwareip.codeplex.com/" target="_blank"&gt;VMWare VSphere IP&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisvirsto.codeplex.com/"&gt;Virsto Integration Pack&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div id="_mcePaste" style="width:1px; height:1px; overflow:hidden; top:0px; left:-10000px"&gt;
&amp;#65279;&lt;/div&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brunosa</author><pubDate>Thu, 03 Nov 2011 21:22:19 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20111103092219P</guid></item><item><title>Updated Wiki: Home</title><link>http://opalis.codeplex.com/wikipage?version=18</link><description>&lt;div class="wikidoc"&gt;
&lt;h3&gt;&lt;em&gt;[Looking for Orchestrator content? Go to &lt;a href="http://orchestrator.codeplex.com" target="_self"&gt;
http:/orchestrator.codeplex.com&lt;/a&gt;]&lt;/em&gt;&lt;/h3&gt;
&lt;h2&gt;Opalis Integration Server - Community Releases&lt;/h2&gt;
&lt;p&gt;This project contains integrations and workflows for Opalis Integration Server that are released by the Microsoft Opalis team. Releasing these integrations via CodePlex allows the team to provide the community with a way to get new integrations more frequently
 than waiting for new product releases. Watch this site and our TechNet TechCenter for ongoing updates!&lt;/p&gt;
&lt;h3&gt;&lt;span&gt;New to Opalis? Get Started with these Resources&lt;/span&gt;&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://social.technet.microsoft.com/wiki/contents/articles/opalis-survival-guide.aspx"&gt;See the Opalis Survival Guide on TechNet Wiki&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.microsoft.com/systemcenter/en/us/opalis.aspx"&gt;Download the latest product version&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/a&gt; (includes Integration Packs)
&lt;/li&gt;&lt;li&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff630946.aspx"&gt;View the Product Documentation&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://social.technet.microsoft.com/Forums/en-US/opalisv5v6/threads"&gt;Join in the Conversation in the Forums&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.technet/com/b/Opalis"&gt;Read the Opalis Team Blog&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://gallery.technet.microsoft.com/site/search?f%5B0%5D.Type=RootCategory&amp;f%5B0%5D.Value=SystemCenter&amp;f%5B0%5D.Text=System%20Center&amp;f%5B1%5D.Type=Tag&amp;f%5B1%5D.Value=Opalis" target="_blank"&gt;Visit the TechNet Gallery to find Opalis integrations&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.technet.com/b/opalis/p/opalis_resources.aspx"&gt;Find additional Resources&lt;/a&gt;
&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span&gt;What's On This Site?&lt;/span&gt;&lt;/h3&gt;
&lt;table border="1" cellspacing="0" cellpadding="10" width="829"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td width="427" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Sample Workflows from the Blog &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/56887" target="_blank"&gt;Opalis 6.3 Workflow Samples &amp;ndash; VMM IP&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/44960" target="_blank"&gt;Opalis 6.2.2 Workflow Samples&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;td width="400" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Community-Developed Integration Packs &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/56094" target="_blank"&gt;Integration Pack for Microsoft SharePoint&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/46978" target="_blank"&gt;Integration Pack for Standard OIS Logging&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/46827" target="_blank"&gt;Integration Pack for Data Manipulation&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="427" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Opalis-Related Tools and Utilities&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/57082" target="_blank"&gt;Opalis UI Generator&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/57084" target="_blank"&gt;Opalis Visio Diagram Generator&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;td width="400" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Custom Development Examples &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/55978" target="_blank"&gt;Custom QIK Object using PowerShell Script Example&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/50751" target="_blank"&gt;Opalis-SCOM Extensibility Kit 2.0&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td width="427" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Best Practice Guides &amp;amp; Samples &lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/releases/view/55991" target="_blank"&gt;Opalis Architecture and Workflow Deployment Docs&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;td width="400" valign="top"&gt;
&lt;p&gt;&lt;strong&gt;Downloadable Source Code&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalis.codeplex.com/SourceControl/changeset/changes/53595" target="_blank"&gt;Opalis Policy Tree View Example&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;span&gt;Other Opalis-Related Projects on CodePlex&lt;/span&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;General Opalis Extensions:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalisutilities.codeplex.com/" target="_blank"&gt;Opalis Utilities&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisscheduledtasks.codeplex.com/"&gt;Opalis Scheduled Tasks Integration Pack&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;strong&gt;&amp;nbsp;&lt;/strong&gt; &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Opalis Extensions for System Center products:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalissccmextension.codeplex.com/"&gt;Configuration Manager IP Extension&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://sccmclictropalis.codeplex.com/"&gt;SCCM Client Center Intetgration Pack&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://scsmoip.codeplex.com/"&gt;Opalis Integration Pack for System Center Service Manager&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisvmmextended.codeplex.com/"&gt;Virtual Machine Manager Extended integration Pack&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Opalis Extensions for other Microsoft products / technologies:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalisadextension.codeplex.com/" target="_blank"&gt;Opalis Active Directory Extension&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisexchangemail.codeplex.com/" target="_blank"&gt;Exchange Email Extension&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalislocalsecurity.codeplex.com/" target="_blank"&gt;Local Group and User Management&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Opalis Extensions for 3rd-Party products:&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://opalisvmwareip.codeplex.com/" target="_blank"&gt;VMWare VSphere IP&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://opalisvirsto.codeplex.com/"&gt;Virsto Integration Pack&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div id="_mcePaste" style="width:1px; height:1px; overflow:hidden; top:0px; left:-10000px"&gt;
&amp;#65279;&lt;/div&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brunosa</author><pubDate>Thu, 03 Nov 2011 21:21:21 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20111103092121P</guid></item><item><title>Released: OIS - SCOM Extensibility Kit 2.0 (août 17, 2010)</title><link>http://opalis.codeplex.com/releases/view/50751</link><description>
&lt;div class="wikidoc"&gt;
&lt;h1&gt;Opalis Integration Server &amp;amp; System Center Operations Manager Extensibility Kit 2.0&lt;/h1&gt;
The &lt;i&gt;Opalis Integration Server (OIS) – System Center Operations Manager (SCOM) Extensibility Kit 2.0&lt;/i&gt; includes examples of how to extend SCOM using both the SCOM and OIS SDKs. The C# code and compiled DLL included here offer two OIS objects which can be
 used to automatically create or delete notification subscriptions based on an existing Channel as well as work against existing Pending Agent Installs in the SCOM database.&lt;br&gt;
&lt;br&gt;
Included in this Extensibility Kit:&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;Opalis Ready DLL: &lt;/li&gt;&lt;li&gt;Can be used with the “Invoke .NET” object included in the Integration Pack for “Opalis Quick Integration Kit for Microsoft .NET”
&lt;ul&gt;
&lt;li&gt;Opalis&lt;i&gt;SCOM&lt;/i&gt;Extensibility.dll &lt;/li&gt;&lt;li&gt;NOTE: This DLL is dependent on some other resources, see System Requirements.&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;C# Source Code: &lt;/li&gt;&lt;li&gt;Example C# Source Code illustrating the combination of the SCOM and OIS SDKs.
&lt;ul&gt;
&lt;li&gt;SCOM_NoteSubcriptionCreate.cs &lt;/li&gt;&lt;li&gt;SCOM_NoteSubcriptionDelete.cs &lt;/li&gt;&lt;li&gt;SCOM_AgentInfoAdapter.cs &lt;/li&gt;&lt;li&gt;SCOM_ApprovePendingAgentInstall.cs &lt;/li&gt;&lt;li&gt;SCOM_ListPendingAgentInstalls.cs &lt;/li&gt;&lt;li&gt;NOTE: These C# files are dependent on some other resources, see System Requirements.&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
This Extensibility Kit (DLL to be used with the Opalis “Invoke .NET” object) adds the following object capability to Opalis Integration Server:&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;Create SCOM Notification Subscription (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;NoteSubcriptionCreate)
&lt;/li&gt;&lt;li&gt;Delete SCOM Notification Subscription (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;NoteSubcriptionDelete)
&lt;/li&gt;&lt;li&gt;List Pending Agent Installs (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;ListPendingAgentInstalls)
&lt;/li&gt;&lt;li&gt;Approve Pending Agent Installs (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;ApprovePendingAgentInstall)&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
This DLL (and appropriate dependencies) can be rolled up into an Opalis Integration Pack (not included here) by using the QIK Wizard.&lt;br&gt;
&lt;br&gt;
Please Refer to the &lt;i&gt;OIS-SCOM Extensibility Kit 2.0 - User Guide&lt;/i&gt; for more information on System Requirements, Installation, Configuraiton and Usage.&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Thu, 03 Nov 2011 20:21:16 GMT</pubDate><guid isPermaLink="false">Released: OIS - SCOM Extensibility Kit 2.0 (août 17, 2010) 20111103082116P</guid></item><item><title>Updated Release: OIS - SCOM Extensibility Kit 2.0 (Aug 17, 2010)</title><link>http://opalis.codeplex.com/releases/view/50751</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Opalis Integration Server &amp;amp; System Center Operations Manager Extensibility Kit 2.0&lt;/h1&gt;
The &lt;i&gt;Opalis Integration Server (OIS) – System Center Operations Manager (SCOM) Extensibility Kit 2.0&lt;/i&gt; includes examples of how to extend SCOM using both the SCOM and OIS SDKs. The C# code and compiled DLL included here offer two OIS objects which can be used to automatically create or delete notification subscriptions based on an existing Channel as well as work against existing Pending Agent Installs in the SCOM database.&lt;br /&gt;&lt;br /&gt;Included in this Extensibility Kit:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Opalis Ready DLL:&lt;/li&gt;
&lt;li&gt;Can be used with the “Invoke .NET” object included in the Integration Pack for “Opalis Quick Integration Kit for Microsoft .NET”
&lt;ul&gt;&lt;li&gt;Opalis&lt;i&gt;SCOM&lt;/i&gt;Extensibility.dll&lt;/li&gt;
&lt;li&gt;NOTE: This DLL is dependent on some other resources, see System Requirements.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;C# Source Code:&lt;/li&gt;
&lt;li&gt;Example C# Source Code illustrating the combination of the SCOM and OIS SDKs.
&lt;ul&gt;&lt;li&gt;SCOM_NoteSubcriptionCreate.cs&lt;/li&gt;
&lt;li&gt;SCOM_NoteSubcriptionDelete.cs&lt;/li&gt;
&lt;li&gt;SCOM_AgentInfoAdapter.cs&lt;/li&gt;
&lt;li&gt;SCOM_ApprovePendingAgentInstall.cs&lt;/li&gt;
&lt;li&gt;SCOM_ListPendingAgentInstalls.cs&lt;/li&gt;
&lt;li&gt;NOTE: These C# files are dependent on some other resources, see System Requirements.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;This Extensibility Kit (DLL to be used with the Opalis “Invoke .NET” object) adds the following object capability to Opalis Integration Server:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Create SCOM Notification Subscription (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;NoteSubcriptionCreate)&lt;/li&gt;
&lt;li&gt;Delete SCOM Notification Subscription (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;NoteSubcriptionDelete)&lt;/li&gt;
&lt;li&gt;List Pending Agent Installs (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;ListPendingAgentInstalls)&lt;/li&gt;
&lt;li&gt;Approve Pending Agent Installs (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;ApprovePendingAgentInstall)&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;This DLL (and appropriate dependencies) can be rolled up into an Opalis Integration Pack (not included here) by using the QIK Wizard.&lt;br /&gt;&lt;br /&gt;Please Refer to the &lt;i&gt;OIS-SCOM Extensibility Kit 2.0 - User Guide&lt;/i&gt; for more information on System Requirements, Installation, Configuraiton and Usage.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>charlesjoy</author><pubDate>Thu, 03 Nov 2011 20:21:16 GMT</pubDate><guid isPermaLink="false">Updated Release: OIS - SCOM Extensibility Kit 2.0 (Aug 17, 2010) 20111103082116P</guid></item><item><title>Updated Release: OIS-SCOM Extensibility Kit 2.0 (Aug 17, 2010)</title><link>http://opalis.codeplex.com/releases/view/50751</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Opalis Integration Server &amp;amp; System Center Operations Manager Extensibility Kit 2.0&lt;/h1&gt;
The &lt;i&gt;Opalis Integration Server (OIS) – System Center Operations Manager (SCOM) Extensibility Kit 2.0&lt;/i&gt; includes examples of how to extend SCOM using both the SCOM and OIS SDKs. The C# code and compiled DLL included here offer two OIS objects which can be used to automatically create or delete notification subscriptions based on an existing Channel as well as work against existing Pending Agent Installs in the SCOM database.&lt;br /&gt;&lt;br /&gt;Included in this Extensibility Kit:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Opalis Ready DLL:&lt;/li&gt;
&lt;li&gt;Can be used with the “Invoke .NET” object included in the Integration Pack for “Opalis Quick Integration Kit for Microsoft .NET”
&lt;ul&gt;&lt;li&gt;Opalis&lt;i&gt;SCOM&lt;/i&gt;Extensibility.dll&lt;/li&gt;
&lt;li&gt;NOTE: This DLL is dependent on some other resources, see System Requirements.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;C# Source Code:&lt;/li&gt;
&lt;li&gt;Example C# Source Code illustrating the combination of the SCOM and OIS SDKs.
&lt;ul&gt;&lt;li&gt;SCOM_NoteSubcriptionCreate.cs&lt;/li&gt;
&lt;li&gt;SCOM_NoteSubcriptionDelete.cs&lt;/li&gt;
&lt;li&gt;SCOM_AgentInfoAdapter.cs&lt;/li&gt;
&lt;li&gt;SCOM_ApprovePendingAgentInstall.cs&lt;/li&gt;
&lt;li&gt;SCOM_ListPendingAgentInstalls.cs&lt;/li&gt;
&lt;li&gt;NOTE: These C# files are dependent on some other resources, see System Requirements.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;This Extensibility Kit (DLL to be used with the Opalis “Invoke .NET” object) adds the following object capability to Opalis Integration Server:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Create SCOM Notification Subscription (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;NoteSubcriptionCreate)&lt;/li&gt;
&lt;li&gt;Delete SCOM Notification Subscription (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;NoteSubcriptionDelete)&lt;/li&gt;
&lt;li&gt;List Pending Agent Installs (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;ListPendingAgentInstalls)&lt;/li&gt;
&lt;li&gt;Approve Pending Agent Installs (SCOM.SCOM&lt;i&gt;SDK.SCOM&lt;/i&gt;ApprovePendingAgentInstall)&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;This DLL (and appropriate dependencies) can be rolled up into an Opalis Integration Pack (not included here) by using the QIK Wizard.&lt;br /&gt;&lt;br /&gt;Please Refer to the &lt;i&gt;OIS-SCOM Extensibility Kit 2.0 - User Guide&lt;/i&gt; for more information on System Requirements, Installation, Configuraiton and Usage.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>charlesjoy</author><pubDate>Thu, 03 Nov 2011 20:20:50 GMT</pubDate><guid isPermaLink="false">Updated Release: OIS-SCOM Extensibility Kit 2.0 (Aug 17, 2010) 20111103082050P</guid></item><item><title>Updated Release: OIS - Data Extraction and Reporting Kit 1.0 (Dec 17, 2010)</title><link>http://opalis.codeplex.com/releases/view/57671</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Opalis Data Extraction and Reporting Kit&lt;/h1&gt;
The &lt;i&gt;Opalis Data Extraction and Reporting Kit&lt;/i&gt; is a sanitized* and packaged “kit” of examples you can use as a guide for your own Opalis powered Reporting use case. This example content is based on and directly related to the following blog post: &lt;a href="http://blogs.technet.com/b/charlesjoy/archive/2010/12/16/8-minute-demo-scdemo-reporting-powered-by-opalis.aspx" class="externalLink"&gt;http://blogs.technet.com/b/charlesjoy/archive/2010/12/16/8-minute-demo-scdemo-reporting-powered-by-opalis.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Included in this Data Extraction and Reporting Kit:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Download File:&lt;/b&gt; &lt;i&gt;OpalisDataExtractionandReportingKit.zip&lt;/i&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;Example Sanitized Workflows&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;RPTDBWorkflowTemplates.ois&lt;/i&gt;_&lt;i&gt;export&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example Hyper-V PowerShell Script&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;The PowerShell Management Library for Hyper-V is used extensively within the example. (&lt;a href="http://pshyperv.codeplex.com/" class="externalLink"&gt;http://pshyperv.codeplex.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;i&gt;HyperVScan.ps1&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example OS PowerShell Script&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;VMHostOSAudit.ps1&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example OS CLI Commands&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;CLICommands.txt&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example SQL Database Table and View Structure&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;SQL Scripts for the DROP/CREATE and SELECT Statements&lt;/li&gt;
&lt;li&gt;&lt;i&gt;16 Individual .sql DROP/CREATE files&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example C# Script for Parsing Input&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;ParseGroupMembers.cs&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example Sanitized Excel 2010 Report&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;RPTDBUsageReport.xlsx&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;*&lt;i&gt;SCDEMO has been changed to RPTDB, all production names and references have been removed, all non-reporting workflows have been removed, etc.&lt;/i&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>charlesjoy</author><pubDate>Thu, 03 Nov 2011 20:19:55 GMT</pubDate><guid isPermaLink="false">Updated Release: OIS - Data Extraction and Reporting Kit 1.0 (Dec 17, 2010) 20111103081955P</guid></item><item><title>Released: OIS - Data Extraction and Reporting Kit 1.0 (déc. 17, 2010)</title><link>http://opalis.codeplex.com/releases/view/57671</link><description>
&lt;div class="wikidoc"&gt;
&lt;h1&gt;Opalis Data Extraction and Reporting Kit&lt;/h1&gt;
The &lt;i&gt;Opalis Data Extraction and Reporting Kit&lt;/i&gt; is a sanitized* and packaged “kit” of examples you can use as a guide for your own Opalis powered Reporting use case. This example content is based on and directly related to the following blog post:
&lt;a href="http://blogs.technet.com/b/charlesjoy/archive/2010/12/16/8-minute-demo-scdemo-reporting-powered-by-opalis.aspx"&gt;
http://blogs.technet.com/b/charlesjoy/archive/2010/12/16/8-minute-demo-scdemo-reporting-powered-by-opalis.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Included in this Data Extraction and Reporting Kit:&lt;br&gt;
&lt;br&gt;
&lt;b&gt;Download File:&lt;/b&gt; &lt;i&gt;OpalisDataExtractionandReportingKit.zip&lt;/i&gt;&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Example Sanitized Workflows&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;&lt;i&gt;RPTDBWorkflowTemplates.ois&lt;/i&gt;_&lt;i&gt;export&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Example Hyper-V PowerShell Script&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;The PowerShell Management Library for Hyper-V is used extensively within the example. (&lt;a href="http://pshyperv.codeplex.com/"&gt;http://pshyperv.codeplex.com/&lt;span&gt;&lt;/span&gt;&lt;/a&gt;)
&lt;/li&gt;&lt;li&gt;&lt;i&gt;HyperVScan.ps1&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Example OS PowerShell Script&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;&lt;i&gt;VMHostOSAudit.ps1&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Example OS CLI Commands&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;&lt;i&gt;CLICommands.txt&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Example SQL Database Table and View Structure&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;SQL Scripts for the DROP/CREATE and SELECT Statements &lt;/li&gt;&lt;li&gt;&lt;i&gt;16 Individual .sql DROP/CREATE files&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Example C# Script for Parsing Input&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;&lt;i&gt;ParseGroupMembers.cs&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Example Sanitized Excel 2010 Report&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;&lt;i&gt;RPTDBUsageReport.xlsx&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
*&lt;i&gt;SCDEMO has been changed to RPTDB, all production names and references have been removed, all non-reporting workflows have been removed, etc.&lt;/i&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Thu, 03 Nov 2011 20:19:55 GMT</pubDate><guid isPermaLink="false">Released: OIS - Data Extraction and Reporting Kit 1.0 (déc. 17, 2010) 20111103081955P</guid></item><item><title>Updated Release: Opalis Data Extraction and Reporting Kit 1.0 (Dec 17, 2010)</title><link>http://opalis.codeplex.com/releases/view/57671</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Opalis Data Extraction and Reporting Kit&lt;/h1&gt;
The &lt;i&gt;Opalis Data Extraction and Reporting Kit&lt;/i&gt; is a sanitized* and packaged “kit” of examples you can use as a guide for your own Opalis powered Reporting use case. This example content is based on and directly related to the following blog post: &lt;a href="http://blogs.technet.com/b/charlesjoy/archive/2010/12/16/8-minute-demo-scdemo-reporting-powered-by-opalis.aspx" class="externalLink"&gt;http://blogs.technet.com/b/charlesjoy/archive/2010/12/16/8-minute-demo-scdemo-reporting-powered-by-opalis.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Included in this Data Extraction and Reporting Kit:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Download File:&lt;/b&gt; &lt;i&gt;OpalisDataExtractionandReportingKit.zip&lt;/i&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;Example Sanitized Workflows&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;RPTDBWorkflowTemplates.ois&lt;/i&gt;_&lt;i&gt;export&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example Hyper-V PowerShell Script&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;The PowerShell Management Library for Hyper-V is used extensively within the example. (&lt;a href="http://pshyperv.codeplex.com/" class="externalLink"&gt;http://pshyperv.codeplex.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;i&gt;HyperVScan.ps1&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example OS PowerShell Script&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;VMHostOSAudit.ps1&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example OS CLI Commands&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;CLICommands.txt&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example SQL Database Table and View Structure&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;SQL Scripts for the DROP/CREATE and SELECT Statements&lt;/li&gt;
&lt;li&gt;&lt;i&gt;16 Individual .sql DROP/CREATE files&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example C# Script for Parsing Input&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;ParseGroupMembers.cs&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Example Sanitized Excel 2010 Report&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;i&gt;RPTDBUsageReport.xlsx&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;*&lt;i&gt;SCDEMO has been changed to RPTDB, all production names and references have been removed, all non-reporting workflows have been removed, etc.&lt;/i&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>charlesjoy</author><pubDate>Thu, 03 Nov 2011 20:19:10 GMT</pubDate><guid isPermaLink="false">Updated Release: Opalis Data Extraction and Reporting Kit 1.0 (Dec 17, 2010) 20111103081910P</guid></item><item><title>Updated Release: OIS - iSCSI Automation Kit 1.0 (Apr 25, 2011)</title><link>http://opalis.codeplex.com/releases/view/65136</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;OIS - iSCSI Automation Kit v1.0&lt;/h1&gt;
The &lt;i&gt;OIS - iSCSI Automation Kit v1.0&lt;/i&gt; includes policy examples of how to automate/orchestrate Windows 2008 R2 NIC settings as well as the iSCSI Initiator configuration using OIS and the available CLIs.&lt;br /&gt;&lt;br /&gt;Included in this iSCSI Automation Kit are 12 policies:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;Setup&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;Maintenance | SAN | 0.0 Create SQL Tables for External Data Persistence Store&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;&lt;b&gt;Prep SCDEMO Hosts&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;Maintenance | SAN | 1.0 SCDEMO Hyper-V VHD Scan for Running VMs on SAN&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 2.0 Stop VMs on SAN&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;&lt;b&gt;Disable iSCSI Resources&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;Maintenance | SAN | 3.0 Disable iSCSI NIC&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 4.0 Remove Favorite Target from iSCSI Initiator&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 5.0 Logout of iSCSI Initiator Target Session&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 6.0 Remove iSCSI Target Portal and Refresh&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;&lt;b&gt;Enable iSCSI Resources&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;Maintenance | SAN | 7.0 Add IP Address to iSCSI NIC&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 7.1 Enable iSCSI NIC&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 7.2 Delete Old iSCSI IP Address&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 8.0 Add Target Portal to iSCSI Initiator&lt;/li&gt;
&lt;li&gt;Maintenance | SAN | 9.0 Login to iSCSI Initiator Target and Add Fav Target &lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Please Refer to the TechNet Blog Post (&lt;a href="http://blogs.technet.com/b/charlesjoy/archive/2011/04/25/ois-iscsi-initiator-automation.aspx" class="externalLink"&gt;http://blogs.technet.com/b/charlesjoy/archive/2011/04/25/ois-iscsi-initiator-automation.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;) for more information on this use case example.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>charlesjoy</author><pubDate>Thu, 03 Nov 2011 20:18:19 GMT</pubDate><guid isPermaLink="false">Updated Release: OIS - iSCSI Automation Kit 1.0 (Apr 25, 2011) 20111103081819P</guid></item><item><title>Released: OIS - iSCSI Automation Kit 1.0 (avr. 25, 2011)</title><link>http://opalis.codeplex.com/releases/view/65136</link><description>
&lt;div class="wikidoc"&gt;
&lt;h1&gt;OIS - iSCSI Automation Kit v1.0&lt;/h1&gt;
The &lt;i&gt;OIS - iSCSI Automation Kit v1.0&lt;/i&gt; includes policy examples of how to automate/orchestrate Windows 2008 R2 NIC settings as well as the iSCSI Initiator configuration using OIS and the available CLIs.&lt;br&gt;
&lt;br&gt;
Included in this iSCSI Automation Kit are 12 policies:&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Setup&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Maintenance | SAN | 0.0 Create SQL Tables for External Data Persistence Store&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Prep SCDEMO Hosts&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Maintenance | SAN | 1.0 SCDEMO Hyper-V VHD Scan for Running VMs on SAN &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 2.0 Stop VMs on SAN&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Disable iSCSI Resources&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Maintenance | SAN | 3.0 Disable iSCSI NIC &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 4.0 Remove Favorite Target from iSCSI Initiator &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 5.0 Logout of iSCSI Initiator Target Session &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 6.0 Remove iSCSI Target Portal and Refresh&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Enable iSCSI Resources&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Maintenance | SAN | 7.0 Add IP Address to iSCSI NIC &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 7.1 Enable iSCSI NIC &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 7.2 Delete Old iSCSI IP Address &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 8.0 Add Target Portal to iSCSI Initiator &lt;/li&gt;&lt;li&gt;Maintenance | SAN | 9.0 Login to iSCSI Initiator Target and Add Fav Target &lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
Please Refer to the TechNet Blog Post (&lt;a href="http://blogs.technet.com/b/charlesjoy/archive/2011/04/25/ois-iscsi-initiator-automation.aspx"&gt;http://blogs.technet.com/b/charlesjoy/archive/2011/04/25/ois-iscsi-initiator-automation.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;) for
 more information on this use case example.&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Thu, 03 Nov 2011 20:18:19 GMT</pubDate><guid isPermaLink="false">Released: OIS - iSCSI Automation Kit 1.0 (avr. 25, 2011) 20111103081819P</guid></item><item><title>Updated Release: OIS - Orchestrated Cloud App Deployment Kit 1.0 (Jun 07, 2011)</title><link>http://opalis.codeplex.com/releases/view/67910</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;OIS - Orchestrated Cloud App Deployment Kit&lt;/h1&gt;
The &lt;i&gt;OIS - Orchestrated Cloud App Deployment Kit&lt;/i&gt; includes policy examples of how to automate/orchestrate Windows Azure Application Deployment using OIS, Service Manager and the available PowerShell Cmdlets.&lt;br /&gt;&lt;br /&gt;Included in this Orchestrated Cloud App Deployment Kit are 7 example OIS Policies and 6 example PowerShell PS1 files:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;Example OIS Policies&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;Azure Deployment | 0.0 Initiate Azure Deployment&lt;/li&gt;
&lt;li&gt;Azure Deployment | 1.0 New Deploy Package&lt;/li&gt;
&lt;li&gt;Azure Deployment | 2.0 Update Deploy Status&lt;/li&gt;
&lt;li&gt;Azure Deployment | 3.0 Update Deploy Package&lt;/li&gt;
&lt;li&gt;Azure Deployment | 4.0 Remove Deploy Package&lt;/li&gt;
&lt;li&gt;Azure Deployment | 99.0 Create Change Request&lt;/li&gt;
&lt;li&gt;Azure Deployment | 99.1 Copy Files&lt;/li&gt;
&lt;li&gt;&lt;i&gt;NOTE: The Integration Pack for System Center Service Manager is required for these example OIS Policies&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;ul&gt;&lt;li&gt;&lt;b&gt;Example PowerShell PS1 Files&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;deployAzurePackage.ps1&lt;/li&gt;
&lt;li&gt;getAzureDeploymentLabel.ps1&lt;/li&gt;
&lt;li&gt;getAzureDeploymentURL.ps1&lt;/li&gt;
&lt;li&gt;removeAzureDeployment.ps1&lt;/li&gt;
&lt;li&gt;setAzureDeploymentStatus.ps1&lt;/li&gt;
&lt;li&gt;updateAzurePackageDeployment.ps1&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Please Refer to the TechNet Blog Post (&lt;a href="http://blogs.technet.com/b/charlesjoy/archive/2011/06/08/8-minute-demo-orchestrated-cloud-application-deployment.aspx" class="externalLink"&gt;http://blogs.technet.com/b/charlesjoy/archive/2011/06/08/8-minute-demo-orchestrated-cloud-application-deployment.aspx&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;) for more information on this use case example.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>charlesjoy</author><pubDate>Thu, 03 Nov 2011 20:17:37 GMT</pubDate><guid isPermaLink="false">Updated Release: OIS - Orchestrated Cloud App Deployment Kit 1.0 (Jun 07, 2011) 20111103081737P</guid></item><item><title>Released: OIS - Orchestrated Cloud App Deployment Kit 1.0 (juin 07, 2011)</title><link>http://opalis.codeplex.com/releases/view/67910</link><description>
&lt;div class="wikidoc"&gt;
&lt;h1&gt;OIS - Orchestrated Cloud App Deployment Kit&lt;/h1&gt;
The &lt;i&gt;OIS - Orchestrated Cloud App Deployment Kit&lt;/i&gt; includes policy examples of how to automate/orchestrate Windows Azure Application Deployment using OIS, Service Manager and the available PowerShell Cmdlets.&lt;br&gt;
&lt;br&gt;
Included in this Orchestrated Cloud App Deployment Kit are 7 example OIS Policies and 6 example PowerShell PS1 files:&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Example OIS Policies&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Azure Deployment | 0.0 Initiate Azure Deployment &lt;/li&gt;&lt;li&gt;Azure Deployment | 1.0 New Deploy Package &lt;/li&gt;&lt;li&gt;Azure Deployment | 2.0 Update Deploy Status &lt;/li&gt;&lt;li&gt;Azure Deployment | 3.0 Update Deploy Package &lt;/li&gt;&lt;li&gt;Azure Deployment | 4.0 Remove Deploy Package &lt;/li&gt;&lt;li&gt;Azure Deployment | 99.0 Create Change Request &lt;/li&gt;&lt;li&gt;Azure Deployment | 99.1 Copy Files &lt;/li&gt;&lt;li&gt;&lt;i&gt;NOTE: The Integration Pack for System Center Service Manager is required for these example OIS Policies&lt;/i&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Example PowerShell PS1 Files&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;deployAzurePackage.ps1 &lt;/li&gt;&lt;li&gt;getAzureDeploymentLabel.ps1 &lt;/li&gt;&lt;li&gt;getAzureDeploymentURL.ps1 &lt;/li&gt;&lt;li&gt;removeAzureDeployment.ps1 &lt;/li&gt;&lt;li&gt;setAzureDeploymentStatus.ps1 &lt;/li&gt;&lt;li&gt;updateAzurePackageDeployment.ps1&lt;/li&gt;&lt;/ul&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;br&gt;
Please Refer to the TechNet Blog Post (&lt;a href="http://blogs.technet.com/b/charlesjoy/archive/2011/06/08/8-minute-demo-orchestrated-cloud-application-deployment.aspx"&gt;http://blogs.technet.com/b/charlesjoy/archive/2011/06/08/8-minute-demo-orchestrated-cloud-application-deployment.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;)
 for more information on this use case example.&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
</description><author></author><pubDate>Thu, 03 Nov 2011 20:17:37 GMT</pubDate><guid isPermaLink="false">Released: OIS - Orchestrated Cloud App Deployment Kit 1.0 (juin 07, 2011) 20111103081737P</guid></item></channel></rss>