Show Network Users (as List) not working consistently (10.5 server/client)

I am running an Xserve with 10.5.5 Server as an Open Directory Master. When I go to the Computer Group the clients are listed in and set the preference to show network users as list on the loginwindow, the clients are not constantly displaying the list. Network Accounts are available on the client and typing the username in Other is also logging in.
What I think is strange is that my custom heading always displays, so I know I'm getting at least some of the mcx settings on the client. This was not a problem with 10.5.4 client/server combo. If only local accounts are listed, you can restart and 50% of the time the network users show up in the list. You can also log in as a local user and log out, this will sometimes refresh the list to display network users. However, whether or not the users are displayed in the list, network accounts are always available and can login via Other.
Does anybody know what I can do to fix the problem? It is an elementary school environment, so it is not feasible to have kindergarten students to type out their names every single time.
One possible solution I came up with is to replace the 10.5.5 loginwindow on the client with the 10.5.4 version, but 10.5.5 supposedly fixes a lot of problems with it. Are there any negative consequences that could occur from doing this besides the fact that I lose the security fixes to the 10.5.5 version? I know that my 10.4.11 clients do not experience this problem, so I'm guessing that the 10.5.4 loginwindow might just work, but wanted to see if anyone knew of any issues in doing this.
I have also written a program that manages our clients for automated naming, image OS version assignment with NetRestore, and generate import files that create computer and computer list records for Workgroup Manager. This information is stored in a MySQL database and the program I wrote generates files that are imported into Workgroup Manager for list assignment. The computer lists are generated by room number, and computers are assigned names with their corresponding room number and placed in the appropriate computer list. In 10.5, I see that there is a push for Computer Groups rather than Computer Lists. However my program assigns computers to lists using the computer record name rather than the generated uid of the computer record like the computer group expects. From what I understand, the only benefit to Computer Groups is that you can include other Computer Groups within Computer Groups. Does this create any issues for mcx management? I have tried both groups and lists and have the same problem with loginwindow network user lists on 10.5.5.
Another question I have is how do you change the Cache settings now in WGM? In 10.4.11, there was a "Cache" tab where you could force clients to refresh the MCX cache after x amount of time, but the tab has been removed in 10.5. Can I add that mcx flag to Open Directory and have my 10.5 clients respect the policy, or has this been outdated in 10.5?
Thanks,
Chris Bethel
Hamilton County Dept. of Education
Chattanooga, TN
[email protected]

Thanks for your reply, it gave me an idea that seems to be working so far:
This is not feasible for anything other than an elementary school with network homes. It is extremely insecure but when you need a working product, you pretty much gotta do what you gotta do. Here's what I've done:
1. I created a local administrator user with the name "@ Refresh List" with short name "refreshlist" with no password.
2. Launch Script Editor (in /Applications/AppleScript/Script Editor) and paste this code:
do shell script "rm -Rf '/Library/Managed Preferences'" password "" with administrator privileges
do shell script "killall loginwindow" password "" with administrator privileges
3. Save with file format set to Application, check "Run Only" and uncheck all other boxes to somewhere the user home folder.
4. In the Accounts pane of System Preferences, select the "@ Refresh List" user and go to the Login Items tab.
5. Drag in the application you just saved.
6. Quit System Preferences and log out.
This is EXTREMELY bad for security, but since its elementary school students and network home folders, there's not much for them to mess up. It provides a 1-click process to updating the much needed list.
Also -- I've tried swapping out loginwindow with 10.5.4 and experienced the exact same result.
My fix is quick and dirty, but gets the job done.
Does anyone else have any suggestions?
Message was edited by: WollarinTJ

