<?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>topic Adding a user to a newly provisioned VM in VMware Aria Automation Tools Discussions</title>
    <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698484#M20300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to figure out how to add or create a user based on the requestor of the VM..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a clone workflow in my blue print so I'm guessing that VirtualMachine.Admin.AddOwnerToAdmins is out of the question. Currently I have a script that runs after the vm is provisioned, part of this is to scan GuestAgent.log for VirtualMachine.Admin.Owner then create a local user and add it to the Administrators group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm guessing that this isn't the best or right way to do things so any pointers would be appreciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jan 2014 09:20:23 GMT</pubDate>
    <dc:creator>Craig_G2</dc:creator>
    <dc:date>2014-01-17T09:20:23Z</dc:date>
    <item>
      <title>Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698484#M20300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to figure out how to add or create a user based on the requestor of the VM..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a clone workflow in my blue print so I'm guessing that VirtualMachine.Admin.AddOwnerToAdmins is out of the question. Currently I have a script that runs after the vm is provisioned, part of this is to scan GuestAgent.log for VirtualMachine.Admin.Owner then create a local user and add it to the Administrators group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm guessing that this isn't the best or right way to do things so any pointers would be appreciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 09:20:23 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698484#M20300</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-01-17T09:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698485#M20301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Late reply but maybe still of interest: instead of using the GuestAgent and have it done on the machine you can always do this in the MachineProvisioned step and with a Invoke-VmGuest call to the machine provisioned. With that approach you might be more flexible depending what other tasks you want to perform. Ronald&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 09:07:17 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698485#M20301</guid>
      <dc:creator>d-fens</dc:creator>
      <dc:date>2014-02-18T09:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698486#M20302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for this!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ended up using the legacy.workflow.user as it appears to be an external property - My guest script then strips the domain and adds the user to the local admins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My plan is to migrate tasks like this in to to vCAC workflow stubs, like you suggested, as I feel that you have more control over what is going on!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 10:01:01 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698486#M20302</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-02-18T10:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698487#M20303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;eatVM - Can you share how your guest script stripped the domain from the legacy.workflow.user value?&amp;nbsp; I'll need to do the same, because I'm trying to use the sample guest script from the &lt;A href="https://communities.vmware.com/docs/DOC-25474"&gt;Guest script manager package&lt;/A&gt; and it already specifies the domain as a separate value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 20:19:08 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698487#M20303</guid>
      <dc:creator>stacycarter</dc:creator>
      <dc:date>2014-03-05T20:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698488#M20304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did this with the vCO workflow stubs.&amp;nbsp; It is really easy to get this going just a few setup things which is outlined in the extensibility document which was released with 6.0.1 then a simple workflow.&amp;nbsp; For windows systems this is what I did.&amp;nbsp; You will want to replace the QCrunProgramInGuest with the canned runProgramInGuest workflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;var vmOwnerEmail = vCACVmProperties.get("__Legacy.Workflow.User");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;var vmOwner = vmOwnerEmail.substring(0,vmOwnerEmail.indexOf("@"));&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;//Add Local Admins&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;programPath = "c:\\Windows\\System32\\cmd.exe";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;workingDirectory = "c:\\Windows\\System32";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;arguments = "/c net LOCALGROUP Administrators /ADD " + vmOwner +" &amp;gt;&amp;gt; c:\\runQconfig\\provisioning.log";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;result = System.getModule("com.qualcomm.basic").QCrunProgramInGuest(vm,vmUsername,vmPassword,interactiveSession,programPath,arguments,workingDirectory,environment);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also add a custom property if you want people to specify a list of user or group names that sort of thing but the __Legacy.Workflow.User property should map to the owner.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 22:08:23 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698488#M20304</guid>
      <dc:creator>qc4vmware</dc:creator>
      <dc:date>2014-03-05T22:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698489#M20305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is pretty much what I did, only difference is that I now get VirtualMachine.Admin.Owner in the original machine provisioned workflow stub and pass it to the vco workflow as an input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then have this function (which, on it's own is best suited to an action) to strip away suffix:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function getUserCode(user) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; //removes upn from the output of VirtualMachine.Admin.Owner&lt;/P&gt;&lt;P&gt;&amp;nbsp; //and returns usercode&lt;/P&gt;&lt;P&gt;&amp;nbsp; user = user.replace(/@.*$/i, "");&lt;/P&gt;&lt;P&gt;&amp;nbsp; return user;&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 08:12:29 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698489#M20305</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-03-06T08:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698490#M20306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've attached my workflow for ref &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not as streamlined as the code from qc4vmware but it works for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 08:26:51 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698490#M20306</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-03-06T08:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698491#M20307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;EatVM, your script is exactly what I need.&amp;nbsp; Users are in a different domain than what the VM's are going to be in, so removing the UPN is perfect.&amp;nbsp; However when I run your workflow in my scenario, it completes fine but doesnt actually add the user to the admin group.&amp;nbsp;&amp;nbsp; I can run the command locally on the VM and it add fine.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 18:56:12 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698491#M20307</guid>
      <dc:creator>DLally</dc:creator>
      <dc:date>2014-07-30T18:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698492#M20308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sadly you need to disable UAC in the template for in guest commands to run!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I provision the machine with UAC disabled then re enable it at the end of the vco workflow with another in guest script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will be able to give more info tomorrow if you need it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 19:04:43 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698492#M20308</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-07-30T19:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698493#M20309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Weird, UAC is already disabled.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 19:08:22 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698493#M20309</guid>
      <dc:creator>DLally</dc:creator>
      <dc:date>2014-07-30T19:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698494#M20310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will look at my workflow when i'm in work and get back to you. It's been a while since i've looked at that particular part of the workflow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 19:11:32 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698494#M20310</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-07-30T19:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698495#M20311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's i'd appreciate it! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.vmware.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 19:27:34 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698495#M20311</guid>
      <dc:creator>DLally</dc:creator>
      <dc:date>2014-07-30T19:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698496#M20312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My experience with uac has been that sometimes I think it is disabled but it is not in fact disabled.&amp;nbsp; Sometimes I have to go in and enable then disable for the change to really stick.&amp;nbsp; If you login to your image with an account that is in the local admin group, then launch a command window, if the title bar for the command window doesn't show up as in administrator mode then running the in guest scripts will fail on windows.&amp;nbsp; I have only noticed this issue in 2012 and 2012R2.&amp;nbsp; Anyway after flipping it on/off and also making sure in the registry that a certain key is flipped.&amp;nbsp; Take a look at this article &lt;A href="http://social.technet.microsoft.com/wiki/contents/articles/13953.windows-server-2012-deactivating-uac.aspx" title="http://social.technet.microsoft.com/wiki/contents/articles/13953.windows-server-2012-deactivating-uac.aspx"&gt;http://social.technet.microsoft.com/wiki/contents/articles/13953.windows-server-2012-deactivating-uac.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 20:43:25 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698496#M20312</guid>
      <dc:creator>qc4vmware</dc:creator>
      <dc:date>2014-07-30T20:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698497#M20313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;qc4vmware is right.. I have seen this too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Double check the registry settings to make sure UAC is disabled.&lt;/LI&gt;&lt;LI&gt;Check that the programPath and workingDirectory attributes are correct&lt;/LI&gt;&lt;LI&gt;Try changing the arguments variable in the scriptable task to one of the following:&lt;UL&gt;&lt;LI&gt;var arguments = "echo hello &amp;gt;&amp;gt; c:\test.txt";&lt;/LI&gt;&lt;LI&gt;var arguments = "echo Add user: " + user + " to " + " the " + group + " group &amp;gt;&amp;gt; c:\test.txt";&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;That will at least give you an idea if the script is running or not&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know how you get on! :smileylaugh:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 07:42:49 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698497#M20313</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-07-31T07:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698498#M20314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My VM's are 2008, but I still disabled UAC like the link stated to.&amp;nbsp; Verified the paths are fine.&amp;nbsp;&amp;nbsp; So it looks like the script isnt even getting ran on my guest at this point.&amp;nbsp;&amp;nbsp;&amp;nbsp; I tried to ouput a text file to see if it was even executing and it's not outputing anything.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 13:15:40 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698498#M20314</guid>
      <dc:creator>DLally</dc:creator>
      <dc:date>2014-07-31T13:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698499#M20315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wait - interactive session isn't set to true is it?? This needs to be false.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try running the script from vco whilst logged on with the user you tell vco to use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 13:20:30 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698499#M20315</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-07-31T13:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698500#M20316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here: guestAuth.interactiveSession = false;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 13:27:56 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698500#M20316</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-07-31T13:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698501#M20317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I tried running it with the same user I was logged in with, still nothing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where do I need to add that new guestAuth to?&amp;nbsp; Sorry this is still all kinda new to me. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 13:37:07 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698501#M20317</guid>
      <dc:creator>DLally</dc:creator>
      <dc:date>2014-07-31T13:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698502#M20318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That should be in the second scriptable task in the workflow.. The param is already there, just check what it's value is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:26:45 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698502#M20318</guid>
      <dc:creator>Craig_G2</dc:creator>
      <dc:date>2014-07-31T14:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a user to a newly provisioned VM</title>
      <link>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698503#M20319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed this mornign when looking at this workflow again, the vm variable's value says "not found" although I'm selecting a VM to run it on to test.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 12:47:22 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-Aria-Automation-Tools/Adding-a-user-to-a-newly-provisioned-VM/m-p/2698503#M20319</guid>
      <dc:creator>DLally</dc:creator>
      <dc:date>2014-08-01T12:47:22Z</dc:date>
    </item>
  </channel>
</rss>

