Is it possible to disable & enable a USB connected digital picture frame in a windows batch file? I am currently using the DEVCON Enabhle/disable command & that does make the unit not shown as a drive & shows USB disabled in the Device Manager but the actual frame still thinks its connected. It is not until the frame is turned off/on or the USB cable is removed that it act like its not connected.
Here is my current program.
devcon enable *DEV_24CD
devcon enable *DEV_24C2
devcon enable *DEV_24C4
copy C:\Pic_Frame\Br_Frame\*.* E:\ /y
copy C:\Pic_Frame\Blk_Frame\*.* I:\ /y
del C:\Pic_Frame\Br_Frame\*.* /q
del C:\Pic_Frame\Blk_Frame\*.* /q
devcon disable *DEV_24CD
devcon disable *DEV_24C2
devcon disable *DEV_24C4
I understand this maybe an issue with the frame, but hoped there was something on the PC I was missing.
Thanks in advance.
Andy