Nyfedit unlimited trial extension

Source: Internet
Author: User

Mybase desktop is a very good knowledge management tool that can only be used for 30 days without registration. The following methods can be used to restore expired software to 30 days for trial, which is very simple.

1. Open the nyfedit. ini file under the software root directory and find app. userlic. firstuseon = 1295074923.
This parameter records the time when the software was opened for the first time. This parameter complies with the Unix timestamp. You only need to modify this UNIX timestamp for your current time, and the trial period will change back to 30 days.
2. Use the pythonscript to set the time when each startup starts, and set it to start the nyfedit.exe application.
3. Set shortcuts to be started by this script

# Coding = UTF-8

Import time
Import OS

# Mybase desktop is a very good knowledge management tool.
# If you do not register an ECS instance, you can only try it for 30 days. Use the following method to restore the expired software to a trial for 30 days, which is very simple.
#
#1. Open the nyfedit. ini file under the software root directory and find app. userlic. firstuseon = 1295074923
# This parameter records the time when the software was opened for the first time, which follows the Unix timestamp.
# You only need to modify the Unix timestamp as your current time, and the trial period will change back to 30 days.
4.1.2.use the pythonscript to set the time when each startup starts, and set it to start nyfedit.exe
#

Content = open ('nyfedit. ini ', 'R'). readlines ()
File = open ('nyfedit. ini ', 'w ')
Print Len (content)
For line in content:
N = line. Find ("app. userlic. firstuseon ")
If n! =-1:
Line = "app. userlic. firstuseon =" + STR (Time. Time () + "\ r \ n"
Print line
File. Write (line)
File. Flush ()
File. Close ()

OS. System ("START nyfedit.exe ");

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.