HP ePrint from Desktop PC

Hi Support,
I'm just setting up a HP Laserjet Pro 400 M401DN with ePrint and can successfully email a print job to [email protected] What I want to do is have a remote Windows PC print to this printer via ePrint as well. I have installed the driver, registered the email address used to setup the account (this is a private email address not the @hpeprint.com one). This printer shows ready in the Devices and Printers window, but when I print to it from say Word the ePrint management window comes up but no HP LJ 400 is shown in the connected window???
Log into the eprintcenter.com site and there it is showing ready, but !
Why is this so ?
David

Situation:  [email protected] is registered to device HP Laserjet Pro 400 M401DN.  Host PC1 can email print jobs successfully.
Issue reported:  PC2 cannot email print jobs to [email protected]
Steps to take:
1) From either PC1 or PC2, login to https://www.hpconnected.com, select tab DEVICES.  You should see your M401DN listed as an HP web connected printer.  Select Manage Access.  Add PC2's user personal email address to the ALLOWED SENDERS list ([email protected]).  Or, enable OPEN TO ANYONE.
Dependent upon desired workflow for PC2...
2) EMAIL CLIENT:  Open an email client on PC2 (gmail, outlook, etc) login as [email protected]  Send email print job to [email protected]
3) APPLICATION:  ePrint Software print driver.  Open a document, FILE-PRINT, select the ePrint Printer .  Register the printer on PC2 using [email protected]  HPConnected.com will return a PIN via email sent to [email protected] email inbox.  Input the 4 digit PIN into ePrint Printer.  If successful, you should see your M401DN printer discovered as a web connected printer.  Select it, send a print job.
Regards,
Though I am an HP Employee, my posts express my opinion, and not of HP

