Quantcast
Channel: VMware Communities: Message List
Viewing all 230966 articles
Browse latest View live

Run a DELAYED logon task.

$
0
0

I would like to run the UEM Shortcut refresh a few seconds delayed after logon.

 

Scenario:

 

I have a DirectFlex for the "AppV 5.x Integrations" (triggered off SyncAppvPublishingServer.exe) that runs after you get your desktop.

That takes a few seconds to process.

I have a couple of Desktop Icons for Outlook & Lync that I would like to show up, but the DirectFlex job finishes after the usual UEM shortcuts are populated.

I've tried adding a "User Environment" sub task to the "AppV 5.x Integrations", as a Post-Import Task...but it is still too early.

 

Does anyone else know any tricks to running a delayed process? (without a visual batch file running a count statement)

 

John


Re: Accès to shared folders causes crash

$
0
0

Great to hear you found the root cause and a proper solution!

 

This is valuable feedback, thanks for letting us know.

 

--

Wil

Re: Storage DAS

$
0
0

FreeNAS or OpenFiler will not will help you to use all 3 servers storage and use features like HA, DRS, vMotion.

You can install FreeNAS or Openfiler on one of the Host and provision all its storage to other remaining ESXi hosts.

In this case you will have dependency on one single host of FreeNAS or openfiler.

 

if you would like to use all hosts local storage with advanced features  then you will need to use hyper converged solution like Virtual SAN.

 

Introduction VMware vSphere Virtual SAN

 

to use this you will need to have vCenter, ESXi license and also Virtual SAN license.

Its easy to use and configure. However it has specific hardware requirements.

Virtual SAN Software-Defined Shared Storage: VMware

http://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/products/vsan/vmware-virtual-san-datasheet.pdf

 

With VSAN, you would be able to use features like HA, DRS, vMotion with local storage.

 

 

-

Haridas Vhadade

Re: Native VLAN

Re: Unable to maximize Workstation 12 Player

$
0
0

Hi,

 

When you say "first set of instructions" I take it you meant:

Ubuntu or Ubuntu Server with a graphical user interface

 

Was there any error message?

 

In the VM have you tried adjusting the screen resolution under display settings (or something along those lines, I don't have a Ubuntu VM here near me atm)

--

Wil

Re: PowerCLI Command to get NTP Servers for all VM Hosts

Re: "SSO admin service failure" exception in vSphere 6.0.2

$
0
0

devakumar Thank you for the information. Do you know if this is still an issue in the 6.5 SDK? If so is it known whether this will be fixed by the time 6.5 GAs?  Thanks again, much appreciated.

Re: PowerCLI script to find the host a vm is on from a text file with server names

$
0
0

Try below commands.  txt file path - C:\temp\inputFile.txt

 

$vmList = Get-Content C:\temp\inputFile.txt

foreach ($vmName in $vmList) {Get-VM $vmName  | select Name, @{N="VMHost"; E={$_.VMHost.Name}}}

 

 

 

 

 

-

Haridas Vhadade


Re: get cluster utilization info

Re: Storage clustered

$
0
0

Yes, if you configure one of the NAS devices so that both host can assess it and see the datastores then HA will restart VMs on the other host if one hosts fails *YOu need to setup a cluster, put the hosts inside it and enable HA)

 

If the NAS fails, you can recover the VMs via vSphere Replication UI, you need to manually trigger this otherwise your VMs might get recovered during a "false positive" outage)

 

If the VC is down though, then you will not be able to bring up the VMs on the other host with vSphere Replication because you need the VC to be online.

 

Solution 1) Store the VC on the other NAS and ensure you have backups

Solution 2) In the event of main NAS failing, manually bring them online (Search datastore for the replicated VMs and add to the inventory)

Solution 3) Or build another VC (licensing?) and replicate to a Replication appliance deployted to that VC, store the VC on the other NAS

 

Also, ensure you are using RAID on both NAS devices to help prevent any failures.

 

For your other question, Your VMs disks and VMs configuration filess should all be stored on the NAS. The host requires a very small amount of space to install ESXi, depending on the evrsion of ESXi it's something like 8GB for the install and some space for logs etc. Recommended option is to install to a USB stick or SD card installed nside the host

 

I hope this helps, anything else just ask.

 

