---
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 +0000
last_modified: 2025-03-31 00:00:00 +0000
---

View all FAQs about [Project Deployment and End-user Installation](
https://www.dynamsoft.com/web-twain/docs/faq/#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

<div class="multi-panel-switching-prefix"></div>

- [v19.0+](#19plus)
- [Versions below 19.0](#19min)

<div class="multi-panel-start"></div>

- Windows

```shell
msiexec  /i  "/path/to/DynamicWebTWAINServiceSetup.msi"   /qn
```

- macOS

```shell
// 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

```shell
sudo dpkg -i  /path/to/DynamicWebTWAINServiceSetup.deb
```

or

```shell
sudo rpm -i path/to/DynamicWebTWAINServiceSetup.rpm
```

<div class="multi-panel-end"></div>

<div class="multi-panel-start"></div>

- Windows

```shell
msiexec  /i  "/path/to/DynamsoftServiceSetup.msi"   /qn
```

- macOS

```shell
// 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

```shell
sudo dpkg -i  /path/to/DynamsoftServiceSetup.deb
```

or

```shell
sudo rpm -i path/to/DynamsoftServiceSetup.rpm
```

<div class="multi-panel-end"></div>

<div class="multi-panel-switching-end"></div>

And in a controlled environment, Dynamic Web TWAIN can be distributed to all clients in one go just like other similar programs. [Group Policy](https://docs.microsoft.com/en-us/troubleshoot/windows-server/group-policy/use-group-policy-to-install-software) is one such technology.
