Quick Support

An einem Meeting teilnehmen:

Mauricio Schäpers

An einer Fernwartung teilnehmen:

VS Qloud Support


Für den Betritt der Fernunterstützung wird ein Passwort von Agenten festgelegt.
Dieses wird Ihnen telefonisch oder per Email bekannt gegeben.


Kunden Login

Partner Login

List VM VDIs by SR IP

Quick and dirty Powershellscript to display the mount point and network point of VDIs by Virtual machines on a specific NFS Storage IP - you need the XenServerPSModule available on citrix downloads - just change the first to lines to…

Weiter

XenServer bulk rename of VDIs

Ever had the issue that the VDI naming is incorrect? However here is a script executable on the xenserver which takes the inventoryname of a virual machine and sets all attached VDI's with a given name #separator the for-loop is…

Weiter

XenServer VM bulk export

a small script to export any VM on a XenServer to a given folder I didn't had time to find a command to separate the user templates from the system templates, so I pasted quick and dirty just the UUIDs…

Weiter

XenServer VM Export Script on Powershell

Hi all,

I was unable to find an existing script which does simply export all user created VMs and templates to xva files named like the VM.
It uses the commandline executable of XenCenter as I’m not able to install the PowerShell Extension everywhere

Powershell VM-Export

Hint: If you want to increase data throughput, convert compress=true to false at costs of your storage

# XenServer VM-Export
# Author: Mauricio Schäpers
# Description: Exports all vms into a given directory


$xeserver = "192.168.0.1s"
$xeuser = "root"
$xepw = "s3cr3tP@55w0rd"
$xvadir = "D:\ExportFolder"


#Check where xencenter is installed
$xecmd = "c:\program files (x86)\citrix\xencenter\xe.exe"
if (!(Test-Path $xecmd)) { $xecmd = "c:\program files\citrix\xencenter\xe.exe"}

Weiter
Suche