vSphere Replication, quick youtube video here: https://www.youtube.com/watch?v=8lXSQUOY9eo

Re: Migration of SUSE Linux VMs from HyperV to ESXi

$
0
0

customer is using UEFI .... is this supported ?

i read somewhere in the userguide that only bios firmware interface is supported....

Re: Command line tool for datastore performance test in ESXi 6

Re: Run a DELAYED logon task.

$
0
0

UEM has two events in the Application event log, Event ID 256 for import start and 257 for import finish. You could create a scheduled task to run as NT Authority\System based on that event and the action "c:\program files\immidio\flex profiles\flexengine.exe" -UemRefresh Here is a task configured that way that can be imported. This looks like it  might be too early though.:

 

<?xml version="1.0" encoding="UTF-16"?><Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">  <RegistrationInfo>    <Date>2016-09-28T10:29:54.3524799</Date>    <Author>Eric Nichols</Author>    <URI>UEM Finished</URI>  </RegistrationInfo>  <Triggers>    <EventTrigger>      <Enabled>true</Enabled>      <Subscription>&lt;QueryList&gt;&lt;Query Id="0" Path="Application"&gt;&lt;Select Path="Application"&gt;*[System[Provider[@Name='Immidio Flex+'] and EventID=257]]&lt;/Select&gt;&lt;/Query&gt;&lt;/QueryList&gt;</Subscription>    </EventTrigger>  </Triggers>  <Principals>    <Principal id="Author">      <UserId>S-1-5-18</UserId>      <RunLevel>LeastPrivilege</RunLevel>    </Principal>  </Principals>  <Settings>    <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>    <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>    <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>    <AllowHardTerminate>true</AllowHardTerminate>    <StartWhenAvailable>false</StartWhenAvailable>    <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>    <IdleSettings>      <StopOnIdleEnd>true</StopOnIdleEnd>      <RestartOnIdle>false</RestartOnIdle>    </IdleSettings>    <AllowStartOnDemand>true</AllowStartOnDemand>    <Enabled>true</Enabled>    <Hidden>false</Hidden>    <RunOnlyIfIdle>false</RunOnlyIfIdle>    <WakeToRun>false</WakeToRun>    <ExecutionTimeLimit>PT72H</ExecutionTimeLimit>    <Priority>7</Priority>  </Settings>  <Actions Context="Author">    <Exec>      <Command>"C:\Program Files\Immidio\Flex Profiles\FlexEngine.exe"</Command>      <Arguments>-UemRefresh</Arguments>    </Exec>  </Actions></Task>

 

If that is too early, you could use a scheduled task with a logon trigger with a delay:

 

logon.png

How do I change the IP of VM using VMWare API.

$
0
0

Hey,

 

CustomizeVM is using sysprep to do the customization. Is there any other easy way to just set static IP Address on VM without using sysprep?.

 

Any help would be really appreciated.

 

Thank you

Sabitha.

Re: Defect: solutionsCategory issue with 6.5 RC

$
0
0

Has anyone had a chance to look at this issue?

To summarize, it is an issue with applications that use the vise.navigator.nodespecs extension point with a parentID of vsphere.core.navigator.solutionsCategory.

  <extensionid="com.sample.solution">

      <extendedPoint>vise.navigator.nodespecs</extendedPoint>

      <object>

         <title>My Solution</title>

         <icon>#{mySolution.icon}</icon> 

         <parentUid>vsphere.core.navigator.solutionsCategory</parentUid>

         <isFocusable>true</isFocusable>

         <navigationTargetUid>com.sample.views</navigationTargetUid>

       </object>

   </extension>

Thanks,

-Darrell


Re: Storage DAS

$
0
0

I know the solution of VSAN, but i don't have any SSD... and i can't buy anyone.

If i try your solution, i 'll lose 8*600 Gb HDD... sad :-(

 

Thank you anyway for your reply Haridas.

Re: Run a DELAYED logon task.

$
0
0

Hi John,

 

Why have you enabled DirectFlex for the App-V 5 integrations?

Why not simply import them at logon, that will solve the timing issue I guess.

Re: Guest display scaling on Workstation 11?

$
0
0

I find this frustrating as well.

I don't need all the fancy typography from high-dpi displays, necessarily (although that would be nice, too.)

