<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>gok Tracker</title>
    <link>https://communities.vmware.com/wbsdv95928/tracker</link>
    <description>gok Tracker</description>
    <pubDate>Wed, 15 Nov 2023 10:07:26 GMT</pubDate>
    <dc:date>2023-11-15T10:07:26Z</dc:date>
    <item>
      <title>Re: Nagini library in Python not able to get more than 1000 objects</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Operations/Nagini-library-in-Python-not-able-to-get-more-than-1000-objects/m-p/503866#M3002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I commented the answer was in the subject of this sharing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 12:53:06 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Operations/Nagini-library-in-Python-not-able-to-get-more-than-1000-objects/m-p/503866#M3002</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2018-02-15T12:53:06Z</dc:date>
    </item>
    <item>
      <title>Nagini library in Python not able to get more than 1000 objects</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Operations/Nagini-library-in-Python-not-able-to-get-more-than-1000-objects/m-p/503865#M3001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;Hello all,&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;I want to share an issue I found using Nagini library on python environment in order to get and modify data from VROPS&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;By default the system answer with 1000 object per page as we can see at&lt;BR /&gt;&lt;A _jive_internal="true" href="https://communities.vmware.com/suite-api/api/adapterkinds/VMWARE/resourcekinds/VIRTUALMACHINE/resources" rel="nofollow"&gt;https://&amp;lt;vrops-server&amp;gt;/suite-api/api/adapterkinds/VMWARE/resourcekinds/VIRTUALMACHINE/resources&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;In order to get more objects in the same page you need to pass the maximum number of objects that you want like&lt;BR /&gt;&lt;A _jive_internal="true" href="https://communities.vmware.com/suite-api/api/adapterkinds/VMWARE/resourcekinds/VIRTUALMACHINE/resources/resources/?page=0&amp;amp;pageSize=4000" rel="nofollow"&gt;https://&amp;lt;vrops-server&amp;gt;/suite-api/api/adapterkinds/VMWARE/resourcekinds/VIRTUALMACHINE/resources/resources/?page=0&amp;amp;pageSize=4000&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;So as we want to use Nagini Library over python, we need to translate this to Nagini.&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;&lt;BR /&gt;Having a look on the Nagini code at the function that we call&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;find_create_resource_with_adapter_uuid or find_create_resource_with_adapter_key, Nagini use a method called get_resources_with_adapter_and_resource_kind, but in the admitted parameters there is not PageSize&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;But if we go to the method.json we can see that the option is there&lt;BR /&gt;"name" : "get_resources_with_adapter_and_resource_kind",&lt;BR /&gt;"url" : "/api/adapterkinds/{adapterKindKey}/resourcekinds/{resourceKindKey}/resources",&lt;BR /&gt;"http_method" : "GET",&lt;BR /&gt;"doc" : "Query for Resources within a particular Adapter Kind and Resource Kind.&lt;BR /&gt;",&lt;BR /&gt;"query_params" : [ {&lt;BR /&gt;"name" : "page",&lt;BR /&gt;"doc" : "Page number from which data needs to be displayed (0-based)",&lt;BR /&gt;"type" : "int",&lt;BR /&gt;"optional" : true,&lt;BR /&gt;"repeating" : false&lt;BR /&gt;}, {&lt;BR /&gt;"name" : "pageSize",&lt;BR /&gt;"doc" : "Expected number of entries per page",&lt;BR /&gt;"type" : "int",&lt;BR /&gt;"optional" : true,&lt;BR /&gt;"repeating" : false },&lt;/P&gt;&lt;P style="color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;So I have modify nagini.py on the both functions I commented above to introduce the PageSize as a parameter and magic ... it works !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #24292e; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';"&gt;Now the question is why to have a Flag and not use it? and why there is not any documentation of Nagini, even if you search in google appear a github from a Harry Potter follower talking something about hacking school....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Juan Jose Vidañez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 12:47:36 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Operations/Nagini-library-in-Python-not-able-to-get-more-than-1000-objects/m-p/503865#M3001</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2018-02-15T12:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Massive Deploy VMs from csv file setting parameter on the fly as CPU, Network, Memory, Disks compatible linux/windows</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Documents/Massive-Deploy-VMs-from-csv-file-setting-parameter-on-the-fly-as/tac-p/2776006#M69</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At the VM provisioning using "&lt;SPAN class="pl-k" style="color: #a71d5d; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px;"&gt;RunAsync" and at the VM configuration controlling the running tasks:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="highlight tab-size js-file-line-container" data-tab-size="8" style="color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 14px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="blob-code-inner blob-code js-file-line" style="padding: 0 10px; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px;"&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;totalTasks&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;taskTab&lt;/SPAN&gt;&lt;SPAN class="pl-en" style="color: #795da3;"&gt;.Count&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="blob-num js-line-number" data-line-number="380" style="padding: 0 10px; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px; color: rgba(0, 0, 0, 0.298039); text-align: right;"&gt;&lt;/TD&gt;&lt;TD class="blob-code-inner blob-code js-file-line" style="padding: 0 10px; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px;"&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;runningTasks&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;totalTasks&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="blob-num js-line-number" data-line-number="381" style="padding: 0 10px; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px; color: rgba(0, 0, 0, 0.298039); text-align: right;"&gt;&lt;/TD&gt;&lt;TD class="blob-code-inner blob-code js-file-line" style="padding: 0 10px; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px;"&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;while&lt;/SPAN&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;runningTasks&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;-gt&lt;/SPAN&gt; &lt;SPAN class="pl-c1" style="color: #0086b3;"&gt;0&lt;/SPAN&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;)&lt;/SPAN&gt;{&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="blob-num js-line-number" data-line-number="382" style="padding: 0 10px; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px; color: rgba(0, 0, 0, 0.298039); text-align: right;"&gt;&lt;/TD&gt;&lt;TD class="blob-code-inner blob-code js-file-line" style="padding: 0 10px; font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;vmStatus&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="pl-s" style="color: #183691;"&gt;"[{0} of {1}] {2}"&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;-f&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;runningTasks&lt;/SPAN&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;,&lt;/SPAN&gt; &lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;$&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;totalTasks&lt;/SPAN&gt;&lt;SPAN class="pl-k" style="color: #a71d5d;"&gt;,&lt;/SPAN&gt; &lt;SPAN class="pl-s" style="color: #183691;"&gt;"Tasks Remaining"&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 07:56:19 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Documents/Massive-Deploy-VMs-from-csv-file-setting-parameter-on-the-fly-as/tac-p/2776006#M69</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2017-02-15T07:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: Optimization and speed up a script moving cluster from one vcenter to another</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Optimization-and-speed-up-a-script-moving-cluster-from-one/m-p/957427#M29659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;B&gt;LucD&lt;/B&gt;‌&lt;/P&gt;&lt;P&gt;As always a pleasure!! hehe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first one, with each entry in the vlans file, it has to go by all 800 VMs to look which are in that vlan and change it, as the file has 129 entries, this is really slow.&lt;/P&gt;&lt;P&gt;Second just do one pass across all the VMs in order to load all data in memory, but is slow in user experience because it doesn't show you anything in the screen until actually starts to modify VMs.&lt;/P&gt;&lt;P&gt;Third, I can't say if it's much faster than the second, but as it give you something on the screen on each VM at least the user experience is better to see if what you have done actually works, and even better it's one command line. So brief and good, 2 times good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, I just wanted to share my 2 hours looking for the appropriate command, I hope this entry helps some one else in the same situation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2017 14:50:01 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Optimization-and-speed-up-a-script-moving-cluster-from-one/m-p/957427#M29659</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2017-02-14T14:50:01Z</dc:date>
    </item>
    <item>
      <title>Massive Deploy VMs from csv file setting parameter on the fly as CPU, Network, Memory, Disks compatible linux/windows</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Documents/Massive-Deploy-VMs-from-csv-file-setting-parameter-on-the-fly-as/ta-p/2776004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://github.com/Vidanez/DeployVMs" title="https://github.com/Vidanez/DeployVMs"&gt;GitHub - Vidanez/DeployVMs: Deploying multiple Linux VMs using PowerCli&lt;/A&gt;&lt;/P&gt;&lt;H1 style="font-size: 2em; margin-bottom: 16px; padding-bottom: 0.3em; border-bottom: 1px solid #eeeeee; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; margin-top: 0 !important;"&gt;DeployVMs&lt;/H1&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Deploying multiple Linux VMs using PowerCli&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.DESCRIPTION VMs are deployed asynchronously based on a pre-configured csv file (DeployVM.csv) Designed to run from Powershell ISE&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.PARAMETER csvfile Path to DeployVM.csv file with new VM info&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.PARAMETER vCenter vCenter Server FQDN or IP&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.PARAMETER auto Will allow script to run with no review or confirmation&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.PARAMETER createcsv Generates a blank csv file - DeployVM.csv&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.EXAMPLE .\DeployVM.ps1 Runs DeployVM&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.EXAMPLE .\DeployVM.ps1 -vcenter my.vcenter.address Runs DeployVM specifying vCenter address&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.EXAMPLE .\DeployVM.ps1 -csvfile "E:\Scripts\Deploy\DeployVM.csv" -vcenter my.vcenter.address -auto Runs DeployVM specifying path to csv file, vCenter address and no confirmation&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.EXAMPLE .\DeployVM.ps1 -createcsv Creates a new/blank DeployVM.csv file in same directory as script&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;.NOTES Author: Shawn Masterson Created: May 2014 Version: 1.2&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Author: JJ Vidanez Created: Nov 2014 Version: 1.3 Add creation onthefly for customization Spec for linux systems Ability to create machines names and guest hostname using different names Added a value to find out the kind of disk because powercli bug for SDRS reported at &lt;A _jive_internal="true" href="https://communities.vmware.com/message/2442684#2442684" style="color: #4078c0;"&gt;https://communities.vmware.com/message/2442684#2442684&lt;/A&gt;Remove the dependency for an already created OScustomization Spec&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Author: JJ Vidanez Created: Jul 2015 Version: 1.4 Adding domain credential request for Windows systems&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Author : Simon Davies - Everything-Virtual.com Created : May 2016 Version: 1.5 Adding AD Computer Account Creation in specified OU's for VM's at start of deployment - Yes even Linux as that was a requirement It's possible to restrict this to just Windows VM's by removing the comment at line #261&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Author: JJ Vidanez &amp;amp; Robert Rowan Created: Jun 2016 Version: 1.6 Fixed issue to deploy just one VM Adding banner for each credential to show the domain where credentials are set If OU parameter is defined at the OU create the object on AD where the machine is register Linux and Windows&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;REQUIREMENTS PowerShell v3 or greater vCenter (tested on 5.1/5.5) PowerCLI 5.5 R2 or later CSV File - VM info with the following headers NameVM, Name, Boot, OSType, Template, CustSpec, Folder, ResourcePool, CPU, RAM, Disk2, Disk3, Disk4, SDRS, Datastore, DiskStorageFormat, NetType, Network, DHCP, IPAddress, SubnetMask, Gateway, pDNS, sDNS, Notes, Domain, OU Must be named DeployVM.csv Can be created with -createcsv switch CSV Field Definitions NameVM - Name of VM Name - Name of guest OS VM Boot - Determines whether or not to boot the VM - Must be 'true' or 'false' OSType - Must be 'Windows' or 'Linux' Template - Name of existing template to clone Folder - Folder in which to place VM in vCenter (optional) ResourcePool - VM placement - can be a reasource pool, host or a cluster CPU - Number of vCPU RAM - Amount of RAM in GB Disk2 - Size of additional disk to add (GB)(optional) Disk3 - Size of additional disk to add (GB)(optional) Disk4 - Size of additional disk to add (GB)(optional) SDRS - Mark to use a SDRS or not - Must be 'true' or 'false' Datastore - Datastore placement - Can be a datastore or datastore cluster DiskStorageFormat - Disk storage format - Must be 'Thin', 'Thick' or 'EagerZeroedThick' - Only funcional when SDRS = true NetType - vSwitch type - Must be 'vSS' or 'vDS' Network - Network/Port Group to connect NIC DHCP - Use DHCP - Must be 'true' or 'false' IPAddress - IP Address for NIC SubnetMask - Subnet Mask for NIC Gateway - Gateway for NIC pDNS - Primary DNS must be populated sDNS - Secondary NIC must be populated Notes - Description applied to the vCenter Notes field on VM Domain - DNS Domain must be populated OU - OU to create new computer accounts, must be the distinguished name eg "OU=TestOU1,OU=Servers,DC=my-homelab,DC=local"&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;CREDITS Handling New-VM Async - LucD - @LucD22 &lt;A href="http://www.lucd.info/2010/02/21/about-async-tasks-the-get-task-cmdlet-and-a-hash-table/" style="color: #4078c0;"&gt;http://www.lucd.info/2010/02/21/about-async-tasks-the-get-task-cmdlet-and-a-hash-table/&lt;/A&gt; &lt;A href="http://blog.smasterson.com/2014/05/21/deploying-multiple-vms-via-powercli-updated-v1-2/" style="color: #4078c0;"&gt;http://blog.smasterson.com/2014/05/21/deploying-multiple-vms-via-powercli-updated-v1-2/&lt;/A&gt; &lt;A href="http://blogs.vmware.com/PowerCLI/2014/05/working-customization-specifications-powercli-part-1.html" style="color: #4078c0;"&gt;http://blogs.vmware.com/PowerCLI/2014/05/working-customization-specifications-powercli-part-1.html&lt;/A&gt; &lt;A href="http://blogs.vmware.com/PowerCLI/2014/06/working-customization-specifications-powercli-part-2.html" style="color: #4078c0;"&gt;http://blogs.vmware.com/PowerCLI/2014/06/working-customization-specifications-powercli-part-2.html&lt;/A&gt;&lt;A href="http://blogs.vmware.com/PowerCLI/2014/06/working-customization-specifications-powercli-part-3.html" style="color: #4078c0;"&gt;http://blogs.vmware.com/PowerCLI/2014/06/working-customization-specifications-powercli-part-3.html&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;USE AT YOUR OWN RISK!&lt;/P&gt;&lt;P style="color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px; margin-bottom: 0 !important;"&gt;.LINK &lt;A href="http://blog.smasterson.com/2014/05/21/deploying-multiple-vms-via-powercli-updated-v1-2/" style="color: #4078c0;"&gt;http://blog.smasterson.com/2014/05/21/deploying-multiple-vms-via-powercli-updated-v1-2/&lt;/A&gt;&lt;A href="http://www.vidanez.com/2014/11/02/crear-multiples-linux-vms-de-un-fichero-csv-usando-powercli-deploying-multiple-linux-vms-using-powercli/" style="color: #4078c0;"&gt;http://www.vidanez.com/2014/11/02/crear-multiples-linux-vms-de-un-fichero-csv-usando-powercli-deploying-multiple-linux-vms-using-powercli/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2017 11:59:54 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Documents/Massive-Deploy-VMs-from-csv-file-setting-parameter-on-the-fly-as/ta-p/2776004</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2017-02-14T11:59:54Z</dc:date>
    </item>
    <item>
      <title>Migrate a cluster NO_DONWTIME with VDS from one vcenter to another vcenter</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Documents/Migrate-a-cluster-NO-DONWTIME-with-VDS-from-one-vcenter-to/ta-p/2772425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H1 style="font-size: 2em; margin-bottom: 16px; padding-bottom: 0.3em; border-bottom: 1px solid #eeeeee; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; margin-top: 0 !important;"&gt;MIGRATE A CLUSTER FROM ONE VCENTER TO ANOTHER VCENTER&lt;/H1&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;&lt;A href="https://github.com/Vidanez/Migrate-vCenter-with-vDS" title="https://github.com/Vidanez/Migrate-vCenter-with-vDS"&gt;GitHub - Vidanez/Migrate-vCenter-with-vDS: Migrate from one vcenter to another a Esxi host&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;This script is design to migrate a complete cluster from one vcenter to another vcenter complete different without service disruption.&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Features:&lt;/P&gt;&lt;PRE style="font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 13.6px; margin-bottom: 16px; padding: 16px; background-color: #f7f7f7; color: #333333;"&gt;&lt;CODE style="font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 13.6px; background: transparent;"&gt;Migrates VM folder locations and permissions Migrates HA/DRS rules Migrates Custom Attributes Migrates VDS and port groups Process Clusters in serial order Use a CSV files like this example: SourceVC,destinationVC,Sourcecluster,SourceDC,DestinationDC &lt;/CODE&gt;&lt;/PRE&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;pepevcenter1,antoniovcenter2,pepecluster,datacenter1,datacenter2&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;During the process it does questions in order to allow manual intervention about:&lt;/P&gt;&lt;PRE style="font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 13.6px; margin-bottom: 16px; padding: 16px; background-color: #f7f7f7; color: #333333;"&gt;&lt;CODE style="font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; font-size: 13.6px; background: transparent;"&gt;If in the first cluster you already migrate the folders order in the datacenter you don’t need to do it again If you already create the vDS on any of the cluster you can skip it You have to manually decide which interface are you going to use in the vSS created to migrate the vDS in order to don’t lose connectivity You have to say the name of the vDS if you want to migrate a vDS You have to confirm in the move of cluster from vcenters You have to confirm that once migrate the host you want to migrate the vms from vSS to vDS. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Known Issues and limitations:&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;You need to be careful with vDS versions because this script doesn’t care about it. Think about a situation where you have to migrate from 5.5 to 6.0 where old host are not going to be compatible with the new vDS.&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;There is a part emails out reporting on migration activities. I have it currently commented out. Customise and uncomment to use it&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;To-do:&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Only takes care of one vDS per cluster is pending to introduce a loop just in case we have more than one&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;It doesn’t pre-check the vDS name&lt;/P&gt;&lt;P style="margin-bottom: 16px; color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px;"&gt;Some questions are not clear need to be improved&lt;/P&gt;&lt;P style="color: #333333; font-family: -apple-system, system-ui, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; font-size: 16px; margin-bottom: 0 !important;"&gt;We could present to the user the interfaces per host used at the vDS and choose the one to move to the vSS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2017 11:58:01 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Documents/Migrate-a-cluster-NO-DONWTIME-with-VDS-from-one-vcenter-to/ta-p/2772425</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2017-02-14T11:58:01Z</dc:date>
    </item>
    <item>
      <title>Optimization and speed up a script moving cluster from one vcenter to another</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Optimization-and-speed-up-a-script-moving-cluster-from-one/m-p/957425#M29657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a situation and a challenge&lt;/P&gt;&lt;P&gt;I have a cluster with 129 Vlans distributed portgroups, and I need to move this cluster to another Vcenter&lt;/P&gt;&lt;P&gt;Using different pieces &lt;SPAN style="font-size: 13.3333px;"&gt;(thanks &lt;/SPAN&gt;&lt;B&gt;LucD&lt;/B&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;‌ and many others)&lt;/SPAN&gt; I put together a script to perform this action. Its available at&amp;nbsp; &lt;A href="https://github.com/Vidanez/Migrate-vCenter-with-vDS" title="https://github.com/Vidanez/Migrate-vCenter-with-vDS"&gt;GitHub - Vidanez/Migrate-vCenter-with-vDS: Migrate from one vcenter to another a Esxi host&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The resume is that the script pass everything from one vcenter to another changing in the fly VDS to VSS and respecting folders, permissions and DRS rules.&lt;/P&gt;&lt;P&gt;The problem come when you need to move 129 portgroups. My code change VM by VM base on the information saved and this is really slow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: during the migration the portgroups which are named as VLAN-XXX got VSS as Mig-VLANXXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I tried another 3 methods:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I got a list of port on a file vlans&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;cat&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; vlans | &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;foreach&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; { &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$value&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$_&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; ; &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Get-Cluster&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; CLUSTER01 |&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Get-VM&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; |&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Get-NetworkAdapter&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; |&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Where&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; {&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$_&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;&lt;SPAN class="s5"&gt;NetworkName&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s4"&gt;-eq&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s6"&gt;"Mig-"&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$value&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; } |&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Set-NetworkAdapter&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;-RunAsync&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;-NetworkName&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$value&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;-Confirm:$false&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I wrote a little script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$VMadpts = Get-Cluster CLUSTER01 |Get-VM |Get-NetworkAdapter |Where {$_.NetworkName -like "Mig-*" }&lt;/P&gt;&lt;P&gt;foreach ( $VMadpt in $VMadpts)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $val = $VMadpt.NetworkName.TrimStart("Mig-")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set-NetworkAdapter -NetworkAdapter $VMadpt -RunAsync -NetworkName $val -Confirm:$false&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. I used a command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Get-Cluster&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; CLUSTER01 |&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Get-VM&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; |&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Get-NetworkAdapter&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; |&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Where&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; {&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$_&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;NetworkName&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s5"&gt;-like&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s6"&gt;"Mig-*"&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; } | &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;foreach&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; { &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$val&lt;/SPAN&gt;&lt;SPAN class="s5"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$_&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; ; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$valnet&lt;/SPAN&gt;&lt;SPAN class="s5"&gt;=&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$_&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;NetworkName&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;TrimStart&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s6"&gt;"Mig-"&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;); &lt;/SPAN&gt;&lt;SPAN class="s1"&gt;Set-NetworkAdapter&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;-NetworkAdapter&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$val&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;-NetworkName&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;$valnet&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;-RunAsync&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;-Confirm:$false&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;Which do you think would be the faster one? and why?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s2"&gt;Also I need to refactor my script for high number of vlans environments and also it has a error creating distributed portgroup that left them without active uplink.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2017 11:54:33 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/Optimization-and-speed-up-a-script-moving-cluster-from-one/m-p/957425#M29657</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2017-02-14T11:54:33Z</dc:date>
    </item>
    <item>
      <title>Installing tools on Solaris 10, libvmtools.so failed not found</title>
      <link>https://communities.vmware.com/t5/Linux-Discussions/Installing-tools-on-Solaris-10-libvmtools-so-failed-not-found/m-p/865835#M132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Solaris 10 Update 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;I trying to install vmware tools on solaris 10 and is possible on new system with complete installating, on minimal instalation I try this steps and failed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First try failed &lt;/P&gt;&lt;P&gt;I cant finish the script vmware-install without X11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second try failed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Install all Xorg package and gnome packages. fail on last step looking for libvmtools.so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Third try failed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Launched a truss of vmtoolsd and he is looking for libvmtools.so on:&lt;/P&gt;&lt;P&gt;/usr/local/lib/sparv9/libvmtools.so&lt;/P&gt;&lt;P&gt;/usr/lib/64/libvmtools.so&lt;/P&gt;&lt;P&gt;/lib/64/libvmtools.so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the file is under lib on the installation package so copy it to the location and a new error appear "wrong ELF class: ELFCLASS32"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fourd try failed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This libvmtools.so is under /usr/lib/vmware-tools/lib/ if you have launched ones the script so I linked it on the system&lt;/P&gt;&lt;P&gt;clre -u -l /usr/lib/vmware-tools/lib/&lt;/P&gt;&lt;P&gt;But failed because cant find it the same like on second step failed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I stuck here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one knows which are the Solaris package requeriments to install vmware tools?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2011 12:38:38 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/Linux-Discussions/Installing-tools-on-Solaris-10-libvmtools-so-failed-not-found/m-p/865835#M132</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2011-08-03T12:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Guest Solaris 10 DHCP Server</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Guest-Solaris-10-DHCP-Server/m-p/2451747#M146269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally I sort it out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It was a problem with other softwares on my computer, It looks amazing but disabling my vpn clients let my virtual dhcp server works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks everyone. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2008 13:37:31 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Guest-Solaris-10-DHCP-Server/m-p/2451747#M146269</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2008-07-25T13:37:31Z</dc:date>
    </item>
    <item>
      <title>Guest Solaris 10 DHCP Server</title>
      <link>https://communities.vmware.com/t5/VMware-Workstation-Pro/Guest-Solaris-10-DHCP-Server/m-p/2451746#M146268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm pretty new on virtualization systems, and trying to make some change on my company infrastructure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to setup a DHCP Server on a virtualizes Solaris 10 the configuration on the networkis"briged" on VMnet0. On the Solaris 10 are setup a IP on the same vlan than the main system and the comunication with it are ok even a web server on solaris 10 are accesible from any where on the net. The problem its that are not offering ip whit his dhcp server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Network on host:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IP 192.168.8.13&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MASK 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GW 192.168.8.254&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On solaris 10:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IP 192.168.8.20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MASK 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GW 192.168.8.254&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 10:55:36 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Workstation-Pro/Guest-Solaris-10-DHCP-Server/m-p/2451746#M146268</guid>
      <dc:creator>gok</dc:creator>
      <dc:date>2008-07-23T10:55:36Z</dc:date>
    </item>
  </channel>
</rss>

