I am against the abuse of free licenses. This code is provided for informational purposes only. Using it likely violates Plesk's terms. The author is not responsible for any consequences or material losses.
A tool that automatically updates trial keys for Plesk using SSH and MySQL.
CREATE TABLE `Plesk` (
`id` int(6) NOT NULL AUTO_INCREMENT,
`text` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `text` (`text`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;INSERT INTO Plesk (text) VALUES ("Your Key");
INSERT INTO Plesk (text) VALUES ("Your Key2");
INSERT INTO Plesk (text) VALUES ("Your Key3");Create a .bat file:
java -jar Plesk_Auto_Update_Trial_Key.jar "mysql_ip" "mysql_user" "mysql_pass" "ssh_ip" "ssh_user" "ssh_pass" "mysql_db"sudo apt-get update
sudo apt-get install -y screen gnupg2 software-properties-common \
apt-transport-https ca-certificates curl lsb-release
sudo add-apt-repository ppa:linuxuprising/java
sudo apt install oracle-java16-jdk -y
screen -dmS pleskKey bash -c \
"java -jar Plesk_Auto_Update_Trial_Key.jar 'mysql_ip' 'mysql_user' 'mysql_pass' 'ssh_ip' 'ssh_user' 'ssh_pass' 'mysql_db'"-
Install Java: