Search found 16 matches

by Notelek_Labs
28 Jul 2012 21:35
Forum: DOS Batch Forum
Topic: No Idea Whats Happening?
Replies: 3
Views: 3104

No Idea Whats Happening?

ok, so when I run the exe Snapz.exe it takes a picture with the webcam and saves it in the same directory as itself as snapz.dib, I rename it and move it to another directory. BUT what ends up happening is that when I run this a picture shows up where I expect it to in the F:\security\face.png BUT t...
by Notelek_Labs
26 Jul 2012 13:38
Forum: DOS Batch Forum
Topic: Adding login requirements when running the batch
Replies: 5
Views: 4512

Re: Adding login requirements when running the batch

HOLD ON! I HAVE THE SOLUTION! @echo off color 47 :start set /p user=Enter your password if '%user%'=='12345' GOTO pass if NOT '%user%'=='12345' GOTO invalidu :pass cls set /p pass=Enter your password if '%pass%'=='12345' GOTO correct if NOT '%pass%'=='12345' GOTO invalid :invalid cls echo Invalid pa...
by Notelek_Labs
26 Jul 2012 13:29
Forum: DOS Batch Forum
Topic: Fullscreen
Replies: 2
Views: 4348

Fullscreen

Is there anyway that I can get a batch file to go fullscreen when run on any operating system?

before you say you can't, I mean with a batch compiler or something that makes it into an exe.


any suggestions?
by Notelek_Labs
23 Jul 2012 19:28
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

WOOOOOOOOOOOOOO finally! I got it working ! Thanks for the help Working Code: @echo off setlocal :: defaults set From=noteleklabssecuredevices@gmail.com set To=asdfjkl;@txt.att.net set Subj="email test %date% %time%" set Body="did it work? %date% %time%" set Serv=smtp.gmail.com s...
by Notelek_Labs
23 Jul 2012 14:12
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

Current code: @echo off setlocal :: defaults set From=noteleklabssecuredevices@gmail.com set To=**********@txt.att.net set Subj="email test %date% %time%" set Body="did it work? %date% %time%" set Serv=smtp.gmail.com:465 set Auth=noteleklabssecuredevices@gmail.com set Pass=******...
by Notelek_Labs
23 Jul 2012 13:08
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

not really, just refering to your username

EDIT: Oh god, just googled it. Didn't mean that, its just the first four letters of your username. sorry if that was offensive
by Notelek_Labs
23 Jul 2012 12:44
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

Ok first off, read my first post. I have scoured google and saw squa's link already and understand simple mail transfer protocol. I just don't get what you are asking about ssl squa.
by Notelek_Labs
23 Jul 2012 12:31
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

Current code: @echo off setlocal :: defaults set From=noteleklabssecuredevices@gmail.com set To=ASLO CENCORED@txt.att.net set Subj="email test %date% %time%" set Body="did it work? %date% %time%" set Serv=smtp.gmail.com:465 set Auth=noteleklabssecuredevices@gmail.com set Pass=CEN...
by Notelek_Labs
23 Jul 2012 11:24
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

changed it, but It is Still no working Code: @echo off setlocal :: defaults set From=noteleklabssecuredevices@gmail.com set To=Nope, not postin it@txt.att.net set Subj="email test %date% %time%" set Body="did it work? %date% %time%" set Serv=gmail.com set Auth=noteleklabssecurede...
by Notelek_Labs
23 Jul 2012 10:02
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

nope, it doesn't error, but I don't have an email from it either. Check my Code: @echo off setlocal :: defaults set From=me@here.com.au set To=mfoulks1@gmail.com set Subj="email test %date% %time%" set Body="did it work? %date% %time%" set Serv=smtp.gmail.com set Auth=mfoulks1 se...
by Notelek_Labs
23 Jul 2012 09:54
Forum: DOS Batch Forum
Topic: Batch file running differently
Replies: 8
Views: 6553

Re: Batch file running differently

I just fixed most of the problems by just combining the two batch files into 1, making it an exe (so people can't see or edit the code) and running that.
by Notelek_Labs
23 Jul 2012 08:13
Forum: DOS Batch Forum
Topic: Batch file running differently
Replies: 8
Views: 6553

Re: Batch file running differently

by that I mean another batch file had this
(notelek_assist is the name of the program (just so you know, it uses nircmd))
start "" /b "Notelek_assist.bat"
by Notelek_Labs
23 Jul 2012 08:12
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Re: Emailing with batch

by fast i mean like 20-30 seconds if its longer maybe i can shave some time off something else
by Notelek_Labs
23 Jul 2012 07:26
Forum: DOS Batch Forum
Topic: Emailing with batch
Replies: 26
Views: 21012

Emailing with batch

ok, so on my flash drive I have a security system. (at my school the computers don't show hidden files) and the only one not hidden is the in that makes you put in a pass word. if it is wrong, it alerts the user with text and a voice. it also snaps a screenshot and prints all the info in a security ...
by Notelek_Labs
23 Jul 2012 07:12
Forum: DOS Batch Forum
Topic: Batch file running differently
Replies: 8
Views: 6553

Re: Batch file running differently

Just to clarify, the errors I get are that when I runn the program with another program, it appears to work but then i type in a command like help, and it goes straight to the command promt help, not mine. (aka the if statments dont work)