Skip to content

Instantly share code, notes, and snippets.

@x-magic
Created February 13, 2019 03:01
Show Gist options
  • Save x-magic/5322d34ac2f4b775ca0bd2e769726052 to your computer and use it in GitHub Desktop.
Save x-magic/5322d34ac2f4b775ca0bd2e769726052 to your computer and use it in GitHub Desktop.
To boot Avocent KVM/Virtual Media Java Applet directly from Windows batch script
@echo off
start .\jre1.7.0_80\bin\javaw ^
-cp avctKVM.jar ^
-Djava.library.path=.\lib ^
com.avocent.kvm.client.Main ^
ip={your IPMI ip} ^
platform=ast2050 ^
vmprivilege=true ^
user={IPMI username} ^
passwd={IPMI password} ^
kmport=2068 ^
vport=2068 ^
apcp=1 ^
version=2
@echo off
start .\jre1.7.0_80\bin\javaw ^
-cp avctVM.jar ^
-Djava.library.path=.\lib ^
com.avocent.vm.VirtualMedia ^
ip={your IPMI ip} ^
port=2068 ^
user={IPMI username} ^
password={IPMI password}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment