473,398 Members | 2,125 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

WMI - AddPrinterConnection failing to add network printer

2
Hi guys,

have been playing with WMI to add a network printer connection to a Windows XP pc. My environment consists of a server running Windows Server 2003 and Visual Studio 2005 and a test pc running windows xp. Further, I have setup a full domain controller environment.

I have managed to write the code to add the network printer and it works fine when installing the printer on the same machine the code is executing from i.e the server or xp pc.

However, if I run the code from the server to install the network printer onto the test pc, it does not work. An exception is generated stating "Not Supported, the inner exception is blank. The exception occurs when the mgtClass.InvokeMethod is executed see code below.

I can manually install the network printer on the test pc via the control panel, proving that the connectivity between machines is fine.

1) If I specifiy the ip address of the test pc in the ManagementScope object does and when an object of Management class is instantiated does this imply that the network printer will be added to the test pc?

2)Using the AddPrinterConnection method from the WIN32_PRINTER class, is this the only way to add a network printer ?

3) To install the network printer on the server itself, omit the IP address,ipAddressOfClientPC, of the server from the ManagementScope object and it installs fine, provided the code itself is running of the server. So this leads me to believe its an issue with ManagementScope. However, if installing on the same machine as the code is running on then the username and password need not to be defined. So what do I need to do to the Management Scope object to make it work?

4) I have used a similar approach for adding printer via specifying the printer driver, port etc and it works. So I believe my approach is correct in WMI.

I used the WMI code generated by the WMI Code Generator, http://www.microsoft.com/downloads/d...4-55bbc145c30e,

I have added my code below.

If somone can point me in the right direction as to the mistake I am making, I would appreciate it.

thanks
V
Expand|Select|Wrap|Line Numbers
  1. using System;
  2. using System.Management;
  3. using System.Runtime.InteropServices;
  4. using System.Text;
  5.  
  6. namespace SampleApp
  7. {
  8. public class AddPrinterConnection
  9. {
  10. public static void Main()
  11. {
  12. //only required if required to access another machine with different username and password
  13. string username = "administrator";
  14. string password = "password";
  15.  
  16. string ipAddressOfClientPC = "192.168.0.22";
  17. ManagementScope scope = new ManagementScope("\\\\" + ipAddressOfClientPC + "\\root\\cimv2");
  18.  
  19.  
  20. scope.Options.Username = username;
  21. scope.Options.Password = password;
  22. scope.Options.Impersonation = ImpersonationLevel.Impersonate;
  23.  
  24. scope.Connect();
  25.  
  26. ManagementPath path = new ManagementPath("Win32_Printer");
  27. ManagementClass mgtClass = new ManagementClass(scope, path, null);
  28. using (mgtClass)
  29. {
  30. try
  31. {
  32. ManagementBaseObject inputParameters = mgtClass.GetMethodParameters("AddPrinterConnection");
  33.  
  34. string sharedPrinterAddress = "\\\\192.168.0.1\\printer2";
  35. inputParameters["Name"] = sharedPrinterAddress;
  36.  
  37. ManagementBaseObject outputParameters = mgtClass.InvokeMethod("AddPrinterConnection", inputParameters, null);
  38. uint errorCode = (uint)outputParameters["ReturnValue"];
  39.  
  40. Console.WriteLine(errorCode.ToString());
  41. }
  42. catch (Exception exception)
  43. {
  44. Console.WriteLine(exception.Message + "\\n" + exception.InnerException);
  45. }
  46. Console.ReadLine();
  47. }
  48. }
  49. }
  50.  
Nov 13 '07 #1
1 9590
ekynox
2
It seems that AddPrinterConnection does not have the capacity to add a network printer to a remote pc. The alternative solution would be to utilise the rundll32 printui.dll,PrintUIEntry /? via DOS.

This commandline mechanism can be easily integrated into managed code in non-interactive mode.

Refer to Rick Strahl's blog:http://west-wind.com/weblog/posts/1440.aspx

Hope this is of some help.
Nov 16 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: Maileen | last post by:
Hi, I have 2 questions : 1. - I want to print from my ASP page directly to my network printer. For this i use the following code, but everytime, my document to print is sent to local and...
1
by: ARaman | last post by:
How does one add a network printer on Windows 98 and Me? WNetAddConnection2 seems to pass,but the UI does not update to show the printer is installed. On NT systems,AddPrinterConnection method...
0
by: KohlerTommy | last post by:
In my application I need to give the user the ability to print duplex if the selected printer supports duplex printing. Many of the printer options do not make much sense in my application, and...
5
by: Ken | last post by:
Hello Everyone, I think that there is no way to add a network printer in .Net. I have tried ,as an alternative, using windows API AddPrinter. This was not successful. Does anybody have a...
1
by: Maileen | last post by:
Hi, I want to print from my ASP page directly to my network printer. For this i use the following code, but everytime, my document to print is sent to local and physical port LPT1 :( could you...
0
by: Tessa | last post by:
Is there any security reason why you cannot print to a network printer from ASP.NET under IIS6 on Windows 2003 server? I'm using ASP.NET code to print to a server print queue using...
0
by: Dawn | last post by:
My application is coded to create a report using Excel and I would like to send it directly to a pre-determined network printer. (My intention is to pass the printer name in a variable.) However,...
0
by: jigsmshah | last post by:
i am working on a project (windows service using VB.Net and C#) which gets the check details and check images from the database and prints the check to a printer. Printer name is configured in a...
2
by: jawaid alam | last post by:
Hi all forum Member, I am facing very tropical type of problem. I devoloped a intranet web project. I want to print crystal report by selecting network printer. I accessed all network printer...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.