Detailed tutorial on building a local idea activation server

Detailed tutorial on building a local idea activation server

Preface

The blogger uses the idea IDE. Because the idea official has recently cracked down on third-party activation services, my idea is often in a state where it can be used today but cannot be used tomorrow. Therefore, I found the local idea activation service from the idea activation website and would like to share it with you.

1. Download the service pack

First, you need to download an idea local server from http://idea.lanyus.com/

2. Installation

It is said to be installed, but in fact you can just unzip it directly in a place where you think you can directly put this service, and then run the exe program corresponding to the system bit number.

Then we can directly fill in the service we created on the activation page of idea.

That's it, we can use our development IDE normally.

In order to see the activation address for the first time, we can display this black box, but as long as we restart the computer, this service will not run, so when we start IDEA for the next time, we still need to enter the activation address and start the program, so what should we do?

At this time, we need to create this exe program as a windows service, so that it can run automatically in the background when it starts. The specific operation is:

Open the cmd command prompt as an administrator (powershell does not work), and then enter:

sc create IdeaRegistServer binpath= D:\tools\IdeaRegistServer\IntelliJIDEALicenseServer_windows_amd64.exe type= own start= auto displayname= Regist_Server

Then we can see this service in service.msc. We can set this service to start automatically at boot, and then we can enjoy the fun of activation without worrying about being blocked, hahahaha.

Update, update, update! Important things should be said three times!

I forgot to mention one thing above, that is, this activation service is not a one-time solution, and it also has an expiration date, until October 14, 2018. Once this date passes, you will need to reactivate it, so we still find a way to activate it by cracking the patch. I will take you to explore it in my latest blog.

Regarding setting up automatic startup services, since the above program is not a very standard Windows service program, there will be many problems when starting some versions of the system. The final solution is to write a vbs script and put it in the startup folder, and then you can activate the service to run in the background. Attached is the code:

Dim WShell
Set WShell = CreateObject("WScript.Shell")
WShell.Run "D:\tools\IdeaRegistServer\IntelliJIDEALicenseServer_windows_amd64.exe", 0 'The 0 at the end means "hidden"
Set WShell = Nothing

The code in quotation marks is the directory where the activation exe is placed. Just replace it with your own. Put the above code in a text document, save it, change the extension to .vbs and run it.

I would like to say that the latest version of idea no longer supports this type of server activation. I hope everyone will use the jar package activation method instead. The disadvantage is that when idea is updated, it will ask whether to roll back the two files we have modified. Just skip it.

This is the end of this article about the detailed tutorial on setting up a local idea activation server. For more relevant content about setting up a local idea activation server, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • IntelliJ IDEA 2020 latest activation code (valid for personal testing, can be activated until 2089)
  • The latest method to obtain the idea activation code (idea2020 activation code summary)
  • 2020 latest version idea activation tutorial (recommended)
  • The latest idea2021 registration code is permanently activated (activated until 2100)
  • How to deploy JavaWeb project to Tomcat server in IDEA
  • Detailed explanation of how to modify the server address of TortoiseSVN in IntelliJ IDEA

<<:  Multiple solutions for cross-domain reasons in web development

>>:  Teach you about react routing in five minutes

Recommend

The three new indexes added in MySQL 8 are hidden, descending, and functions

Table of contents Hidden, descending, and functio...

A brief discussion on several advantages of Vue3

Table of contents 1. Source code 1.1 Monorepo 1.2...

How to install MySQL 8.0.17 and configure remote access

1. Preparation before installation Check the data...

Example of how to build a Mysql cluster with docker

Docker basic instructions: Update Packages yum -y...

Build Maven projects faster in Docker

Table of contents I. Overview 2. Conventional mul...

Solve the problem of yum installation error Protected multilib versions

Today, when installing nginx on the cloud server,...

Solution to forgetting the MYSQL database password under MAC

Quick solution for forgetting MYSQL database pass...

vue-table implements adding and deleting

This article example shares the specific code for...

Solution to MySQL replication failure caused by disk fullness

Table of contents Case scenario Solving the probl...

Centos7.3 How to install and deploy Nginx and configure https

Installation Environment 1. gcc installation To i...

A brief discussion on the role of the docker --privileged=true parameter

Around version 0.6, privileged was introduced to ...

Enabling and configuring MySQL slow query log

Introduction MySQL slow query log is an important...

How to modify the root user password in mysql 8.0.16 winx64 and Linux

Please handle basic operations such as connecting...

Summary of tips for making web pages

Preface This article mainly summarizes some of th...