This will get the images out of that stinkin camera! ;-)
Copy the program text below into a file and name the file getimage.bat. Download the netcat program nc.exe and place it in the same directory. Go to Start > Run , and type cmd.
from the dos prompt change to the directory you located the files in and run getimage.
You are on your own after this. I take no responsibility if you fill your drive with images from your camera or anything else.. lol.
Bottom line, this does work.
Good Luck!!
echo off
@cls
@Echo ----------------------------------------------------------
@Echo ! G E T I M A G E !
@Echo ! For the Hawking HNC230G !
@Echo ! !
@Echo ! USAGE: getimage [n] [d] !
@Echo ! !
@Echo ! options [n] [d] n - number of image files to get !
@Echo ! d - delay in seconds between files !
@Echo ! !
@Echo ! getimage n - produces image1.jpg, image2,jpg, etc.. !
@Echo ! ex. getimage 2 5 - produces 2 images 5 seconds apart !
@Echo ! !
@Echo ! !
@Echo ! This program requires nc.exe which may be downloaded at!
@Echo !
http://www.vulnwatch.org/netcat/ !
@Echo ! !
@Echo ! You must Change the ip-address in this program to the !
@Echo ! ip address of your camera before using it !
@Echo ! !
@Echo ! by: Dennis Lauzon !
@Echo ! ctrl-c to exit
kd1ca@yahoo.com !
@Echo ----------------------------------------------------------
SET /a _a = 2
SET /a _number = 0
IF !%1 ==! GOTO EXIT0
IF !%2 ==! GOTO BEGIN
set /a _a = %2
:BEGIN
@Echo creating %1 images
GOTO Loop
:Loop
IF %1 == %_number% GOTO EXIT0
set /a _number=_number + 1
@Echo getting image%_number%.jpg
@echo 0110| nc -w 2 -n 192.168.1.105 4321>image%_number%.jpg
ping -n %_a% localhost >NUL
GOTO Loop
:EXIT0