Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Event 1103

Status
Not open for further replies.
Sep 14, 2000
18
US
Receiving this error message on my Windows 2000 Terminal Server. Any ideas?

Event Type: Error
Event Source: TermServDevices
Event Category: None
Event ID: 1103
Date: 3/30/2001
Time: 5:01:49 PM
User: N/A
Computer: TERMINALSERVER
Description:
An internal communication error occurred. Redirected printing will no longer function.
Data:
0000: 05 00 00 00 be 05 00 00 ....¾...
 
Hi,
I have a same problem, this error repeat continue and my clients autogenering variuous printers throught from Citrix Server in Win 2000
The printers present diferent error and the print is stop.
I easy solution is stop and restart the service but its not recomendable

Any idea???

Cristhian

 
I've seen it to but can't explain it other than I definitely have dodgy printer drivers and sometimes the spooler stops. Prior to replacing the driver I wrote a VBS script to automatically check to see if the spooler was running and restart it if is wasn't...might be useful.

Save the following as a VBS file and bobs your aunty...get the scheduler to run it every couple of minutes or so...

' Create WSH objects
Set wshNetwork = WScript.CreateObject("WScript.Network")
Set wshShell = WScript.CreateObject("WScript.Shell")

Dim Computer
Dim ComputerName
Dim ComputerDomain
Dim Service
Dim TargetService
Dim ServiceStatus
TargetService = "Spooler"
ComputerDomain = "yourdomainnamehere"
ComputerName = "yourservernamehere"
Set Computer = GetObject("WinNT://" & ComputerDomain & "/" & ComputerName & ",computer")

Set Service = Computer.GetObject("service", TargetService)
Select Case Service.Status
case 1
ServiceStatus = "Stopped"
Case 2
ServiceStatus = "Start Pending"
Case 3
ServiceStatus = "Stop Pending"
Case 4
ServiceStatus = "Running"
Case 5
ServiceStatus = "Continue_Pending"
Case 6
ServiceStatus = "Pause_Pending"
Case 7
ServiceStatus = "Paused"
Case 8
ServiceStatus = "Error"
End select
If Service.Status = 1 Then
Service.Start
wshshell.popup "The " & Service.Name & " service on //" & computerdomain & "/" & computername & " had STOPPED but has been restarted.",2,"yourcompanynamehere"
Else
If Service.Status = 4 Then
wshshell.popup "The " & Service.Name & " service on //" & computerdomain & "/" & computername & " is running.",2,"yourcompanynamehere"
Else
wshshell.popup "The " & Service.Name & " service on //" & computerdomain & "/" & computername & " could not be started.",2,"yourcompanynamehere"
End If
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top