OperatorOSScriptForge
Menu
Verified OperatorOS Official
Official OperatorOS / printing-peripheral

Dell / LPR Printer Port Test Commands

Tests LPR printing over TCP 515 and falls back to RAW 9100 validation.

Script Actions

Script Actions

Credibility

Last reviewed

Jul 8, 2026

Last tested

Jun 1, 2026

PowerShell

Windows PowerShell 5.1

Safety score

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

Dell / LPR Printer Port Test Commands 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-033
# Title: Dell / LPR Printer Port Test Commands
# Category: Printing / Peripheral
# Ready state: Ready
# Workbook risk: low
# Body type: Mixed PowerShell / CMD

$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'

Test-NetConnection -ComputerName 192.0.2.206 -Port 515
Test-NetConnection -ComputerName 192.0.2.206 -Port 9100

lpr.exe -S 192.0.2.206 -P print "C:\Path\To\testfile.txt"

# Wireshark filter:
# ip.addr == 192.0.2.206 && tcp.port == 515

Requirements

  • Windows PowerShell 5.1 or newer for Windows Endpoint.
  • Required tooling: CMD / PowerShell.
  • Recommended run context: Technician CMD/PowerShell.

Parameters

SiteConfiguration

string / required

Workbook input carried forward from: Printer IP, queue name, test file path

Examples

Run script

Runs the imported OperatorOS script after reviewing parameters and placeholders.

./printing-peripheral-dell-lpr-printer-port-test-commands.ps1

Changelog

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