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
- Host: GitHub
- URL: https://github.com/zeljkobenovic/vmex
- Owner: ZeljkoBenovic
- Created: 2023-11-01T11:55:54.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-01T12:23:41.000Z (over 1 year ago)
- Last Synced: 2025-02-01T12:23:15.941Z (4 months ago)
- Topics: excel-export, export, vcenter, vmware
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```