Hi Sulabh,
Thanks for your inquiry. Please note that the Aspose.Words Print method uses System.Drawing and standard .NET printing classes. You need to install the printer before printing the documents.
Please try following code snippet for testing at your end. This code does not use Aspose.Words at all. So if it will not work, the problem is somewhere on your side. This code just prints an image. Please let us know if you have any more queries.
PrintDocument doc = new PrintDocument();
doc.PrinterSettings.PrinterName = @"\192.168.0.2\hp LaserJet 1010 Series Driver";
doc.PrintPage += Doc_PrintPage;
doc.Print();
============================================================================
private void Doc_PrintPage(object sender, PrintPageEventArgs e)
{
e.Graphics.DrawImage(Image.FromFile(@"Common\test.jpg"), e.MarginBounds.Left,
e.MarginBounds.Top);
}