Search K
Appearance
Appearance
The MinuteView Automations Engine is a background service that powers workflow execution within the MinuteView platform. It runs as a .NET 8 application and can be hosted on Windows Server or Windows 10+, designed for both interactive and background execution under Kerberos authentication.
MinuteView-Automations.msi file from your distribution package or from your MinuteView deployment portal.Double-click the .msi file to launch the installation wizard.
Follow the setup prompts:
C:\Program Files (x86)\Tentech\Tentech.MinuteViewAutomations).⚙️ The installer automatically validates and installs any missing framework prerequisites.
During installation, the following runtimes are automatically installed if missing:
These runtimes are required to host and execute .NET-based background services and web components.
Running as a Windows Service ensures that Automations runs continuously, even when no user is logged in.
Configure a Windows Service Account with sufficient permissions (e.g., access to Vault, network paths, and SQL).
Register the service:
sc create "MinuteView Automations" binPath= "C:\Program Files (x86)\Tentech\Tentech.MinuteViewAutomations\MinuteViewAutomations.exe" start= autoStart the service:
net start "MinuteView Automations"You can also execute Automations directly in a session for testing:
cd "C:\Program Files (x86)\Tentech\Tentech.MinuteViewAutomations"
MinuteViewAutomations.exe⚠️ This mode stops when the session closes — not suitable for production.
Depending on your automation use cases, you may need additional installed components:
| Integration | Required Software | Purpose |
|---|---|---|
| Autodesk Vault | Vault 2025 | Enables file and metadata operations within Vault |
| DWG Processing | AutoCAD TrueView 2026 | Used for DWG rendering, publishing, and export |
| DGN Processing | MicroStation Connect Edition | Enables automated DGN conversions and exports |
| Inventor Files | Autodesk Inventor 2020+ | Required for Inventor parameter and model updates |
💡 Each integration must be installed on the same server as the Automations Engine.
Confirm installation path exists:
C:\Program Files (x86)\Tentech\Tentech.MinuteViewAutomationsCheck .NET runtimes:
dotnet --list-runtimesEnsure .NET 8.0.15 runtimes are listed.
Verify service status (if configured):
services.mscMinuteView Automations is Running