From the log, the error happen when we install vmusb/netbridge/netadapter/vmci drivers. From setupapi.dev.log, =================================== flq: {_commit_copyfile} flq: CopyFile:...
See more...
From the log, the error happen when we install vmusb/netbridge/netadapter/vmci drivers. From setupapi.dev.log, =================================== flq: {_commit_copyfile} flq: CopyFile: 'C:\Users\acs\AppData\Local\Temp\{5f5042b8-f0c3-00c7-ea0b-e401025fd614}\vmusb.sys' flq: to: 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\SET5977.tmp' flq: MoveFile: 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\SET5977.tmp' flq: to: 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\vmusb.sys' !!! flq: MoveFile: FAILED! !!! flq: Error 32: The process cannot access the file because it is being used by another process. !!! flq: Windows could not copy a boot file 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\vmusb.sys' due to the presence of an in-use file. !!! flq: Error installing file (0x00000005) !!! flq: Error 5: Access is denied. ! flq: SourceFile - 'C:\Users\acs\AppData\Local\Temp\{5f5042b8-f0c3-00c7-ea0b-e401025fd614}\vmusb.sys' flq: TempFile - 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\SET5977.tmp' ! flq: TargetFile - 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\vmusb.sys' flq: {SPFQNOTIFY_COPYERROR} !!! sto: Failed to copy file 'C:\Users\acs\AppData\Local\Temp\{5f5042b8-f0c3-00c7-ea0b-e401025fd614}\vmusb.sys' to 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\vmusb.sys'. Error = 0x00000005 sto: File 'C:\Users\acs\AppData\Local\Temp\{5f5042b8-f0c3-00c7-ea0b-e401025fd614}\vmusb.sys' is not in use by any processes. flq: {SPFQNOTIFY_COPYERROR - returned 0x00000000} !!! flq: SPFQNOTIFY_COPYERROR: returned SPFQOPERATION_ABORT. !!! flq: Error 2: The system cannot find the file specified. flq: {_commit_copyfile exit(0x00000002)} flq: {_commit_copy_subqueue exit(0x00000002)} ==================================== There have several possibilities to cause this problem. Can you try below? 1. Check anti-virus software log if you have one, this copy operation failure maybe caused by anti-virus deny this operation. 2. After uninstall Workstation, goto 'C:\windows\System32\DriverStore\Temp’ folder, for every subdir, which is named as one GUID, find and delete sub-folders which has these driver files: vmusb/netbridge/netadapter/vmci For example, if you find 'C:\windows\System32\DriverStore\Temp\{431616f7-d661-75d8-1d2d-c8796036d55a}\vmusb.sys' exist, you should delete whole subfolder {431616f7-d661-75d8-1d2d-c8796036d55a} 3. Check the 'C:\windows\System32\DriverStore\’ security properties, make sure the ‘system’ account have full control for this folder. 4. It may cause by NTFS ‘alternate data streams’, go to website https://docs.microsoft.com/en-us/sysinternals/downloads/streams download the tool named streams, unpack it and save it to one folder, let’s say c:\temp, then in one administrator console, run this: C:\> cd /d C:\windows\System32\DriverStore C:\Windows\System32\DriverStore> c:\temp\streams -s * If you get output like this (I created test.txt:stream in c:\test for demo): C:\test> c:\temp\streams -s * Streams v1.56 - Enumerate alternate NTFS data streams Copyright (C) 1999-2007 Mark Russinovich Sysinternals - www.sysinternals.com C:\test\test.txt: :stream:$DATA 8 You need cleanup them, with this command (notice this command run inside C:\Windows\System32\DriverStore): C:\Windows\System32\DriverStore> c:\temp\Streams -s -d * Reinstall Workstation and check the result.