Pen Usb

Spy Pen Camera Camcorder Recorder Products Manual
Spy Pen Camera, Spy Camera Pen 4G/8G/2G, Video/Voice Recorder Can be used as: Pen, 4 GB Pen USB drive, Pin-hole Camera, Voice recorder, Color video recorder. Our 2G/4G/8G spy camera pen is the smallest fully functioning digital video recorder(DVR) in the world. This spy pen recorder have easy to use “One Touch” record button. Real time record any video and audio evidence instantaneously with a spy pen camcorder 4gb is convenient. This USB spy pen has 4in1 ultra compact design for special usage. Pen spy camera dvr 4gb is popular among the people in the areas as business, education, safety, mass media, tourism, medical, even ordinary life, and etc.
Spy Pen Camera Features
1. The fewest mini DVR in the world which conceals in the pen. And the first mini pen DVR with the function of both kinescope and record.
2. The high fidelity microphone can record the sound around 15㎡. And the high clear kinescope can help the police and court to get evidence.
3. The fancy aspect, smooth pen writing function, exchangeable standard lead is all durable and environmental.
4. Suitable for any computer and electronic device with USB port. USB2.0 standard port, need no drive or circumscribed electric power source neither.
5. 2 million pixels for the 2GB spy pen camera.
Spy Pen Camera Specifications
Built-in Flash Memory: 2GB, 4GB, 8GB (Approx. 28 hours Recording time) Connection Interface: USB 2.0 (USB 1.1 Compatible) PC Compatibility: USB Plug & Play Microphone: Built-in Battery Type: Built-in Rechargeable Lithium Battery Battery Up Time: Approx. 4 Hours Power Supply: USB Port Dimensions(mm): 150(H)x15(W)x15(D) Weight: 70g Available Colors: Silver/Black Video Format: AVI 640(W) x 480(H) Pixels Audio/Voice Format: PCM 128kbps Video Colors: Full Color Video Frame Rate: 15 FPS Data Rate: 34kbps Video File Size: >2200KB per min Data Transfer Speed: 700kB/s (Read) 600kB/S(write) System Requirement: WINDOWS 2000/XP/LINUX
FAQ
Q : Can the video file which is recording be stored if the battery is out suddenly during using?
A : Don’t worry . if the battery use off suddenly this camera pen will store the recording video files before it turns off.
Q : How to deal with the situation of system halted?
A : Please use “RESET” button then push the on/off switch , so it will work again.
Q : Which form can be chosen to format?
A : Please use form “FAT” to format.
Q : What’s the spy pen camera time set operation(How to setup the spy pen record time)?
A : Insert the disk accessory in you pc and run the time modify sofeware in it, or just ask our seller for sending the time set up software to you, then you can change the record time.
Attention
Do not switch “RESET” button when the pen video recorder is recording , otherwise the data won’t be saved.
Some About Spy Camera Pen Recorder
There are many spy camera pens on the market – some color, some black and white and some audio. Certain cameras do all the above, others just take pictures or record sound. All of our 2g/4g/8g spy pen camcorders sold there are multi-function type. Use one at home to keep tabs on your private belongings, or on vacation – see what the hotel staff are up to in your room. Even sneak one in to a trade show – get secret pictures of new technology. Buy high quality spy pen camera Recorder at sales-batteries.com/new-product/mini-spy-pen.htm
About the Author
Vostro 1000 Battery,LP-E6 Battery,dv9000 Battery all batteries onsales and discount now
How to retrieve the Manufacturer’s Unique ID on a USB (Pen) Drive? (No drive serial #, please)?
I am not taking about the Volume Serial # assigned by Windows.
I need to retrieve the Manufacturer’s Unique permanent ID on a USB Drive. Preferably without using Windows Management Services API. Some direct access will be great.
I am not asking for home work. Suggestions would do.
Im not sure you can do that with out WMI.( at lest i donno a way to do that )
what language you need this ? VB, C++,C#, Delphi?
i do this all the time with Delphi using WMI. pm me ill help
Kaushalya Damitha
Edit :
This is how it done in delphi
unit DrivePNP
Interface
uses
WbemScripting_TLB
TDrivePnpID = class
private
FPnpID: array['A'..'Z'] of string;
FWMIServices: ISWbemServices;
function GetPnpIDNormal(DriveLetter: Char): string;
function GetPnpIDHex(DriveLetter: Char): string;
public
constructor Create;
procedure Refresh;
property PnpIDNormal[DriveLetter: Char]: string read GetPnpIDNormal;
property PnpIDHex[DriveLetter: Char]: string read GetPnpIDHex; default;
end;
implementation
{ TDrivePnpID }
constructor TDrivePnpID.Create;
begin
FWMIServices := CoSWbemLocator.Create.ConnectServer(‘.’, ‘rootcimv2′,
”, ”, ”, ”, 0, nil);
Refresh;
end;
function TDrivePnpID.GetPnpIDNormal(DriveLetter: Char): string;
function Last(What: String; Where: String): Integer;
var
Ind : Integer;
begin
Result := 0;
for Ind := (Length(Where)-Length(What)+1) downto 1 do
if Copy(Where, Ind, Length(What)) = What then begin
Result := Ind;
Break;
end;
end;
begin
DriveLetter := UpCase(DriveLetter);
case DriveLetter of
Low(FPnpID)..High(FPnpID): Result := Copy(FPnpID[DriveLetter],last(”,FPnpID[DriveLetter])+1,length(FPnpID[DriveLetter]));
else
Result := ”;
end;
end;
function TDrivePnpID.GetPnpIDHex(DriveLetter: Char): string;
function Last(What: String; Where: String): Integer;
var
Ind : Integer;
begin
Result := 0;
for Ind := (Length(Where)-Length(What)+1) downto 1 do
if Copy(Where, Ind, Length(What)) = What then begin
Result := Ind;
Break;
end;
end;
Var
tmp : String;
I: Integer;
begin
Result := ”;
DriveLetter := UpCase(DriveLetter);
case DriveLetter of
Low(FPnpID)..High(FPnpID): Begin
tmp := Copy(FPnpID[DriveLetter],last(”,FPnpID[DriveLetter])+1,length(FPnpID[DriveLetter]));
for I := 1 to Length(tmp)do
Result := Result + inttoHex(Ord(tmp[i]),2);
End
end;
end;
procedure TDrivePnpID.Refresh;
var
Ch: Char;
Drive, Partition, LogicalDrive: ISWbemObject;
Drives, Partitions, LogicalDrives: ISWbemObjectSet;
I, J, K: Integer;
S: string;
enumDrive, enumPartition, enumLogicalDrive: IEnumVariant;
ovVar: OleVariant;
lwValue: LongWord;
begin
for Ch := Low(FPnpID) to High(FPnpID) do
FPnpID[Ch] :=”;
Drives := FWMIServices.ExecQuery(‘Select * FROM Win32_DiskDrive’,'WQL’, 0, nil) as ISWbemObjectSet;
enumDrive := Drives._NewEnum as IEnumVariant;
for I := 0 to Drives.Count – 1 do
begin
enumDrive.Next (1, ovVar, lwValue);
Drive := IUnknown(ovVar) as SWBemObject;
Partitions := Drive.Associators_(‘Win32_DiskDriveToDiskPartition’, ”, ”,”,False, False, ”, ”, 0, nil);
enumPartition := Partitions._NewEnum as IEnumVariant;
for J := 0 to Partitions.Count – 1 do
begin
enumPartition.Next (1, ovVar, lwValue);
Partition := IUnknown(ovVar) as SWBemObject;
LogicalDrives := Partition.Associators_( ‘Win32_LogicalDiskToPartition’, ”, ”, ”, False, False, ”, ”, 0, nil);
enumLogicalDrive := LogicalDrives._NewEnum as IEnumVariant;
for K := 0 to LogicalDrives.Count – 1 do
begin
enumLogicalDrive.Next (1, ovVar, lwValue);
LogicalDrive := IUnknown(ovVar) as SWBemObject;
S := Variant(LogicalDrive).Name;
if S <> ” then
if FPnpID[UpCase(S[1])] = ” then FPnpID[UpCase(S[1])] := Variant(Drive).PNPDeviceID;
end;
end;
end;
end;
Hope this helps
how to make a bootable usb pen drive using unetbootin














