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

Detailed explanation of CSS BEM writing standards

BEM is a component-based approach to web developm...

Detailed explanation of the frame and rules attributes of the table in HTML

The frame and rules attributes of the table tag c...

MySQL query optimization: a table optimization solution for 1 million data

1. Query speed of two query engines (myIsam engin...

Optimized record of using IN data volume in Mysql

The MySQL version number is 5.7.28. Table A has 3...

How to clear mysql registry

Specific method: 1. Press [ win+r ] to open the r...

Detailed explanation of the principles of Vue's responsive system

Table of contents The basic principles of Vue'...

Detailed explanation of HTML's <input> tag and how to disable it

Definition and Usage The <input> tag is use...

An article to understand Linux disks and disk partitions

Preface All hardware devices in the Linux system ...

MySQL data archiving tool mysql_archiver detailed explanation

Table of contents I. Overview 2. pt-archiver main...

Implementation of fastdfs+nginx cluster construction

1. Introduction to fastdfs 1. What is fastdfs Fas...

How to query the minimum available id value in the Mysql table

Today, when I was looking at the laboratory proje...

Vue implements real-time refresh of the time display in the upper right corner

This article example shares the specific code of ...

How to add vim implementation code examples in power shell

1. Go to Vim's official website to download t...

SQL IDENTITY_INSERT case study

Generally speaking, once a column in a data table...