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

Allscripts PM File / COM / CLSID Validation

Validates Allscripts PM executable files, manually registers COM components if needed, and checks the failing CLSID.

Script Actions

Script Actions

Credibility

Last reviewed

Jul 8, 2026

Last tested

Jun 1, 2026

PowerShell

Windows PowerShell 5.1

Safety score

47/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

Allscripts PM File / COM / CLSID Validation 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-008
# Title: Allscripts PM File / COM / CLSID Validation
# Category: Healthcare App Remediation
# Ready state: Ready
# Workbook risk: high
# 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'

$AllscriptsPath = "C:\Program Files (x86)\Allscripts\Allscripts PM"

Get-ChildItem $AllscriptsPath |
Where-Object { $_.Name -match "csim|Security|JobExec|Desktop|Monitor" } |
Select-Object Name, Length, LastWriteTime

cd /d "C:\Program Files (x86)\Allscripts\Allscripts PM"
csimSecurityMonitor.exe /RegServer
csimJobExecMgr.exe /RegServer
REM If present:
csimSecurityDesktop.exe /RegServer

reg query "HKCR\Wow6432Node\CLSID\{92D958D7-CF17-11D2-A036-0080C76912DE}" /s
reg query "HKCR\CLSID\{92D958D7-CF17-11D2-A036-0080C76912DE}" /s

Requirements

  • Windows PowerShell 5.1 or newer for Windows Endpoint.
  • Required tooling: PowerShell / CMD.
  • Recommended run context: Elevated CMD/PowerShell after successful install.

Parameters

AllscriptsPath

path / required

Workbook input carried forward from: $AllscriptsPath, CLSID

Examples

Run script

Runs the imported OperatorOS script after reviewing parameters and placeholders.

./healthcare-app-remediation-allscripts-pm-file-com-clsid-validation.ps1

Changelog

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