Advertisement

03.11.2008 at 07:14AM PDT, ID: 23231731
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.0

EventCode=1111 EventID=1111 - Driver %1 required for printer %2 is unknown.

Asked by omen1280 in Remote Desktop/Terminal Services, VB Script

Tags: , , , ,

Other admins that logon to various servers get the following error when ever they logon

Driver %1 required for printer %2 is unknown. Contact the administrator to install the driver before you log in again.

I see this article from Microsoft but im not sure why i would have to do this if i have a logon script set to NOT run if they are logging onto a server.
If i was to follow this process im unsure of what registry change would need to be made if the printer is not even installed on that server.
http://technet2.microsoft.com/windowsserver2008/en/library/2b381f8c-4495-487e-be8a-00d9347c60d91033.mspx?mfr=true

Also, attached is a copy of the logon script that is supposed to skip the script if the user is logging on to the server.

Here is the exact message from the event viewer
Details:
ComputerName=ENGSERVER User=Not specified Logfile=System Type=Error EventType=1 SourceName=TermServDevices Category=0 CategoryString=Not specified EventCode=1111 EventID=1111 TimeGenerated=20080311092547.000000-240 TimeWritten=20080311092547.000000-240 Message=Driver Microsoft XPS Document Writer required for printer Microsoft XPS Document Writer is unknown. Contact the administrator to install the driver before you log in again.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
'Created: 4/5/2007 2:22:22 PM
'**********************
'Script will not run if logging into machine with Server OS
Set objWMIService = GetObject ("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2")
Set colComputers = objWMIService.ExecQuery ("Select DomainRole from Win32_ComputerSystem")
For Each objComputer in colComputers
  Select Case objComputer.DomainRole 
    Case 0, 1
      strComputerRole = "WORKSTATION"
    Case 2, 3, 4, 5
      strComputerRole = "SERVER"
  End Select
Next
If strComputerRole <> "WORKSTATION" Then 
  wscript.quit
End If
 
On Error Resume Next
Dim objFSO,objFILE,objFolder,objShell,objNetwork,strUser,strPath
set objFSO=CreateObject("Scripting.FileSystemObject")
set objShell=CreateObject("Wscript.Shell")
set objNetwork=CreateObject("Wscript.Network")
 
'MAP Splash Screen
objShell.run "\\njdc01\netlogon\splash.exe"
 
'Map network drives
MapIt "U:","\\HOMESERVER\USER\" & objNetwork.Username & ""
If IsAMemberOf(objNetwork.UserDomain,objNetwork.UserName,"ITDepartment") Then MapIt "S:","\\mapdpfs01\departments\it"
If IsAMemberOf(objNetwork.UserDomain,objNetwork.UserName,"ITDepartment") Then MapIt "T:","\\nas\software"
If IsAMemberOf(objNetwork.UserDomain,objNetwork.UserName,"Operations Managers") Then MapIt "O:","\\mapdpfs01\common\opsmgmt"
'If objNewtwork.Username("bpowell") Then MapIt "h:","\\njresource\helpstar"
 
'Map printers
If IsAMemberOf(objNetwork.UserDomain,objNetwork.UserName,"ITDepartment") Then AddPrinterConnection "\\homeserver\IT4100N"
If IsAMemberOf(objNetwork.UserDomain,objNetwork.UserName,"ITDepartment") Then AddPrinterConnection "\\homeserver\HELPDESK"
 
 
'End of main script
 
'//////////////////////////////////////////////////
Function PasswordExpires(strDomain,strUser)
On Error Resume Next
Dim objUser
Set objUser=GetObject("WinNT://" & strDomain & "/" & strUser & ",user")
PassExp=INT(objUser.MaxPasswordAge/86400)-INT(objUser.PasswordAge/86400)
 
If PassExp<0 Then 
 strPassMsg="Your password never expires."
Else
 strPassMsg="Your password expires in " & PassExp & " day(s)"
end If
 
PasswordExpires=strPassMsg
End Function
 
Function IsAMemberOf(strDomain,strUser,strGroup)
On Error Resume Next
Set objUser=GetObject("WinNT://" & strDomain & "/" & strUser & ",user")
Set objGrp=GetObject("WinNT://" & strDomain & "/" & strGroup & ",group")
 
If objGrp.IsMember(objUser.ADsPath) Then
	IsAMemberOf=True
Else
	IsAMemberOf=False
End If 
 
End Function
 
Sub MapIt(strDrive,strMap)
On Error Resume Next
If objFSO.DriveExists(strDrive) Then objNetwork.RemoveNetworkDrive(strDrive)
 
objNetwork.MapNetworkDrive strDrive,strMap
 
If Err.Number<>0 And blnShowError Then
	strMsg="There was a problem mapping drive " & UCase(strDrive) & " to " &_
	strMap & VbCrLf & strHelpMsg & VbCrLf & "Error#:" & Hex(err.Number) &_
	VbCrLf & Err.Description
	objShell.Popup strMsg,iErrorTimeOut,"Error",vbOKOnly+vbExclamation
	Err.Clear
End If
 
End Sub
 
Sub AddPrinterConnection(strPrinterUNC)
On Error Resume Next
 
objNetwork.AddWindowsPrinterConnection strPrinterUNC
 
If Err.Number<>0 And blnShowError Then
	strMsg="There was a problem mapping " & UCase(strPrinterUNC) & ". " &_
	vbcrlf & VbCrLf & strHelpMsg & VbCrLf & "Error#:" & Hex(err.Number) &_
	VbCrLf & Err.Description
	
	objShell.Popup strMsg,iErrorTimeOut,"Error",vbOKOnly+vbExclamation
	Err.Clear
End If
 
end sub
 
Sub AddPrinterPortConnection(strPort,strPrinterUNC)
On Error Resume Next
 
objNetwork.AddPrinterConnection strPort,strPrinterUNC
 
If Err.Number<>0 And blnShowError Then
	strMsg="There was a problem mapping " & UCase(strPrinterUNC) & " to " &_
	strPort & vbcrlf & VbCrLf & strHelpMsg & VbCrLf & "Error#:" & Hex(err.Number) &_
	VbCrLf & Err.Description
	
	objShell.Popup strMsg,iErrorTimeOut,"Error",vbOKOnly+vbExclamation
	Err.Clear
End If
 
end sub
[+][-]03.11.2008 at 07:23AM PDT, ID: 21095962

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.14.2008 at 12:07PM PDT, ID: 21128440

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Remote Desktop/Terminal Services, VB Script
Tags: Microsoft, Windows Server, 2003, EventCode=1111 EventID=1111 - Driver %1 required for printer %2 is unknown. Contact the administrator to install the driver before you log in again., Terminal Services
Sign Up Now!
Solution Provided By: omen1280
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080924-EE-VQP-38 / EE_QW_2_20070628