VMware Cloud Community
JWVMCS
Contributor
Contributor

Importing Custom Attributes post VC Upgrade

Hello all,

I want to export and then import VM Custom Attributes as part of a VC upgrade. I realize this can be done using some SQL wizardry but I'm useless with SQL so i was hoping there was a script that could handle it from Exports taken prior to the host migrations.

I have an entirely new VC 3.5. and will be importing attributes from two other legacy VC's

Thanks

Jason

0 Kudos
4 Replies
Texiwill
Leadership
Leadership

Hello,

Moved to VI: VirtualCenter 2.x forum.


Best regards,

Edward L. Haletky

VMware Communities User Moderator

====

Author of the book 'VMWare ESX Server in the Enterprise: Planning and Securing Virtualization Servers', Copyright 2008 Pearson Education.

CIO Virtualization Blog: http://www.cio.com/blog/index/topic/168354

As well as the Virtualization Wiki at http://www.astroarch.com/wiki/index.php/Virtualization

--
Edward L. Haletky
vExpert XIV: 2009-2023,
VMTN Community Moderator
vSphere Upgrade Saga: https://www.astroarch.com/blogs
GitHub Repo: https://github.com/Texiwill
Jasemccarty
Immortal
Immortal

I'm rusty on this... But you might want to check out my blog post:

Jase McCarty

http://www.jasemccarty.com

Co-Author of VMware ESX Essentials in the Virtual Data Center

(ISBN:1420070274) from Auerbach

Jase McCarty - @jasemccarty
0 Kudos
JWVMCS
Contributor
Contributor

Thanks Jase,

I managed to get a script working using the VI toolkit and powershell. I'll post info soon.

Cheers,

JW

0 Kudos
JWVMCS
Contributor
Contributor

hope this helps others...

VMware Infrastructure (VI) Toolkit (for Windows)

Using the VI Toolkit, this is the process of adding all VM custom attributes.

The first thing you need to do after launching the VI Toolkit (for Windows) is to get a connection to a VirtualCenter or ESX server. To get started, call the Connect-VIServer cmdlet and specify the IP address or DNS name of your VirtualCenter or ESX server, the protocol (http or https), user name, and password.

Connect-VIServer -Server 10.22.36.36 -protocol https -user admin -password mypass

Create a script for your desired output using textpad and save .ps1 (example below)

-


#PowerSell script to Import Custom Attributes

foreach ($f in (import-csv "output.csv"))

{

$myvm = get-vm $f.Name

set-customfield -entity $myvm -name "BUILT BY" -value $f."BUILT BY"

set-customfield -entity $myvm -name "BUSINESS AREA" -value $f."BUSINESS AREA"

set-customfield -entity $myvm -name CONTACT -value $f.CONTACT

set-customfield -entity $myvm -name "DATE ADDED" -value $f."DATE ADDED"

set-customfield -entity $myvm -name DESCRIPTION -value $f.DESCRIPTION

set-customfield -entity $myvm -name "START UP" -value $f."START UP"

set-customfield -entity $myvm -name "TO BE DELETED OR ARCHIVED / DATE?" -value $f."TO BE DELETED OR ARCHIVED / DATE?"

#add what you like but the names must be as they are in vc

}

-


As you can see this calls the "output.csv" file that is simply an export list from the source VC.

Once connected to the VC via PowerShell or VMware VI Toolkit (for windows) cmd simply run the script.

.\myscript.ps1

Sit back and watch it work for you.

JW

0 Kudos