feat(cascades): add MCReception ET-5800 print share on CS-SERVER

Add the Memory Care Reception Epson ET-5800 (EPSON833571, 10.0.20.78,
dc:cd:2f:83:35:71) as a named print share on CS-SERVER. The printer was
previously pending a UniFi switch replacement; it is now online on VLAN 20.

- Created TCP port TCP_10.0.20.78 and shared as MCReception via GuruRMM
  remote PS (driver already present from FrontDesk ET-5800 setup)
- Updated printers.md entry #12 with IP, MAC, share path, and Online status
- Added MCReception to active-directory.md printer table with OU=Care-Memorycare
  ILT scope; GPO count bumped to 14
- Added MCReception entry to phase2-print-server.ps1 for reference

Access: OU=Care-Memorycare via Printer Deployment GPO (unlinked until Phase 3).
Alma Montt (cloud-only M365) connects manually to \CS-SERVER\MCReception.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-29 16:32:08 -07:00
parent 309baa57b7
commit ba05fe58d6
3 changed files with 16 additions and 3 deletions

View File

@@ -134,6 +134,18 @@ $printers = @(
Location = 'Memory Care Room 615'
Comment = 'Brother - MedTechs / Nurses'
}
# Memory Care Reception (EPSON833571 — dc:cd:2f:83:35:71)
# Added 2026-05-29. Driver already installed from FrontDesk ET-5800 — no EPWizard re-run needed.
# Access: OU=Care-Memorycare (GPO ILT). Alma Montt (cloud-only M365) connects manually to \\CS-SERVER\MCReception.
@{
IP = '10.0.20.78'
Port = 'TCP_10.0.20.78'
Name = 'Memory Care Reception - Epson ET-5800'
Driver = 'EPSON ET-5800 Series'
Share = 'MCReception'
Location = 'Memory Care Reception (Floors 5/6)'
Comment = 'Epson ET-5800 - MemCare Reception / Alma Montt + MC nurses'
}
)
Write-Output ''
@@ -181,6 +193,7 @@ $all = @(
@{ Name='Health Services C368'; IP='192.168.1.138' }
@{ Name='MC Director Canon MF751CDW'; IP='192.168.3.52' }
@{ Name='MC MedTech Brother'; IP='192.168.2.53' }
@{ Name='MC Reception Epson ET-5800'; IP='10.0.20.78' }
)
foreach ($p in $all) {
$ok = Test-Connection -ComputerName $p.IP -Count 1 -Quiet -ErrorAction SilentlyContinue