Windows 10 import picture's and videos not detecting correct android pictures!!

Anonymous
2022-08-31T18:40:03+00:00

Hello, when I use windows 10 explorer's import pictures and videos on my galaxy s8, the import wizard shows up but they all have the wrong photo which is different from whats showing within android. For some reason, the import pictures and video wizard doesn't detect more than 4k files even thought I have alot more than 4k files. Also, even though the folder to where the pictures/videos are being imported to is empty, windows still shows this error:

how do i fix/reset windows 10 explorer's import pictures and videos ? Thank you

Windows for home | Windows 10 | Connect Phone and PC

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

58 answers

Sort by: Oldest
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Anonymous
    2022-10-25T22:03:31+00:00

    The tool doesn't clear old temp files, and that's causing a name collision.

    Workaround:

    Each time you see the "error occurred... try again" dialog, open a Command Prompt window and type:

    • del "%temp%\acq*.tmp.*" /a

    Keep the CMD window on standby and rerun the command every time you see the error dialog. This will *significantly* reduce the number of times the error appears.

    An even more effective method is to run a script that deletes older tmp.* files in that folder at every 5 sec interval.

    How do I make the script that deletes older tmp.* files ? I have disabled windows controlled folder access. When I am getting the error dialog and I run "del "%temp%\acq*.tmp.*" /a" command, I am still getting various types of errors such as this:

    Image

    I am using a samsung galaxy s8

    I am also getting this error when using the photos app. This error has been displayed when using a samsung genuine OEM cable that I bought from the samsung experience store and also I've tried plugging in the USB cable in 6 different USB slots. The Computer I am using is a dell optiplex 9020 small form factor. Still failure.

    Image

    Was this answer helpful?

    0 comments No comments
  3. Ramesh 181.8K Reputation points Volunteer Moderator
    2022-10-26T19:03:04+00:00

    Try this VBScript:

    • Copy the following to Notepad, and save the file as "deltemp.vbs"
    • Start the Import wizard.
    • Then double-click deltemp.vbs to run it.

    The script will clean up the acq*tmp.??? files every 5 seconds. This will reduce file name collisions as much as possible.

    The script will quit automatically once the Import Wizard is closed.

    'Code starts here
    Dim FSO: Set FSO = WScript.CreateObject("Scripting.FileSystemObject")
    TmpFldr = FSO.GetSpecialFolder(2)
    
    WaitForProcess ".", "rundll32.exe"
    WScript.Echo "The Import wizard is not running. The script will now quit."
    
    Sub WaitForProcess(strComputer, strProcess)
       Dim wmiQuery : wmiQuery = "Select * From Win32_Process Where Name='" _
       & strProcess & "'" & " AND CommandLine LIKE '" _
       & "%photoAndVideoAcquire%" & "'"
       
       Dim objWMIService : Set objWMIService = GetObject("winmgmts:\\" & strComputer _
       & "\root\cimv2")
       Dim colItems : Set colItems = objWMIService.ExecQuery(wmiQuery)
       Dim intProcCount : intProcCount = colItems.Count
       
       Do While intProcCount > 0
          Set colItems = objWMIService.ExecQuery(wmiQuery)
          intProcCount = colItems.Count
          WScript.Sleep 5000
          Call DelAcqTemp
       Loop
    End Sub
    
    Sub DelAcqTemp
       NumSeconds = 5 'anything older than this many seconds will be removed.
       Dim objFolder
       Dim objFile
       Dim objSubfolder
       Set objFolder = fso.GetFolder(TmpFldr)
       
       'DELETE Acq* files in TempFolder Path older than x seconds
       For Each objFile In objFolder.files
          If LCase(FSO.GetExtensionName(objFile)) <> "tmp" And _
          Left(LCase(FSO.GetBaseName(objFile)),3) = "acq" Then
          On Error Resume Next
          If DateDiff("s", objFile.DateCreated,Now) > NumSeconds Then
             objFile.Delete True
          End If
          On Error GoTo 0
          End If
       Next   
    End Sub
    'Code ends here
    

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2022-10-26T21:11:03+00:00

    Try this VBScript:

    • Copy the following to Notepad, and save the file as "deltemp.vbs"
    • Start the Import wizard.
    • Then double-click deltemp.vbs to run it.

    The script will clean up the acq*tmp.??? files every 5 seconds. This will reduce file name collisions as much as possible.

    The script will quit automatically once the Import Wizard is closed.

    'Code starts here
    Dim FSO: Set FSO = WScript.CreateObject("Scripting.FileSystemObject")
    TmpFldr = FSO.GetSpecialFolder(2)
    
    WaitForProcess ".", "rundll32.exe"
    WScript.Echo "The Import wizard is not running. The script will now quit."
    
    Sub WaitForProcess(strComputer, strProcess)
       Dim wmiQuery : wmiQuery = "Select * From Win32_Process Where Name='" _
       & strProcess & "'" & " AND CommandLine LIKE '" _
       & "%photoAndVideoAcquire%" & "'"
       
       Dim objWMIService : Set objWMIService = GetObject("winmgmts:\\" & strComputer _
       & "\root\cimv2")
       Dim colItems : Set colItems = objWMIService.ExecQuery(wmiQuery)
       Dim intProcCount : intProcCount = colItems.Count
       
       Do While intProcCount > 0
          Set colItems = objWMIService.ExecQuery(wmiQuery)
          intProcCount = colItems.Count
          WScript.Sleep 5000
          Call DelAcqTemp
       Loop
    End Sub
    
    
    Sub DelAcqTemp
       NumSeconds = 5 'anything older than this many seconds will be removed.
       Dim objFolder
       Dim objFile
       Dim objSubfolder
       Set objFolder = fso.GetFolder(TmpFldr)
       
       'DELETE Acq* files in TempFolder Path older than x seconds
       For Each objFile In objFolder.files
          If LCase(FSO.GetExtensionName(objFile)) <> "tmp" And _
          Left(LCase(FSO.GetBaseName(objFile)),3) = "acq" Then
          On Error Resume Next
          If DateDiff("s", objFile.DateCreated,Now) > NumSeconds Then
             objFile.Delete True
          End If
          On Error GoTo 0
          End If
       Next   
    End Sub
    'Code ends here
    

    Will this work with photos app as well ? I am still getting the same messages "the media pool is empty"

    Also, after some minutes this is what I see inside my s8:

    Was this answer helpful?

    0 comments No comments
  5. Ramesh 181.8K Reputation points Volunteer Moderator
    2022-10-27T04:06:23+00:00

    No. This script works only with the classic import wizard. Also, ensure that you leave a copy of your files in the phone (as said in one of my earlier replies.)

    Was this answer helpful?

    0 comments No comments