Created
February 13, 2019 03:01
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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