powerJobs Processor v23

v23.0.8

15-03-2023

Features

General

Breaking Changes

Removed function Test-ApplicationSupportsDocument
Previously the function Test-ApplicationSupportsDocument provided by the coolOrange.Applications.psm1 module, allowed checking if a specific application supports opening a document.
Since AutoCAD DWG files where only supported by the DWG TrueView application, the function allowed e.g. to check whether a DWG file is an Inventor DWG or not:

Previous

Now

if (Test-ApplicationSupportsDocument -Application 'Inventor' -Document 'C:\Vault\Inventor\Pad Lock.dwg') {
    Write-Host "This is an Inventor DWG file"
}

$file = Get-VaultFile -File 'C:\Vault\Inventor\Pad Lock.dwg'
if ($file._Provider -eq "Inventor DWG") {
    Write-Host "This is an Inventor DWG file"
}

v23.0.6

14-02-2023

General

  • Updated powerVault to version: 23.0.11

  • The setup has been extended to provide a dependency key that is required for other product setups that depend on powerJobs Processor

Fixed

  • Issue where powerVault was listed twice in Programs and Features after upgrading powerVault

  • Issue where uninstalling product also uninstalled powerVault, although it was still needed by other products, e.g. powerEvents.

v23.0.4

30-08-2022

Fixed

v23.0.3

28-07-2022

Features

General

  • Updated powerVault to version: 23.0.6

  • Added DEPRECATED support for removed powerJobs\Open-VaultConnection cmdlet

Fixed

Breaking Changes

Removed Powershell support for “Job Description” textbox in powerJobs Settings Dialog
To set the name of the job’s entity (File, Item etc…) in the job description, it is not necessary anymore to specify the according Powershell expression in the Job description textbox. The job’s entity name will be appended automatically. To achieve the job description “Publish PDF: Drawing.idw”:

Previous

Now

Publish PDF: $($file._Name)

Publish PDF

Removed Open-VaultConnection
Removed the powerJobs\Open-VaultConnection cmdlet. Instead, the underlying powerVault Open-VaultConnection cmdlet is used directly.

This means that unnecessary additional functionalities for jobs are no longer executed (the “filterconfig.xml” configuration for AutoCAD block attributes is no longer downloaded, local workgroup is no longer recognized in replicated Vault environments, the “JobProcessor.exe.config” file is no longer loaded in PowerShell IDE).

v23.0.1

21-04-2022

Features

General

  • Added support for Vault 2023

  • Updated powerVault to version: 23.0.1.
    Memory usage is reduced when $vaultExplorerUtil gets used in a large number of jobs (see 22.0.9).

Fixed