One of my favorite hobbies is dismantling electronics, then either combining them together to create something new, or adding components to make them better. I also like gadgets, whether it's taking t...
One of my favorite hobbies is dismantling electronics, then either combining them together to create something new, or adding components to make them better. I also like gadgets, whether it's taking them apart, making them, or just using them! I also enjoy computers, whether it's hardware, software, programming, or finding better cooling solutions. I program in vb.net, AutoIt, C++, C#, J#, and Java. I've also twiddled around with Perl (very light twiddling).
more »
@echo off
color fa
title password required
set tries=4
:top
cls
set /a tries=%tries%-1
if %tries% equ 0 (goto penalty)
echo you have %tries% attempts left.
echo please enter password
set /p password=
if %password%==boom (start www.google.com)
goto top
:penalty
exit
It works fine but I can't change the destination when you get the password right to a vbs, other batch, file folder, or word doc. Plz help
@echo off
color fa
title password required
set tries=4
:menu
if exist pass.bat goto top
goto passme
:passme
set /p pass=Enter Password:
echo set pass=%pass%>pass.bat
goto top
:top
cls
set /a tries=%tries%-1
if %tries% equ 0 (goto penalty)
echo you have %tries% attempts left.
set /p password=Please Enter Password:
call pass.bat
if %password%==%pass%(goto start
:start
start www.google.com
goto good
:good
echo Password Right
pause
:penalty
exit
(Try turning off a car alarm when you're the burglar!)