An open API service indexing awesome lists of open source software.

https://github.com/zeljkobenovic/vmex

A small tool which filters and exports VMs from vCenter into a nicely formatted Excel table
https://github.com/zeljkobenovic/vmex

excel-export export vcenter vmware

Last synced: 2 months ago
JSON representation

A small tool which filters and exports VMs from vCenter into a nicely formatted Excel table

Awesome Lists containing this project

README

        

# VMEX
A small tool used to export VM list from `VMWAREvCenter` into the Excel spreadsheet.
The export functionality in the `vCenter` itself, exports all VMs into a `csv` file, which needs to be processed.
This tool aims to ease this export procedure, by exporting (`all` or `filtered by name`) VM into a nicely formatted Excel file.

## Usage
Download `vmex` binary for your OS from the [releases](https://github.com/ZeljkoBenovic/vmex/releases) page.
Run the binary with the appropriate flags, as shown in the [example](https://github.com/ZeljkoBenovic/vmex/releases) below.

### Flags
* `host` - `vCenter` host url
* `user` - `vCenter` username
* `pass` - `vCenter` password
* `filter` (optional) - comma delimited string which will be used to filter out VM names
* `path` (optional) - the path and filename where the report will be saved

### Example
```bash
vmex -host "https://vcenter.host.local" -user "[email protected]" -pass "xxxxxxxx" -filter "web" -path web_server_vms.xlsx
```