I would like to print a page from an IE object created to run on server from my vbscript. Problem is, the print works only when the specific webaccount user (for this application) is logged on to the server. When any other user is logged on to the server, the IE object stays doing nothing. Can anyone help ? Thanks in advance. I use the following code. set oMyIE = server.createobject("internetexplorer.application") oMyIE.navigate "about:blank" do while oMyIE.ReadyState <> 4 loop set oMyDoc = oMyIE.document if not oMyDoc is nothing then oMyDoc.write cstr(sHTML) oMyIE.execwb 6, 2, 3 end if oMyIE.quit set oMyDoc = nothing set oMyIE = nothing --end of script--