Secondly, you'll need to download a copy of the Aiptek Webcam Drivers. To make things easier, I've already modified the INF files to have the proper PID for the PureDigital OTU camcorder.
Steps:
1. Plug camcorder into powered USB adapter, it will turn on.
2. Connect USB cable from computer which OPS is installed, into powered USB adapter.
3. Run OPS, click "Open Camcorder", then click "Unlock".
4. Disconnect USB cable from computer which OPS is installed, from powered USB adapter.
5. Connect USB cable from computer which will be used for webcam use, into powered USB adapter.
6. When prompted, install webcam drivers. If webcam drivers have already been installed, camcorder can now be used as a webcam at this point.Installing Third-Party Drivers Without Rebooting This section provides guidelines for designing drivers, INFs, and custom installation applications to install drivers without rebooting the system. Vendors should examine all installation routines to make sure they do not attempt to replace certain files with new files that have the same names, such as the following: • Protected system files. System-file protection prevents system files from being copied over during installation of applications and drivers. Vendors should make sure they are appropriately addressing issues related to system-protected files under Windows 2000. • Shared, in-use DLLs. Shared, in-use DLLs that cannot be halted will not be updated until after the next reboot. Vendors should not replace such DLLs, or should use side-by-side components wherever possible. • Class installers and coinstallers. A class installer or coinstaller cannot be replaced with a file that has the same name. Vendors should use different file names when updating or replacing class installers or coinstallers, and should not update any system-supplied class installers. Top of pageTop of page Driver INF Files Driver INF files should not include a Reboot= or Restart= directive and should avoid setting certain flags in CopyFiles= directives, as described in this section. Reboot= or Restart= directive. AThat's what MS said...I'm gonna try this out to see if it can be done without the need for a reboot. Linky: http://www.microsoft.com/whdc/system/pnppwr/pnp/no_reboot.mspx EDIT: I've got MCE2005, but I think any XP install should have this little proggie: C:\WINDOWS\system32\amcap504.exe Works with webcams pretty well, allows for video cap, images, fancy things like that.section in an INF file for a Plug and Play device should not include a Reboot= or Restart= directive. These directives are provided for compatibility with Windows 95/98 and should not be used for Windows 2000, Windows XP, and later versions of the operating system. If one of these entries is present, the operating system is forced to reboot when the device is installed, whether the reboot is necessary. Let the Plug and Play Manager determine whether the system needs to be rebooted rather than specifying these directives. CopyFiles= directive. A CopyFiles= directive can use hexadecimal flags to control how (or whether) a particular source file is copied to the destination. The following flags influence whether the system prompts for a reboot as a result of copying the file: • 0x00000008 (COPYFLG_FORCE_FILE_IN_USE) This flag prohibits copying over an existing file of the same name if it is currently open. Instead, it copies the given source file with a temporary name so that it can be renamed and used when the next reboot occurs. If this flag is set, the user is prompted to reboot if the file is in use. • 0x00001000 (COPYFLG_REPLACE_BOOT_FILE) This flag should be used only for files that are required by the system loader. The system will always prompt the user to reboot the system when replacing a boot file. For information about these and other INF directives, see "INF File Sections and Directives" in the Windows DDK.