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.
The Automations Engine requires the following runtimes to be installed on the server:
Important: Both runtimes must be installed. Installing only the ASP.NET Core Runtime without the base .NET Runtime will cause the service to fail to start. The easiest way to install both at once is the Windows Hosting Bundle (
dotnet-hosting-8.0.27-win.exe), which includes everything required.
If the server already has an older .NET 8 patch installed (e.g. 8.0.0), you must upgrade it. The minimum supported patch version is 8.0.1 — versions below this will fail to load Azure and Microsoft Graph integrations.
To check what is currently installed:
dotnet --list-runtimesIf any runtime shows a version below 8.0.1, download and install the latest 8.0.x patch from Microsoft .NET Downloads and restart the Automations Engine service.
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.27 (or later 8.0.x) runtimes are listed.
Verify service status (if configured):
services.mscMinuteView Automations is Running