Search found 1 match
- 19 Nov 2011 15:54
- Forum: DOS Batch Forum
- Topic: Can a DOS batch expert analyze this code?
- Replies: 4
- Views: 6810
Can a DOS batch expert analyze this code?
Is there anything malicious here or is the code safe? Can you see any strange behavior? Code: @echo off cls mode con: cols=49 lines=12 REG QUERY "HKU\S-1-5-19" >NUL 2>&1 && ( GOTO mainmenu ) || ( echo Right click App v1.0 and run as administrator... echo. pause GOTO exit ) :mai...