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

Re: Strange error deploying using OScustomizationspec

$
0
0

Try the script below. The main thing I changed was moving the "ChangeSID" to the New-OSCustomizationSpec Params. You don't have to set the "Type" for the OSC as it defaults to "nonPersistent" and is saved in your current powershell session.

I added the hashtables as I believe it's easier to read and manage, just personal preference I guess.

 

$templateName = "testtemplate"
$vmhostName = "esxiserver"
$sid = $true
$IpMode = "UseStaticIP"
$IpAddress = "192.168.1.2"
$SubnetMask = "255.255.255.0"
$Dns = "192.168.1.4"
$DefaultGateway = "192.168.1.3"

 

Connect-VIServer 192.168.1.1

 

# 1. Create a simple customizations spec

$custSpecParms = @{
    FullName = "Dude"
    OSType = "Windows"
    OrgName = "SomeBusiness"
    Domain = "domain.ad"
    DomainUsername = "user"
    DomainPassword = "password"
    ChangeSID = $sid
}

$custSpec = New-OSCustomizationSpec -OSCustomizationSpec @custSpecParms

 

# 2. Modify the default network customization settings

$custNicParms = @{
    IpMode = $IpMode
    IpAddress = $IpAddress
    SubnetMask = $SubnetMask
    Dns = $Dns
    DefaultGateway = $DefaultGateway
}

$custSpec | Get-OSCustomizationNicMapping | Set-OSCustomizationNicMapping @custNicParms

 

# 3. Deploy a VM from a template using the newly created customization:
$template = Get-Template -Name $templateName
$vmHost = Get-VMHost -Name $vmhostName
New-VM -Name nbstemp001 -Template $template -VMHost $vmHost -OSCustomizationSpec $custSpec


Thinapp using middleware tools on VM

$
0
0

I'm running into an issue where a home-grown application cannot access the middleware tools in order to connect to a database at user login.  The middleware tools are IBM CICS Transaction Gateway.

 

I currently have my isolation mode set at "Merged", typically, I use "Write Copy"

 

The file(s) for CTG are installed correctly.  A fat client install of the home-grown application on the same VM functions w/o issues.

 

 

 

Any assistance would be appreciated.

 

Running Win7/64

Built on Thinapp 4.7.3 / Win7/64 bit

Re: sync take ages to complete, found issue, found temp solution

$
0
0

> can *.vmem not be sync to disk when it is in memory?
No
mainMem.useNamedFile = "FALSE"

that parameter tells WS not to use a vmem-file that is stored on disk. Instead it allocates that file in RAM + swapfile.
When you suspend the VM WS transfers the content of the vmem inside RAM to a permanent file on disk. This will probably uses even more time than you needed without the mainmemfile parameter.
To speed up  wakeup of a suspended VM the only thing you ca´n do is to reduce the amount of RAM for the VM.
I noticed that in most cases powering down the VM is faster than using Suspend.


Replicate between 5.x and 6.x

$
0
0

Hi

we are in the progress of moving a lot of VM's from a vSphere 5.5 environment to a vSphere 6 environment and we want to have this done with the least amount of downtime. We have looked at vSphere Replication to manage this job, but then the question come:

has anybody tried this ??

IS it possible to Replicate between 5.x and 6.x ??

AS fare as I have read we will not be able to use compression but is that the only thing ?

 

Looking forward to hear if it's possible.

Thanks in advance.

Regards,

Kim

Re: Restarting Management Agents

$
0
0

Hi Ben,

 

I'm trying to understand what exactly is the impact to VMs when you select "Restart Management Network"?

 

Thanks,

 

Amir

Re: How to migrate N1k DVS to VDS?

$
0
0

Also, make sure you already have any portgroups/VLANs setup on the vDS so that when you migrate VM networking, everything will stay online. I like to migrate one nic to the vDS first, then migrate the vmkernel for management and then proceed with other vmkernel adapters and VM networking and then bring the other physical network adapter over to the vDS.

Re: Anybody got a clever way of NOT monitoring a guest vm volume

$
0
0

You'll want to disable the symptom that applies to ALL instantiations and re-create symptoms to every mount point other that D:. It's a pain, but  you symptom criteria can either be for all instantiation or ONE instantiation. If you want to exclude one instantiation, you need to specify every instantiation OTHER than the one you want to include. There are a number of VMTN threads on the specific steps.

Re: Is vRealize Operations for monitoring virtual machines and Services

$
0
0

1-yes 2-no, it also does capacity planning and automated remediation and workload placement. 3-everything vCenter monitors, but that's just vCenter data sources. We can ingest data from other sources as well, such as storage, server hardware, etc, which build hierarchies and topologies within vR Ops to allow correlation of events, alerting, etc. 4-it can monitor physical servers as well, by virtue of EPO agents and/or ingesting data from another 3rd party management pack or middleware solution.


Re: Replicate between 5.x and 6.x

$
0
0

See the FAQ:

Can I use vSphere Replication to replicate a VM between vCenters running different versions of vSphere Replication (eg. VR 5.5 to 6.0)?

