Sixteen files that run on every shopfloor PC existed only on the SFLD share. The cost showed up while debugging the NTLARS backup: the script that posts to ShopDB could not be read, reviewed or diffed, so its behaviour was inferred from log output for most of a day. It turned out to hold a silent fallback that had been governing the whole fleet for months. Imported as-is from tsgwp00525-v2, no edits: lib/ShopdbBackupClient.psm1 the shared backup client scripts/Backup-NtlarsSettings.ps1 converted to use it scripts/Set-ShopdbCollectorKey.ps1 collector credential delivery scripts/Test-RegExport.ps1 exercises the .reg codec with mocks scripts/Set-EventSaver*.ps1 kiosk power / screensaver / disable scripts/Setup-OpenText.* OpenText install + toolbar scripts/Migrate-PCType.ps1, Select-KioskType.ps1, Set-FmsHostsEntry.ps1, scripts/ensure-vnc-firewall.ps1, Install-AcroReader.cmd, Install-Oracle11r2.cmd lib/Install-FromManifest.ps1 is also updated from the share, which was 37 lines AHEAD of this repo and purely additive: the Add-EnforceResult reporting added during the kiosk API cutover, done live and never committed back. Nothing was removed. Checked for embedded secrets before committing; there are none. Set-ShopdbCollectorKey deliberately reads its token from a sibling file on the share rather than holding it, so the script is safe to track. The share remains what actually runs. This makes it reviewable, and makes the next drift visible as a diff rather than a surprise.
30 lines
1.3 KiB
PowerShell
Executable File
30 lines
1.3 KiB
PowerShell
Executable File
# Set-EventSaverPower.ps1
|
|
#
|
|
# Keep shopfloor monitors + PCs awake so the EventSaver ad screensaver is
|
|
# actually visible. Runs under GE-Enforce (SYSTEM) every cycle (Always).
|
|
# Sets monitor-off + sleep to Never on the ACTIVE power scheme, so a screen
|
|
# never blanks out from under the screensaver. Re-applies each cycle, so a
|
|
# power-plan change is corrected on the next enforce pass.
|
|
#
|
|
# Screensaver must trigger before any monitor-off would - with monitor-off
|
|
# set to Never here, the screensaver (2-10 min idle) always wins.
|
|
|
|
$ErrorActionPreference = 'Continue'
|
|
|
|
$logDir = 'C:\Logs\Shopfloor'
|
|
if (-not (Test-Path $logDir)) { New-Item -ItemType Directory -Path $logDir -Force | Out-Null }
|
|
$log = Join-Path $logDir 'eventsaver.log'
|
|
function Write-Log($m) {
|
|
Add-Content -LiteralPath $log -Value ("{0} {1}" -f (Get-Date -Format 'yyyy-MM-dd HH:mm:ss'), $m)
|
|
}
|
|
|
|
# 0 = Never. Cover monitor + standby, AC + DC (shopfloor PCs are AC, DC is
|
|
# harmless belt-and-suspenders).
|
|
& powercfg /change monitor-timeout-ac 0 2>&1 | Out-Null
|
|
& powercfg /change monitor-timeout-dc 0 2>&1 | Out-Null
|
|
& powercfg /change standby-timeout-ac 0 2>&1 | Out-Null
|
|
& powercfg /change standby-timeout-dc 0 2>&1 | Out-Null
|
|
|
|
Write-Log "power: monitor-off + sleep set to Never (AC+DC) for EventSaver visibility"
|
|
exit 0
|