Skip to content
Merged

Preview #1028

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _articles/faq/admin-privileges-needed-to-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords: Dynamic Web TWAIN, Project Deployment and End-user Installation, admin
breadcrumbText: Are admin privileges required to install the end-user component?
description: Are admin privileges required to install the end-user component?
date: 2025-01-15 14:58:40 +0000
last_modified: 2025-01-15 14:58:40 +0000
last_modified: 2026-07-23 06:00:00 +0000
---

View all FAQs about [Project Deployment and End-user Installation](
Expand All @@ -24,7 +24,7 @@ https://www.dynamsoft.com/web-twain/docs/faq/#project-deployment-and-end-user-in

Yes, the Dynamic Web TWAIN Service installer is a `.msi` file which requires administrator privileges to install as the install target is `C:\Program Files (x86)`. Once the Dynamic Web TWAIN Service is installed with admin privileges, every user on that machine can has access to the Dynamic Web TWAIN Service.

If your organization does not allow end users to have admin privileges, you can contact [Dynamsoft Support](/_articles/about/getsupport.md) to get a special "User Installer" that does not require admin privileges.
If your organization does not allow end users to have administrator privileges, you can download a special **User Installer** that does not require administrator privileges [here](https://www.dynamsoft.com/web-twain/docs/faq/download-service-only.html).

The "User Installer", will install to the user's `C:\Users\{UserName}\AppData\Roaming\` folder.

Expand All @@ -36,7 +36,7 @@ For Web TWAIN versions lower than 19.3, please be aware that only one user per m

Yes, the Dynamsoft Service installer is a `.msi` file which requires administrator privileges to install as the install target is `C:\Windows\SysWOW64\`. Once the Dynamsoft Service is installed with admin privileges, every user on that machine can has access to the Dynamsoft Service.

If your organization does not allow end users to have admin privileges, you can contact [Dynamsoft Support](/_articles/about/getsupport.md) to get a special "User Installer" that does not require admin privileges.
If your organization does not allow end users to have administrator privileges, you can download a special **User Installer** that does not require administrator privileges [here](https://www.dynamsoft.com/web-twain/docs/faq/download-service-only.html).

The "User Installer", will install to the user's `C:\Users\{UserName}\AppData\Roaming\` folder. Please be aware that only one user per machine is able to have the service installed via this method. The service cannot be installed to multiple user profiles, and only the user that installs the Services in this manner will have access to the Dynamsoft Service.

Expand Down
1 change: 1 addition & 0 deletions _articles/info/api/WebTwain_IO.md
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ DWTObject.RegisterEvent("OnGetFilePath", function (isSave, filesCount, index, di
This event is triggered when a file is loaded in the following cases:

- A file is dragged and dropped into the viewer
- A file is loaded using [`LoadImageFromBase64Binary()`](/_articles/info/api/WebTwain_IO.md#loadimagefrombase64binary) or [`LoadImageFromBinary()`](/_articles/info/api/WebTwain_IO.md#loadimagefrombinary)
- A local file is loaded using [`LoadImage()`](/_articles/info/api/WebTwain_IO.md#loadimage) or [`LoadImageEx()`](/_articles/info/api/WebTwain_IO.md#loadimageex)
- A remote file is downloaded using network methods like [`HTTPDownload()`](/_articles/info/api/WebTwain_IO.md#httpdownload)

Expand Down
5 changes: 4 additions & 1 deletion _articles/info/api/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ interface DeviceConfiguration {
- [`EnumDWT_ExtImageInfo`](/_articles/info/api/Dynamsoft_Enum.md#dynamsoftdwtenumdwt_extimageinfo)
- [`EnumDWT_CapSupportedSizes`](/_articles/info/api/Dynamsoft_Enum.md#dynamsoftdwtenumdwt_capsupportedsizes)

`extendedImageInfoQueryLevel` is 0 (`default`) by default which means the following information will be retrieved (if available):
Extended image info is used to pass extra info such as barcodes, magnetic data or patch codes found on a scanned page. Check out [this sample](https://demo.dynamsoft.com/web-twain/mag-data) to learn about how to get the extended image info.

You can set which info to query with `extendedImageInfoQueryLevel`. It is 0 (`default`) by default which means the following information will be retrieved (if available):

| Label | Value |
| :--------------------- | :----- |
Expand Down Expand Up @@ -609,6 +611,7 @@ interface OutputInfo {
}
```

Check how extended image info is retrieved [here](#deviceconfiguration).


### CapabilityDetails
Expand Down