Similar Messages

  • ICloud for pages app not working on network users having home folder on Mac Mini Lion server

    Does anyone know how to make iCloud for pages work on network users having home folder on server, having home folder on local Client iCloud for Pages works fine but when home folder is on Server iCloud for Pages app does not work. My Clients are Running Mountain Lion 10.8.2, my Server is a Mac Mini Lion Server.

    Hi Tim,
    No fix yet, my home folders reside on a thunderbolt external hard drive, I also tested having home folders on default server HD and no changes, I called Apple Support a while ago, they replicated the issue, it just does not work on network users, they did not say when will it be fix.
    The version of Pages I am using is from the Apple Store.
    Hector

  • Cascading Select Lists - Not Working for me

    I am trying to implement Denes Kubicek's Ajax Cascading Select List solution.
    http://apex.oracle.com/pls/otn/f?p=31517:119
    But it is not working for me.
    I'm a newbie to APEX and checked the forum for advice on cascading select lists. I saw the thread for
    "Cascading Select Lists - Not Working" posted by sue and the replies by Varad Acharya, but I'm still
    having issues of not seeing the alerts, not able to run the pl/sql process in SQL Workshop, and not
    getting the expected results.
    I have a list of countries (US - USA, CA - CANADA, etc.) and a list of states for each country. When a
    user selects a country I would like to show the list of states within that country.
    This is what I've done so far:
    Defined an application process:
    Process Point: On Demand: Run ... by a page process.
    Name: CASCADING_SELECT_LIST1
    Process Text:
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 99 || '">' || '- All States -'
    || '</option>'
    FOR c IN (SELECT state_code || ' - ' || state_desc d, state_code r
    FROM tbk_state
    WHERE country_code = :cascading_selectlist_item_1)
    LOOP
    HTP.prn ('<option value="' || c.r || '">' || c.d || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    END;
    defined and application item:
    Name: CASCADING_SELECTLIST_ITEM_1
    Build Option: - No Build Option -
    Created a 'Form on a table with report' as follows:
    Page 5: Report on TBK_HARDWARE_LOCATION
    Page 6: Form on TBK_HARDWARE_LOCATION
    in HTML Header of the page attributes for 'Form on TBK_HARDWARE_LOCATION' I have:
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    On Page 6: 'Form on TBK_HARDWARE_LOCATION' I have the following items (plus some others):
    Name: P6_COUNTRY_CODE
    Display as: Select List
    HTML Form Element Attributes: onchange="get_select_list_xml1(this,'P6_STATE_CODE');"
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: COUNTRY_CODE
    Named LOV: LIST OF COUNTRIES
    Name: P6_STATE_CODE
    Display as: Select List
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: STATE_CODE
    Named LOV: - Select named LOV -
    List of Values definition:
         select state_code || ' - ' || state_desc d, state_code r
         from tbk_state
         where country_code = :P6_COUNTRY_CODE
         order by 1
    LIST OF COUNTRIES is defined as:
    select country_code || ' - ' || country_desc d, country_code r
    from tbk_country
    order by 1
    Now to the problem:
    I run page 5 (the report) to see the list of locations and then I try to edit a record (page 6). When I
    try to select a different country I get the following error (on IE):
    "Problems with this web page might prevent it from being displayed properly or functioning properly.
    In the future, you can display this message by double-clicking the warning icon displayed in the status
    bar.
    Line: 17
    Char: 5
    Error: Object expected
    Code: 0
    URL: http//cmrac4.cm.timeinc.com:7777/pls/htmldb/f?
    p=114:6:1413254636072443110::::P6_HARDWARE_LOCATION_ID:2
    I don't see any of the alert messages.
    I also tried to run the application process code in the SQL - Command Processor (I replaced
    :cascading_selectlist_item_1 with 'CA' or 'US') and got the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh
    button, or try again later.
    Only one top level element is allowed in an XML document. Error processing resource
    'http://cmrac4.cm.timeinc.com:7777/pls/...
    <select><option value="99">- All States -</option><option value="X1">X1 - X1</option><optio...
    Can someone help me please?

    Varad,
    First, thank you for taking the time to try to help me with this problem.
    When I view the page's source code (here are the first few lines):
    <html lang="en-us">
    <head>
    <script src="/i/javascript/core.js" type="text/javascript"></script>
    <link rel="stylesheet" href="/i/css/core.css" type="text/css" />
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='Would you like to perform this delete action?';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    //alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    //alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    It looks like line 17 is:
    var l_Select = html_GetElement(pSelect);
    I'm still not sure why I'm getting this error and why it's not working?
    Thanks,
    Eti

  • Wifi with stock kernel driver rtl8192ce not working consistently

    Hi,
    My wifi card RTL8188CE does not work consistently with kernel driver rlt8192ce. The problem that i observe is that after some time ~1hr wifi devices get disconnected and are not able to reconnect. On restarting wifi using systemctl restart hostapd sometimes the system hangs.
    Here are the outputs.
    03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
    Subsystem: ASUSTeK Computer Inc. Device 84b5
    Kernel driver in use: rtl8192ce
    Kernel modules: rtl8192ce
    Logs
    Jan 22 19:30:56 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:56 Blitz-4 kernel: [color=red]rtl8192ce 0000:05:00.0: swiotlb buffer is full (sz: 105 bytes)[/color]
    Jan 22 19:30:56 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:56 Blitz-4 kernel: rtl8192ce 0000:05:00.0: swiotlb buffer is full (sz: 105 bytes)
    Jan 22 19:30:56 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:57 Blitz-4 kernel: rtl8192ce 0000:05:00.0: swiotlb buffer is full (sz: 105 bytes)
    Jan 22 19:30:57 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:57 Blitz-4 kernel: rtl8192ce 0000:05:00.0: swiotlb buffer is full (sz: 105 bytes)
    Jan 22 19:30:57 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:57 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:57 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 9100 bytes at device 0000:05:00.0
    Jan 22 19:30:57 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:57 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:57 Blitz-4 kernel: DMA: Out of SW-IOMMU space for 105 bytes at device 0000:05:00.0
    Jan 22 19:30:58 Blitz-4 kernel: BUG: unable to handle kernel paging request at 000060240000801d
    Jan 22 19:30:58 Blitz-4 kernel: IP: [<ffffffff811b29a6>] __kmalloc+0x86/0x1c0
    Jan 22 19:30:58 Blitz-4 kernel: PGD 0
    Jan 22 19:30:58 Blitz-4 kernel: Oops: 0000 [#1] PREEMPT SMP
    Jan 22 19:30:58 Blitz-4 kernel: Modules linked in: nls_iso8859_1 nls_cp437 vfat fat ctr ccm fuse bridge stp llc snd_hda_codec_hdmi arc4 mousedev hid_generic coretemp hwmon ppdev intel_rapl x86_pkg_temp_thermal intel_powerclamp kvm_intel rtl8192ce rtl_pci rtl8192c_common rtlwifi kvm mac80211 crct10dif_pclmul crc32_pclmul evdev crc32c_intel mac_hid uas ghash_clmulni_intel usb_storage usbhid cfg80211 hid snd_hda_codec_realtek snd_hda_codec_generic i915 aesni_intel iTCO_wdt iTCO_vendor_support aes_x86_64 lrw snd_hda_intel gf128mul drm_kms_helper rfkill snd_hda_controller glue_helper ablk_helper psmouse drm snd_hda_codec cryptd pcspkr serio_raw snd_hwdep intel_gtt snd_pcm i2c_i801 r8168(O) i2c_algo_bit i2c_core snd_timer parport_pc tpm_infineon snd fan thermal tpm_tis parport mei_me tpm soundcore battery mei video shpchp
    Jan 22 19:30:58 Blitz-4 kernel: button lpc_ich processor sch_fq_codel ext4 crc16 mbcache jbd2 sd_mod atkbd libps2 ahci libahci libata xhci_pci ehci_pci xhci_hcd ehci_hcd scsi_mod usbcore usb_common i8042 serio
    Jan 22 19:30:58 Blitz-4 kernel:CPU: 3 PID: 1238 Comm: Cache2 I/O Tainted: G O 3.18.2-2-ARCH #1
    Please suggest any workaround/modules.

    Same problem to me. lspci output:
    07:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
    and logs:
    Apr 04 16:06:29 nzk kernel: rtl8192ce 0000:07:00.0: swiotlb buffer is full (sz: 9100 bytes)
    Apr 04 16:06:29 nzk kernel: DMA: Out of SW-IOMMU space for 9100 bytes at device 0000:07:00.0
    Apr 04 16:06:29 nzk kernel: rtl8192ce 0000:07:00.0: swiotlb buffer is full (sz: 9100 bytes)
    Apr 04 16:06:29 nzk kernel: DMA: Out of SW-IOMMU space for 9100 bytes at device 0000:07:00.0
    Apr 04 16:06:29 nzk kernel: rtl8192ce 0000:07:00.0: swiotlb buffer is full (sz: 9100 bytes)
    Apr 04 16:06:29 nzk kernel: DMA: Out of SW-IOMMU space for 9100 bytes at device 0000:07:00.0
    Apr 04 16:06:29 nzk kernel: rtl8192ce 0000:07:00.0: swiotlb buffer is full (sz: 9100 bytes)
    Apr 04 16:06:29 nzk kernel: DMA: Out of SW-IOMMU space for 9100 bytes at device 0000:07:00.0
    A bug report submitted to redhat bugzilla https://bugzilla.redhat.com/show_bug.cg … id=1203241 suggests it may be caused by a bug in the rtl8192ce kernel module since linux 3.17.7. I hope this problem could be solved as quickly as possible.
    Last edited by mike_nzk (2015-04-04 08:33:59)

  • GRC 10.0: Access Request Creation - LDAP user advanced search not working

    Dear Experts,
    We are implementing SAP GRC Access Control and we have an issue in Access Request Creation. If we put the user name in “User” field and press intro, the user details are updated, but if we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    Scenario 1: If we put the user name in “User” field and press intro, the user details are updated:
    Scenario 2: If we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    We are using the Active Directory as Data Source.
    Thanks and Regards.

    Hi Jose,
    Try maintaning the parameter 2050 as YES and check once.
    Kindly, also make refer to  the below list of SAP notes:
    1757906 - GRC 10.0 - LDAP user search does not work in NWBC
    1745370 - LDAP search in GRC does not work anonymously
    1718242- UAM: User search not working in Access Request.
    Regards,
    Neeraj Agarwal

  • Command-C is not working consistently to.

    Command-C is not working consistently for me. In multiple apps, but mostly in Word, I find myself pressing Command-C and then Command-V to paste and what I paste is the LAST thing I copied, not the most recent. I sometimes have to repeat teh sequence several times before it pastes the thing I want it to. Any suggestions? I tried searching for this problem, but didn't find any relevant discussions. Thanks!

    Hello eeinna,
    I was thinking it might be a good idea to reset the SMC and the PRAM on the computer. Here are the 2 articles for those processes:
    About NVRAM and PRAM
    http://support.apple.com/kb/ht1379
    And
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/ht3964
    If needed I would also recommend testing the issue in a new user, and following the directions in this article as well based on what you find.
    Isolating an issue by using another user account
    http://support.apple.com/kb/TS4053
    All the best,
    Sterling

  • 1. TACAS+ Accounting and Logged in Users report is not working on ACS 4.1(1

    Hi,
    I am facing problem with ACS 4.1 accounting, TACAS+ Accounting and Logged in Users report are not working, the csv file is been generated but nothing is showened in the file.
    I have checked the documents related to ACS 4.1, it says that there is a bug related to command accounting “CSCsg97429 - TACACS+ Command Accounting does not work in ACS 4.1(1) Build 23”.
    Tried upgrading the same with the patch applAcs-4.1.1.23.3.zip, still it is not working.
    Other reports are working fine.
    1. TACAS+ Accounting - not working
    2. Logged in Users - not working
    3. TACAS+ Administration - working
    4. Passed Authentication - working
    5. Failed Attempts - working
    Any suggestions or any idea, please revert.
    Regards
    Vineet

    Hi,
    Thanks
    Yes I have configured the command “aaa accounting exec default start-stop group tacacs+”
    As I have mentioned all the other reports are working. Which user and when he has logged in and what commands he has used. Only the TACAS+ Accounting and logned user is not working.
    Regards,
    Vineet

  • I have upgraded to Lion Os but my Network storage (Iomega Home Media Network hard drive) does not work with Time Machine.  Are there any solution available?

    I have upgraded to Lion  OS only to find that my NAS (Iomega Home Media Network hard drive) does not work.  It tells me that it is not configured.  Are there any solutions .  Have Iomega sorted out the problem?

    Same issue here.  Based on what I can tell, iomega still has not developed a solution to the problem.  See below:
    https://iomega-na-en.custhelp.com/app/answers/detail/a_id/28327/kw/Mac%20OS%20X% 20Lion

  • Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file bu

    Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file but not working. What is the matter and how can I deal with it?

    I am trying it on Adobe Acrobat Reader 9.2.1. Tried to fix Hex code, and also tried 'edit-preference-trust manager'. I focusing on Adobe registries but still couldn't fix the problem.

  • TS1559 hello guys i wanted to ask u about my ipad wifi is not turning on and i have tried to reset the network but still is not working please i need ur help

    hello guys i wanted to ask u about my ipad wifi is not turning on and i have tried to reset the network but still is not working please i need ur help

    Thank you. I will try your tip. And if it works, I'll give you 10 points . But now its been charging for hours and its still the same . But thank you!

  • Power button not working consistently

    Have owned my Macbook Air 13" for almost a year.  Over the last few months, I've had some issues with the power button when in standby mode.   I think this happened even before I updated to OS X Yosemite.  Sometimes when I go to turn my computer on, the button is  completely unresponsive.  I have to press the button over and over again.  Sometimes I hold it down firmly and it turns on, other times it seems to turn on after a light touch.  Any suggestions as to what I'm doing wrong?  Thanks-

    LauraTX1 wrote:
    The power button on my Tungsten E2 not working consistently.  What do I need to do to it?  Hard to turn my palm on when the button does not work properly.
    Post relates to: Tungsten E2
    Just an FYI Laura - you can press any of the hard buttons on your Palm and it will turn on.   Many of try to avoid using the fragile power button, choosing instead to use a hard button to turn on, and the normal timeout to turn off. 
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • The back button does not work consistently, and rarely works if I open an attachment...any ideas on fixing this?

    The back button does not work consistently, and rarely if ever when I open an attachment. Does anyone have a fix for this?
    == This happened ==
    Not sure how often
    == I installed firefox

    Same problem here: I never had a problem with the previous versions and now I don't even get my homepage when I click Firefox. Instead, I am getting a blank screen that says "New Tab", only after I click the "Home" symbol I get my Homepage (Yahoo). The browser - back and browser forward button don't work anymore, very annoying. Normally a newer version should be an improvement but it looks like Mozilla really messed up with this "improvement". probably I am going to use Google chrome from now on.

  • My network is not working i am in ghana and i use MTN  network but it is not working why is it like that

    my network is not working i am in ghana and i use MTN  network but it is not working why is it like that... pls get back to me now

    It sounds as if you need to call your mobile carrier.

  • When i finally connected my mac to work network on windows environment everything related to apple including App store, Safari, software updates, iCloud and iTunes do not work using a proxy server and everything else is working very well

    when i finally connected my mac to work network on windows environment everything related to apple including App store, Safari, software updates, iCloud and iTunes do not work using a proxy server and everything else is working very well including chrome browser…i tried everything but no clue...anybody have solution for this..???

    I also forgot to note that this problem also persists with the new iBooks application. I cannot get past the 'Get Started' screen or access the iBooks Store. Again, all top bar menus are unresponsive.
    DT

  • Why does it show my officejet 4622 as not working with an app when it shows it does in the info.help

    My printer is an hp officejet 4622.  I'm sorry to say I need step to step info as I am self taught 70 yr old trying to move forward. Thanks

    Hi vitamary;
    Hope you are doing well welcome to the HP forums
    can you be more specific in what is the problem that you are having, what app is showing that the printer is not working?
    Is your computer running Windows or is a Apple computer,
    letm e know this information and I will do my best to help you.
    Regards;
    RobertoR

    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

Maybe you are looking for

  • IMovie 08 version 7.1 not responding - spinning rainbow

    Hello, It seems like there are a lot of people reporting that after the update to iMovie 7.1 - they can't use iMovie with their pre-existing data (pictures/movies/projects/preferences). Here are some steps to see if you have the same problem that I h

  • "Security Warning" dialog box when click script set to Run at Server

    I am rendering a PDF form using the renderForm component.  I'm setting the Target URL.  I have a script on a button set to "run at server".  I can render my form in a browser and fill it out, but when I click the button I get a dialog box with a titl

  • Is crossword puzzle scoring possible in captivate??

    How can I apply scoring in a crossword puzzle. Because I want to score every letter in a box with 1. The total score will depend on the number of correct letters/words in a puzzle. And how can I add it to the total score in the module if the crosswor

  • Response less Synchronous call.

    Hi, I have a Synchrnous call (stored procedure) to be executed from BPM, but I am not expecting any response. How can I make this call to wait for 30 min or 40 min, or till its successful. Thanks-in-advance. /Raj.

  • LabVIEW new "Silver" error cluster and TestStand

    I have some new VI's that use the new "Silver" style error controls and indicators.  I started calling the VI's from TestStand and noticed that the new VI's were not auto populating the TestStand error to the VI's error out.  Not sure how this mechan