Similar Messages

  • Can't eprint from my blackberry 9630 Tour, can I get some help, please. thanks.

    Hi,
    I can eprint from my desktop email, but I can't eprint from my blackberry 9630 Tour.  Your cooperation with this matter greatly appreciated. Thanks

    Hey HarryH47,
    Two things may cause the ePrint job to fail.
    1. Try openning your email account in the Blackberry by going to the Web Browser rather than logging in through the shortcut.
    2. Now try sending an email from there.
    3. If the email prints, you will want to delete the old email account shortcut, and recreate the email account.
    4. The other thing you can try is removing the signature from your email if you use one when sending an email.
    Although I am an HP employee, I am speaking for myself and not for HP.
    If I have resolved your issue, feel free to provide Kudos and make sure you mark this thread as solution provided.

  • How to upload file from desktop or C drive and send as attachments

    Hello Experts,
    Please tell me
    How to upload jpg or gif or drawing files from desktop or any drive and store into R/3 by the same time I have to send mail as a attachment.
    I heard that FM
    SO_NEW_DOCUMENT_ATT_SEND_API1  is only to send as a  attachment what ever the data is present in the internal table only.
    please help me on that.

    I m using this code its having attachment but I m not able to open the file. Please help me
    I m using gui_upload to upload the file
    PROGRAM  ZTEST
           no standard page heading line-size 255.
    DATA: xfile TYPE string.
    data :     t_IW51 LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    data :  email type table of BAPIADSMTP.
    PARAMETERS : file LIKE rlgrap-filename OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file.
      CLEAR file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = file.
      xfile = file.
    START-OF-SELECTION.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename            = xfile
          filetype            = 'ASC'
          has_field_separator = 'X'
        TABLES
          data_tab            = t_IW51.
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Send External Mail'.
    Mail Contents
      OBJTXT = 'Minimum bid : $250000'.
      APPEND OBJTXT.
      OBJTXT = 'A representation of the pictures up for auction'.
      APPEND OBJTXT.
      OBJTXT = 'was included as attachment.'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
    (Assume that the data in OBJBIN is in BMP format)
    *OBJBIN = ' \O/ '. APPEND OBJBIN.
    *OBJBIN = ' | '. APPEND OBJBIN.
    *OBJBIN = ' / \ '. APPEND OBJBIN.
      OBJBIN[] = t_IW51[].
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'PICTURE.PDF'.
      APPEND OBJHEAD.
      OBJBIN[] = t_IW51[].
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'PDF'.
      OBJPACK-OBJ_NAME = 'PICTURE'.
      OBJPACK-OBJ_DESCR = 'Representation of object 138'.
      OBJPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
      RECLIST-RECEIVER = 'email_id have to enter here'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
      RECLIST-RECEIVER = 'ENTEG01'.
      RECLIST-REC_TYPE = 'P'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
         DOCUMENT_DATA = DOC_CHNG
         PUT_IN_OUTBOX = 'X'
         commit_work = 'X'
      TABLES
         PACKING_LIST = OBJPACK
         OBJECT_HEADER = OBJHEAD
         CONTENTS_BIN = OBJBIN
         CONTENTS_TXT = OBJTXT
         RECEIVERS = RECLIST
    *EXCEPTIONS
      TOO_MANY_RECEIVERS = 1
      DOCUMENT_NOT_SENT = 2
      OPERATION_NO_AUTHORIZATION = 4
    *OTHERS = 99.
      CASE SY-SUBRC.
        WHEN 0.
          WRITE: / 'Result of the send process:'.
          LOOP AT RECLIST.
            WRITE: / RECLIST-RECEIVER(48), ':'.
            IF RECLIST-RETRN_CODE = 0.
              WRITE 'The document was sent'.
            ELSE.
              WRITE 'The document could not be sent'.
            ENDIF.
          ENDLOOP.
        WHEN 1.
          WRITE: / 'No authorization for sending to the specified number',
                   'of recipients'.
        WHEN 2.
          WRITE: / 'Document could not be sent to any recipient'.
        WHEN 4.
          WRITE: / 'No send authorization'.
        WHEN OTHERS.
          WRITE: / 'Error occurred while sending'.
      ENDCASE.

  • HP ePrint from excel add-in: Error while getting driver name for printer

    Trying to use add-in for ePrint from excel/word I get, "error while getting driver name for printer \\...HP DesignJet 800PS 42 by HP," with an option to select "OK" and that same message repeats with each printer in our network, and then it doesn't allow me to print using the add-in. However, I can print normally to HP Go Web, open up Print and Share,  then print it from there. This happens with excel and word. I have Office Suite 2007.

    Hello modameister,
    Sorry you are having issues with this printer and the ePrint add-on.  There are a couple of questions I would like you to answer please.
    1.  What operating system are you using? (XP,VISTA,7,MAC OS X)
    2.  What and how much data are you trying to print?
    3.  Have you tried to copy and paste the data into a different application or tried using the snip it tool?
    4.  Are you receiving any .dll errors (mscms.dll)
    Thanks
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • How to get pages from desktop to iPad using icloud

    Can someone help me please?! I am not that great with all of this but have Pages on desktop (version 10.7.4) and have an iPad2, i am trying to get the documents from desktop onto iPad with no luck. I have brought the app for the iPad and have icloud which is working and as far as I am aware everthing is where it needs to be, but how do the documents get onto the iPad??!!  Do I have do something, if so what or should it just all appear? Also can you edit a document on the iPad or make a new document, save it and then it will appear on the desktop?
    Appreciate any help!
    thank you.

    Aside from using the suggestions (both) above also make sure that you go to Settings>iCloud>Documents and data>on.
    If the documents do not appear on the iPad after you have checked the settings, try creating a dummy document on the iPad. It can be anything at all. Quit Pages completely and then launch the app again.
    Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Launch Pages again.
    If you were running Mountain Lion you would not need to drag the files into the browser - if you had iCloud all configured correctly on the Mac.
    Once iCloud is set up and working as it should, you can simply launch Pages on the iPad, the edited files will appear and you can open and work on them there as needed. when you finish working on the document, the edited file will upload to iCloud again and be accessible in the browser like laxman described.
    Message was edited by: Demo

  • Mac desktop. 10.6.8. Text edit. Not locked. Read and write. Still, documents are locking when they are moved from desktop to another folder on the server. Techies can't figure it out here. What am I not doing?

    Mac desktop. 10.6.8. Text edit. Not locked. Read and write, not read only. Documents are locking when they are moved from desktop to another folder or saved directly into that folder on the server. Not happening with anyone else but me and the boss's computer so has to be in the properties for my text edit software. Techies can't figure it out after trying for two weeks. Boss can do a cut and paste and put into a new document, but that's starting to become a problem.

    Mac desktop. 10.6.8. Text edit. Not locked. Read and write, not read only. Documents are locking when they are moved from desktop to another folder or saved directly into that folder on the server. Not happening with anyone else but me and the boss's computer so has to be in the properties for my text edit software. Techies can't figure it out after trying for two weeks. Boss can do a cut and paste and put into a new document, but that's starting to become a problem.

  • Cannot delete .band files from desktop

    I was working on a file in GarageBand, I saved the .band file on my desktop, but after I quit GarageBand without saving the work, the .band file went a little weird. I tried dragging it to the trash and cmd-delete it but the message came up saying "The item “Recording Final.band” can’t be moved to the Trash because it can’t be deleted." Later I launched GarageBand again, and when I tried to drag the weird .band file from desktop to the GarageBand icon on my dock, the dock appears to crash, my wallpaper went gray for a second and then the dock came back up. Also when I select the file and hit space bar to do a quick look it shows up saying No Items Selected. I like to keep my desktop tidy don't want these files here blocking the way. Anyone knows the solution to the problem?

    The first thing I'd do is just restart your system. You might find the file has disappeared. If not, try deleting it again. If you get the same error msg, do as follows.
    Enable 'show path bar' in Finder > View. Highlight the problem file and make a note of the path.
    Open Terminal and use the
    rm <path to file>
    command to remove it (remove the angled brackets). If you want to be on the safe side, use the command
    cd <parent directory of file>
    to move into the correct folder first.
    Example
    Suppose the path is:
    Lion > Music > Garageband > problemfile.band
    In Terminal, you'd type
    cd ~/Music/Garageband
    Then type
    ls -l
    Assuming you see 'problemfile.band' in the list, type
    rm problemfile.band
    If you get an error, try
    sudo rm problemfile.band
    and enter your admin password (which will be invisible when you type it).
    If you still get an error msg, post back here, stating the error msg.

  • Cannot copy file from desktop to media card

    Whenever I try to copy a file from my desktop to my media card I get an error. When I use the desktop manager software I get the message 'one or more files cannot be copied: FILE_NAME'. When I use Windows Explorer to try the same thing I get the message 'Cannot copy FILE_NAME: parameter is incorrect'.
    I do have a proper connection from the desktop to the blackberry because I can open files on the media card and update them. I just have the problem copying the files.
    I have been able to copy the files from the desktop to the device memory. Then move it from the device memory to the media card. But there should be no difference between the device memory and the media card.
    Note: The file I am trying to copy is a data file (.PDF). While I was having the same problem with music files, I found if I went into advanced parameters from desktop manager and specified the audio file type & bitrate I was able to copy the music file without errors.
    I have a blackberry curve 8300
    16GB media card

    When I try to move the files from the Finder Window with the files on the DVD, I do not get the plus sign when I try to drag it to the desktop or any other window. Even when I try with the option key pressed, there is no plus sign with the mouse arrow. Someone suggested to use the terminal and I did. It was a hassle, though.

  • Cannot Delete CPTL file from Desktop using Vista

    Hi All,
    I cannot Delete CPTL file from Desktop using Vista. Explorer
    crashes. It is a Captivate 2 file.
    I have tried (with no luck):
    - logging in as a different user and deleting the file.
    - running explorer as an Administrator
    - uninstalling Captivate.
    Anyone got any ideas?
    Cheers,
    Raef

    Hi Raef,
    That is a strange issue. Here are a couple more ideas you
    could try:
    - Have you tried renaming the file (including suffix)?
    - Have you rebooted?
    - Do you get any error messages when trying to delete, such
    as "Acess Denied"?
    - Is your machine networked? Is it possible someone else has
    the file open?
    - Can the file be moved to another location or put in a
    folder (and then deleted)?
    - Have you tried using the Command Prompt / DOS mode to
    delete the file?
    It sounds like it could be a Vista issue so I would look at
    the Microsoft Vista forums too. Sorry I do not have an exact
    answer.
    IHTH,
    Aaron

  • How to Run a Report from Desktop in Oracle 10g without using Web

    Hi Friends,
    I want to run a report from desktop (report which is developed in oracle report developer 10g), for that i have created shortcut. But when i double click on that shortcut it gives me followig error
    "Report name, database connection, and reports server name (unless using local runtime, i.e. reports server call is local) properties must be specified for successful report run"
    the path which is defined in the shortcut of report is as follow
    D:\DevSuiteHome_1\BIN\rwsxu.exe rcptreg_dt userid/password@ORC
    pls help me to sort out the problem.
    Thanks & Regards.

    Hello,
    You can use rwrun. Since 9.0.2 , it is no more possible to DISPLAY the output on the screen , but you can generate a file (HTML , PDF , RTF , ..) and then open the file generated.
    EX: rwrun report=c:\temp\myrep.rdf destype=file desname=c:\temp\myrep.pdf desformat=pdf userid=scott/tiger@mydb P_1=param1_value ...
    Regards

  • How do I move PSE 9 from desktop to laptop after I install new PSE11?

    Just received PSE 11,  want it on my desktop and then move PSE 9 from desktop to laptop?  It there a sequence that will prevent problems?

    First make a full backup in PSE 9 using the organizer's backup command, then install PSE 9 on the laptop and restore the backup there. If all is well, you can then deactivate PSE 9 on the desktop if you don't want it there anymore (not required, unless you've already installed it on a third computer). When you install PSE 11 it should find and update your catalog on that for you.
    If you don't use organizer, it doesn't really matter how you do it.

  • HP Envy 5660 Will Not Print in Color from Desktop

    I have a new Envy 5660  e all in one printer. Prints in color from my I phone and I pad but will only print in black from desktop running OSX 10.6.8.  No error messages just will not print color from my Mac. 

    Hello @zeitman , and welcome to the HP Forums, I hope you enjoy your experience!
    I see you're having issues printing color. I would like to try and assist.
    Due to system limitations, the printer requires a minimum of 10.7 to be installed.  You can, however, download and install the Mac print software relating to HP.  This should allow you to have functionality:
    HP Printer Drivers v3.0 for OS X
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Sync does not appear to sync from mobile- desktop only from desktop- mobile

    Does Firefox sync only work from desktop to your mobile (android) device?
    If I save a bookmark on my android device my bookmark does not appear to show up on my desktop.
    If I save a bookmark on my desktop it will sync to my android device, is syncing one direction only?

    Hi,
    Try Resetting the Sync History from the iSync applications preference window as described here: http://support.apple.com/kb/TA23030
    -Jason

  • Internal RAID Drives Disappeared from Desktop & Finder

    A few days ago, one of my two internal mirrored RAID sets no longer showed on the desktop or in the Finder Sidebar. A day later, the other internal RAID set disappeared from desktop and sidebar. The two remaining internal non-RAID drives show up as do two external drives. All internal and external hard drives still show under Disk Utility and Photoshop Bridge CS3.
    I checked Finder Preferences and boxes are checked to show internal and external drives on the desktop and sidebar. I looked at the drive detail under Disk Utility and nothing looks wrong with the two RAID sets ON-LINE. I unmounted one RAID set and re-mounted without any change. I tried unchecking the two preference boxes to not show the drives and rebooted, rechecking the boxes and rebooting and nothing changed on the desktop or sidebar.
    Does anyone have any suggestions to resolve this?

    Well our invisible drives problem is resolved but it's not the solution that I'd hoped for.
    We visited the Genius Bar at a local Apple store and they denied any knowledge of problems with invisible drives in Macs and discounted my reports from Mac forums.
    I went home and ordered a new 1tb Seagate drive. When it arrived, I installed it in bay 2, copied each invisible drive to the new drive one-at-a-time, broke my two sets of internal mirrored drives, erased all the affected drives and reloaded them. Now all drives are visible on the Desktop and Finder again.
    I'm hoping that the disappearing drive problem doesn't surface again but view this as an unresolved Apple issue. Now I can look at other mass storage options for future growth.

  • How can i transfer back up contact from desktop pc working on Windows 7 to iphone 5 working on ios 8.1?

    How can i transfer back up contact from desktop pc working on Windows 7 to iphone 5 working on ios 8.1?

    You can't restore to a backup that was taken on a device which has a higher version of iOS than on your iPad, you will have to update your iPad to 8.1.3 to be able to restore to it
    You should be able to update your iPad via Settings > General > Software Update

Maybe you are looking for

  • BSOD in XP with from-the-CD driv

    Even in Safe Mode, I get this.. STOP: 0x000000A5 (etc etc) [I didn't write them down]. Microsoft KB articles and the error itself claim it to be an ACPI issue, whatever that is.. but it didn't start happening until I installed this X-Fi Platinum Cham

  • What are the SAP standard programs?

    Hi PM Guys, I have a question that is as below:- We have the following Master Data: 1) Functional Location 2) Equipment 3) Equipment BOM 4) Counter 5) Catalog Profiles 6) Task List a) General Task List b) Equipment Task List 7) Maintenance Plans a) T

  • Change Primary Administrator for Cloud Team

    How can I change the primary administrator under the Admin Tools in the Cloud Team portal?

  • Month and Year

    Folks, I have a table named system_control. Inside this table I have a column named control_value that is a VARCHAR2 Data Type. The data format for contol_value is YYYYMM How can I change the display format to be 'Month YYYY'?? ex. 200911 should read

  • Question about the 5g ipod

    I was thinking about getting the new ipod and wondered whether i could put DVDs that i already have onto it..like, download them.. if anyone knows, please inform me.. thanks