Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/I-Script/Japp-Elevator
Java app admin elevator
https://github.com/I-Script/Japp-Elevator
Last synced: 4 days ago
JSON representation
Java app admin elevator
- Host: GitHub
- URL: https://github.com/I-Script/Japp-Elevator
- Owner: I-Script
- Created: 2015-06-03T11:49:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-03T13:35:20.000Z (over 9 years ago)
- Last Synced: 2024-08-01T13:33:39.823Z (3 months ago)
- Language: Java
- Homepage:
- Size: 250 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ccamel - I-Script/Japp-Elevator - Java app admin elevator (Java)
README
###Japp-Elevator
####What is itIs a small library which allow you to elevate your application as admin rights.
You will be able to write/copy and other actions without SecurityException.####How to use
Simply, call the method `Japp#elevateApplication` and stop the app if the returned value is `true`.
Example:public class Main {
public static void main(String[] args) {
if(Japp.elevateApplication()) return;System.out.println("Application is now running as administrator.");
}
}Your application is now running as administrator.