To replicate between vCenters, vSphere Replication requires the same major version (eg. 5.5.x > 5.5.x) of vCenter and vSphere Replication at both source and target. This is the only officially tested and supported configuration. Check the VMware Product Interoperability Matrix if you have any questions about matching vCenter and vSphere Replication versions.

 

Source: vSphere Replication Frequently Asked Questions (FAQ) - The current version of this doc has moved to: https://storagehub.vmware.com/#!/vsphere-replication/vsphere-replication-faq

storage vmotion (change host and datastore option ) is not working for esxi5.5 hosted vms : it is greyed out

$
0
0

storage vmotion (change host and datastore option) is not working for esxi5.5 hosted vms : it is greyed out and says 'Virtual machine should be powered off to change VM's hosts and datastores'

Will storage vmotion work while moving VMs from ESXi 5.0 datastore cluster to new ESXi 6.0 hosts datastore cluster : without powering off the VMs ?

$
0
0

Will storage vmotion work while moving VMs from ESXi 5.0 datastore cluster to new ESXi 6.0 hosts datastore cluster : without powering off the VMs ?

 

I am assuming that i am running Vcenter 6 with all these ESXi 5.0 and ESXi 6.0 hosts in the same hosts cluster.

Are VMware Tools needed in HA?

$
0
0

Hi,

 

I am planning VMware HA architecture which will be located in two DC, data will be synced via DB replication (via FC). Environment is planned for ensure HA for application which is running on VM. Due to application vendor restrictions I can't install VMware Tools on VMs. Regarding to that I have a question. Can you provide stable HA solution for application on VM without installing VMware Tools? Does in case of DC failure VMs will be started in second DC? What extra functions I am losing without VMware Tools installed on VM?

 

I searched information about that on community portal and documentation but I didn't get clear explanation of my questions. I am planning to use VMware version 6.

 

I would be grateful for clarification on this topic.

 

Best regards.

Re: Replicate between 5.x and 6.x

$
0
0

Hi,

 

It is possible to use vSphere Replication to protect VMs running on ESXi 5.1.x or 5.5.x to datastore attached to ESXi 6.x. However, as the other answer said - the source site ESXi needs to be managed by vCenter 6.x (matching with the version at the target site).

 

Is it an option to remove the source ESXi from source site vCenter and attach it to the destination site vCenter?

 

Regards,

Martin

Re: New MacBook Pro and Compatibility with VMware Fusion (USB-C and Touch Bar)?

$
0
0

Hi there,

 

We're really excited about this new hardware.

Please do your best to be ready when the new MacBook Pros arrive.Has VMware placed an order for a new MacBook Pro with the Touch Bar and USB-C ports yet?

You bet! (We are always doing our best )

Yes, I ordered mine as soon as it was humanly possible. New hardware is exciting =)

 

What will VMware Fusion do with the Touch Bar? Will VMware Fusion configure the Touch Bar to display and take input from the normal function keys for Windows and Linux (and other operating systems) when they are active?

We have some ideas, but as always we can't talk about stuff that doesn't exist yet. I'm pretty excited about the new opportunity here and what we've come up with, but I'm very interested in hearing what you'd like to see.

 

[...] does VMware Fusion work with the various USB-C adapters without issues?

 

Yes. We tested this extensively on the lil 12" MacBook.

Re: Cannot upload VM from Fusion 8.5 to ESXi 5.5

$
0
0

Is the Guest OS Type set to OS X?

Is there any CD-ROM or floppy devices attached?

 

You can also check the vmware.log inside the VM's bundle folder (right-click the VM > Show Package Contents) for indications/error messages.


Re: Use Mac settings for Mouse instead of Windows?

$
0
0

Do you have Logitech drivers installed in the VM?

Try uninstalling those if you do.

Re: storage vmotion (change host and datastore option ) is not working for esxi5.5 hosted vms : it is greyed out

$
0
0

Are you using the vSphere Web Client? If not, give a try.

Re: Will storage vmotion work while moving VMs from ESXi 5.0 datastore cluster to new ESXi 6.0 hosts datastore cluster : without powering off the VMs ?

$
0
0

Assuming the host where virtual machine see both datastore clusters, you will can storage vMotion the virtual machine without power off (and of course, if virtual machine supports it).

Re: Are VMware Tools needed in HA?

$
0
0
Can you provide stable HA solution for application on VM without installing VMware Tools?

Yes, HA does not require VMware Tools to be installed, except if you plan use VM Monitoring feature of HA.

 

What extra functions I am losing without VMware Tools installed on VM

From HA perspective, you will loose the VM Monitoring feature, see: vSphere 6.0 Documentation Center

 

Here is the vSphere HA checklist: vSphere HA Checklist

Re: View 7.0.2 - scanner redirection doesn't work for TWAIN

$
0
0

Here is explanation by peterbrown05 and chengs:

VMWare Horizon View 6.0.2 Scanner Redirection Caveats

 

So the scanner redirection for TWAIN works, it it just not obvious/well documented.

Maybe should VMware rename "VMware virtual WIA scanner" into just "VMware virtual scanner" to not misled users that this is only WIA scanning device. And improve documentation on scanner redirection part.

 

Tnx

Viewing all 236436 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>