OperatorOSScriptForge
Menu
Verified OperatorOS Official
Official OperatorOS / healthcare-app-deployment

Veradigm / Allscripts PM Local Copy Prep

Copies PM Client MSI and site certificate from network share to local temp folder before install.

Script Actions

Script Actions

Credibility

Last reviewed

Jul 8, 2026

Last tested

Jun 1, 2026

PowerShell

Windows PowerShell 5.1

Safety score

72/100

Documentation

100/100

Community rating

Coming soon

Downloads

Coming soon

Review status

approved

Verified by OperatorOS

Review

OperatorOS verified

Catalog

Official library

Safety

Static scan completed

Veradigm / Allscripts PM Local Copy Prep is part of the official OperatorOS ScriptForge catalog. It has been reviewed for metadata completeness, safety scan results, PowerShell compatibility, and technician-facing documentation.

Script Body

# OperatorOS ScriptForge imported Xodus library script
# Workbook ref: SCR-005
# Title: Veradigm / Allscripts PM Local Copy Prep
# Category: Healthcare App Deployment
# Ready state: Ready
# Workbook risk: medium
# Body type: PowerShell / Command Block

$OperatorOSFrameworkCandidates = @(
    (Join-Path -Path $PSScriptRoot -ChildPath '..\..\..\framework\OperatorOS-ScriptFramework.psm1'),
    (Join-Path -Path $PSScriptRoot -ChildPath '..\..\..\..\framework\OperatorOS-ScriptFramework.psm1')
)
$OperatorOSFrameworkPath = $OperatorOSFrameworkCandidates | Where-Object { Test-Path -LiteralPath $_ } | Select-Object -First 1
if ($OperatorOSFrameworkPath) {
    Import-Module $OperatorOSFrameworkPath -Force
}

$ErrorActionPreference = 'Stop'

$LocalPath = "C:\temp\VeradigmPM"
$InstallerSource = "\\APP-SERVER\SoftwareShare\VeradigmPM\AllScriptsPMClient.msi"
$CertSource = "\\APP-SERVER\SoftwareShare\Certificates\APP-SERVER.example.local.cer"

New-Item -Path $LocalPath -ItemType Directory -Force | Out-Null
Copy-Item $InstallerSource -Destination "$LocalPath\AllScriptsPMClient.msi" -Force
Copy-Item $CertSource -Destination "$LocalPath\APP-SERVER.example.local.cer" -Force
Get-ChildItem $LocalPath

Requirements

  • Windows PowerShell 5.1 or newer for Windows Endpoint.
  • Required tooling: PowerShell / SMB.
  • Recommended run context: Elevated or technician PowerShell with share access.

Parameters

LocalPath

path / required

Workbook input carried forward from: $LocalPath, $InstallerSource, $CertSource

InstallerSource

path / required

Workbook input carried forward from: $LocalPath, $InstallerSource, $CertSource

CertSource

path / required

Workbook input carried forward from: $LocalPath, $InstallerSource, $CertSource

Examples

Run script

Runs the imported OperatorOS script after reviewing parameters and placeholders.

./healthcare-app-deployment-veradigm-allscripts-pm-local-copy-prep.ps1

Changelog

1.0.0 - Imported from Xodus / OperatorOS Script Library workbook with OperatorOS metadata, redaction notes, and framework bootstrap.