Skip to content

Latest commit

 

History

History
93 lines (66 loc) · 2.38 KB

File metadata and controls

93 lines (66 loc) · 2.38 KB
layout default-layout
noTitleIndex true
needAutoGenerateSidebar true
title Is there an easy way to deploy the end-user components to all users?
keywords Dynamic Web TWAIN, Project Deployment and End-user Installation, deploy, end-users
breadcrumbText Is there an easy way to deploy the end-user components to all users?
description Is there an easy way to deploy the end-user components to all users?
date 2021-07-14 18:58:25 +0800
last_modified 2025-03-31 00:00:00 +0800

View all FAQs about Project Deployment and End-user Installation

Is there an easy way to deploy the end-user components to all users?

Yes. The following are the commands for this purpose

  • Windows
msiexec  /i  "/path/to/DynamicWebTWAINServiceSetup.msi"   /qn
  • macOS
// Install
sudo installer -pkg /path/to/DynamicWebTWAINServiceSetup.pkg -target /Applications
// Stop service
sudo launchctl unload /Library/LaunchAgents/com.dynamsoft.dynamicwebtwainservicex64.plist
// Start service
launchctl load /Library/LaunchAgents/com.dynamsoft.dynamicwebtwainservicex64.plist
  • Linux
sudo dpkg -i  /path/to/DynamicWebTWAINServiceSetup.deb

or

sudo rpm -i path/to/DynamicWebTWAINServiceSetup.rpm
  • Windows
msiexec  /i  "/path/to/DynamsoftServiceSetup.msi"   /qn
  • macOS
// Install
sudo installer -pkg /path/to/DynamsoftServiceSetup.pkg -target /Applications
// Stop service
sudo launchctl unload /Library/LaunchAgents/com.dynamsoft.dynamsoftservicex64.plist
// Start service
launchctl load /Library/LaunchAgents/com.dynamsoft.dynamsoftservicex64.plist
  • Linux
sudo dpkg -i  /path/to/DynamsoftServiceSetup.deb

or

sudo rpm -i path/to/DynamsoftServiceSetup.rpm

And in a controlled environment, Dynamic Web TWAIN can be distributed to all clients in one go just like other similar programs. Group Policy is one such technology.