TcpTestSucceeded: True
The kiosk reached the address on the required port. The basic network path is working.
M3t service staff reference
Use this guide while remotely connected to an M3t kiosk. Each task identifies the correct Windows program, whether administrator access is required, and the command to copy.
Before running a command
Connect to the affected kiosk through BeyondTrust.
Check the label for PowerShell or Command Prompt.
Use administrator access when the task says it is required.
Important: Only run a change command when it matches the issue you are working on.
Start here
Use this method when the kiosk is locked in kiosk mode and you are connected through BeyondTrust.
Press Ctrl + Shift + Esc.
On some versions, first select File, then Run new task.
Type powershell for PowerShell or cmd for Command Prompt.
Check Create this task with administrative privileges, then select OK.
Every command below is labeled with the program it uses and whether administrator access is needed.
Network troubleshooting
All connection tests and supporting network commands are grouped in this section.
M3t service connections
Select a group to test one connection or create a command that checks the entire group.
Selected service group
Listed IP checks the exact documented network address and port without depending on DNS.
Test the whole group
Copy this single line into PowerShell. Each connection will show a green PASS or red FAIL.
Additional network commands
Use these when you need adapter, DNS, route, or Windows network information.
Understanding connection results
The kiosk reached the address on the required port. The basic network path is working.
The connection did not complete. Check internet access, firewall rules, cabling, or whether the service is available.
A failed test does not identify the exact cause. Record the service name and result, then provide both to M3t support or the technician handling the issue.
Kiosk identification
Use this when a technician or Dell Support asks for the kiosk PC serial number or service tag.
The value under SerialNumber is the Dell service tag.
Get-CimInstance -ClassName Win32_BIOS | Select-Object SerialNumber
Dell BIOS settings in Windows
Use these steps when the Dell kiosk PC should turn back on automatically after power is restored.
Required setup
Complete this once in an administrator PowerShell window before using either BIOS command below. The kiosk needs internet access to download the module.
Set-ExecutionPolicy Bypass -Scope Process -Force
Install-Module -Name DellBIOSProvider -Force
Import-Module DellBIOSProvider
If PowerShell asks to install NuGet or trust the PowerShell Gallery, select Yes. The Bypass setting applies only to this PowerShell window.
Look for CurrentValue. The desired value is On.
Get-Item -Path DellSmbios:\PowerManagement\AcPwrRcvry
This makes the Dell PC power on when AC power returns.
Set-Item -Path DellSmbios:\PowerManagement\AcPwrRcvry -Value "On"
This changes a BIOS setting. Run the check command again afterward to confirm the value is On.
Known issue fixes
Use this only when the SQL Express service is not configured to start automatically.
This changes the SQL Express startup setting. A successful result shows [SC] ChangeServiceConfig SUCCESS.
sc.exe config 'MSSQL$SQLEXPRESS' start= auto
The space between start= and auto is required. Restart the kiosk after completing the approved troubleshooting steps.