xnview wrote: Mon Sep 21, 2026 10:45 am
BimBam wrote: Mon Sep 21, 2026 10:27 am
XnViewMP-win-x64.exe (v1.11.7)
it's the good one, Twain plugin is 32bits
This is what I see here:
Twain-Source Empty.png
So I played around with Powershell to find out about TWAIN on my system:
Code: Select all
Powershell and Twain
****************************************************************************************************
PS C:\WINDOWS\system32> $paths = @(
'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\TWAIN',
'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\TWAIN',
'HKCU:\Software\Microsoft\Windows NT\CurrentVersion\TWAIN'
)
foreach ($path in $paths) {
if (Test-Path $path) {
Write-Host "`n$path" -ForegroundColor Cyan
Get-ChildItem $path | Select-Object -ExpandProperty PSChildName
}
}
PS C:\WINDOWS\system32>
****************************************************************************************************
PS C:\WINDOWS\system32> Get-PnpDevice -PresentOnly |
Where-Object {
$_.FriendlyName -match 'Scanner|Scan|WIA|TWAIN'
} |
Format-Table Status, Class, FriendlyName, InstanceId -AutoSize
PS C:\WINDOWS\system32>
****************************************************************************************************
PS C:\WINDOWS\system32> Get-WindowsDriver -Online |
Where-Object {
$_.ClassName -match 'Image|Scanner' -or
$_.OriginalFileName -match 'twain|scan|wia'
} |
Format-Table Driver, OriginalFileName, ProviderName, ClassName, Version -AutoSize
Driver OriginalFileName ProviderName ClassName Version
------ ---------------- ------------ --------- -------
oem20.inf C:\Windows\System32\DriverStore\FileRepository\scadrv60.inf_amd64_583d319f19379e4d\scadrv60.inf Hamrick Software Image 1.0.0.174
To me it looks like there is only a driver being installed from "Vuescan", but no real TWAIN-device.
And therefore I can't see a TWAIN-scanner in XnView, , right?
You do not have the required permissions to view the files attached to this post.