But, a feature/checkbox to say "scale each virtual display pixel to two physical pixels" would be a fantastic feature.

I'm using Workstation 12.5, hosting on Windows 10 AE, guests VMs are everything from very old Linux/X11 systems to Windows 7 Pro.

 

(Also, "stretch guest" is dimmed for me, I cannot select it!)

How do I assign a static IP using ovftool?

$
0
0

Hello community,

 

I need to set up an instance with specific IP. It is on the network which doesn't have DHCP.

 

This answer Is there a way to specify static IP for a deploying OVA in the ovftool command? advises to use properties. But I am not using .ovf, but .ova file, and when I do:

ovftool gateway-9.1.01-6703-vmware-centos-x86_64e.ova

 

I get the following info from ova file:

 

[13:06:46][Step 5/13] OVF version:   1.0
[13:06:46][Step 5/13] VirtualApp:    false
[13:06:46][Step 5/13] Name:          gateway-9.1.01-6703-vmware-centos-x86_64
[13:06:46][Step 5/13]
[13:06:46][Step 5/13] Download Size:  1.80 GB
[13:06:46][Step 5/13]
[13:06:46][Step 5/13] Deployment Sizes:
[13:06:46][Step 5/13]   Flat disks:   50.00 GB
[13:06:46][Step 5/13]   Sparse disks: 4.28 GB
[13:06:46][Step 5/13]
[13:06:46][Step 5/13] Networks:
[13:06:46][Step 5/13]   Name:        VM Network
[13:06:46][Step 5/13]   Description: The VM Network network
[13:06:46][Step 5/13]
[13:06:46][Step 5/13] Virtual Machines:
[13:06:46][Step 5/13]   Name:               gateway-9.1.01-6703-vmware-centos-x86_64
[13:06:46][Step 5/13]   Operating System:   rhel6_64guest
[13:06:46][Step 5/13]   Virtual Hardware:
[13:06:46][Step 5/13]     Families:         vmx-07
[13:06:46][Step 5/13]     Number of CPUs:   2
[13:06:46][Step 5/13]     Cores per socket: 1
[13:06:46][Step 5/13]     Memory:           2.00 GB
[13:06:46][Step 5/13]
[13:06:46][Step 5/13]     Disks:
[13:06:46][Step 5/13]       Index:          0
[13:06:46][Step 5/13]       Instance ID:    9
[13:06:46][Step 5/13]       Capacity:       50.00 GB
[13:06:46][Step 5/13]       Disk Types:     SCSI-lsilogic
[13:06:46][Step 5/13]
[13:06:46][Step 5/13]     NICs:
[13:06:46][Step 5/13]       Adapter Type:   VmxNet3
[13:06:46][Step 5/13]       Connection:     VM Network

 

As you can see there are no properties for me to configure. So therefore I can't do anything like that:

--prop:{ClassID}.{Key}.{InstanceID}={Value}

 

So who do I set up this .ova instance with the specific IP on DMZ network?

 

I've tried various combination of the following, but unsuccessfully:

ovftool --nic:ipAddress="10.7.42.191" --powerOn --datastore="SSD_Datastore" --noSSLVerify --name="my_name" -dm=thin --network="DMZ" C:\Shared\gateway-9.1.00-6342-vmware-rhel-x86_64.ova vi://root:"my_password"@my.host.com

App Volumes 3.0 - Slow file explorer when stacks attached.

$
0
0

I'm running windows 10 enterprise 1604

followed this guide for optimization VMware Horizon View – Windows 10 Golden Image Creation » ITuDA

ESXI - 6 u1

View environment - 6.2.0 build-3005368

Pure storage solid state

teridici video

2 linked clone pools with and without a disposable drive

 

 

log into the vm through Horizon view client everything runs fine no lag in the file explorer.

when i attach app stacks file explorer slows way down and the more apps i add the slower it gets.

the file explorer displays "working on it" for 3 - 5 seconds before pulling up anything.

i have tried starting explorer in "this PC" and in "quick access", still the same results.

I have probably been going in circles for over a week on this

 

i have rebuilt the image, rebuilt the apps, the app capture system, tweaked and tweaked and tweaked the base image , rebuilt the pool several times

any one else running into this issue?

Viewing all 230966 articles
Browse latest View live




Latest Images