Intel MacBooks not displaying users list from WGM

Hello folks,
I have a situation where all my Intel iMacs connect to my OD server fine, pulls down the WGM user lists and logs in fine. However I also have about 8 Intel MacBooks that are meant to connect wirelessly to this same server. For some reason I can not figure the MacBooks, connect fine, I can even bind them but they do not display the users list. I thought maybe the wireless connection may have something to do with it, so I plugged them directly into the data cable and still no luck. I ensured that on the local machine the user account is set to display as a list. I have created the computer list in WGM for the MacBooks, all to no avail. I have been scouring the forums but no breakthrough yet. Any ideas from anyone will be greatly appreciated.
G5 Mac OS X (10.4.8)

The list of users is a plist file and should be at at /Library/Preferences/com.apple.loginwindow.plist on the clients. See this thread for more information:
http://discussions.apple.com/thread.jspa?messageID=2368769&#2368769
If you've got a good plist from a client that sees the right users, you should be able to copy it over. If not, try backing up the file from one client and then deleting it and restarting.

Similar Messages

  • Security report SEC_LIST_MBR is not displaying users list

    Hi,
    When we run security report SEC_LIST_MBR. It is not displaying list of users instead it is just displaying user id who ran the report all other columns Full Name, Teams, Task Profile and Member access are blank.
    Please suggest what is causing it not to display list of users.
    In database we loaded the following page  http://ReportServer/reports and ran report SEC_LIST_MBR. It also gave same result - one row with user id data only.
    Regards,
    Rajesh

    We found the root cause it was because table "task" does not have records in APPSERVER Database.
    Once we updated task table. Security report SEC_LIST_MBR is displaying results correctly.
    Regards,
    Rajesh

  • Error - You may display spool list from your own jobs..

    Hi Team,
    I have created a SAP_ALL Display role for our maintainence members and whenever they are trying to view the spool log in sm37 they are getting the Error - You may display spool list from your own jobs..
    I have checked the following objects :S_SPO_ACT and S_SPO_DEV all those have full authorizations and regenerated and done a user compare and then checked ..getting the same error..
    Could you pls provide your vauable suggestions..
    Regds,
    Satyanarayana N.

    Hello Satya,
    Normal users hardly need access to s_btch_adm with value *. I wonder if your security auditors would agree to it.
    Also 3 is not a valid value for s_btch_adm. Either it can be Yor N. Y mean that the user is batch administrator while N means the user is not. Of course * encompasses all. Try first with N and see if the users are able to see the spool.
    If not then do you have mutiple clients in your system? If so make sure users are trying to see the spool in the correct client i.e they are trying to check a spool generated in client X after logging into client X only.
    Regards.
    Ruchit.

  • Extract user list from NT 4.0 Domain

    Hi All,
    I am in the process of upgrading the NT4 domain to Active Directory.
    Can someone please provide a a way to generate a topology diagram for Windows NT infrastructure. 
    I know this is a very old technology, however i am now handicapped since none of the tools, like (hyena, AD Manager, DS Query, etc) are working. 
    Is there any method to run a topology diagramming similar to Active Directory Topology Diagramming in NT4.0 domain.
    Also i want a way to extract the active user list from NT Domain as well.
    OS version is windows NT 4.0 SP6
    Regards, Triyambak

    Hi Paul, Thank you for reverting it back. I think i do have one of the member server 2003 joined into the NT4 domain. I will surely give it a try. Does it need to be a DC, if yes, how can a DC be promoted in an NT4 environment.
    In my current scenario there are around 2000 servers joined into the NT domain  and I need to upgrade the NT to active directory. There are few things as per the design so far.
    >The members are all static IP addressing
    > there is no DNS in NT so they use a dns suffixes to a different domain (2008 functional level)
    > NT 4 is used only as authentication source.
    > Not sure if there are any NT Domain service accounts configured in the member servers.
    Complex isnt it..

  • Hierarchy Node Variable is not displaying full list of Hierarchy

    Hi,
    I loaded Hierarchy  to an info object using flat file.
    When i created a test reports and settings to display of MAster Data of Char and executed the report
    The output displays full list of Hierarchy
    Now to have a User Entry on Hierarchy ...created a Hierarchy Node variable and executed the value help of Hierarchy Node variable is not displaying fill list of Hierarchy ...its only displaying first 15 entries in Hierarchy.
    I changed the settings of variable...etc but couldn't get the Hierarchy full list in User entry selection
    How can i fix it...
    Thanks in advance

    If anyone has the same problem, I think I found the reason when transported to production.
    BW7.3 (at least) can not show the hierarchy nodes if there is no transactional data loaded.
    So do your hierarchies only after the data has been loaded..

  • When i go to attach a photo to email or load it to facebook it will not display any photos from my iphoto library and only allows me load ones that are in photo booth or saved on the desktop. Any ideas?

    when i go to attach a photo to email or load it to facebook it will not display any photos from my iphoto library and only allows me load ones that are in photo booth or saved on the desktop. Any ideas what is wrong?

    when i go to attach a photo to email or load it to facebook it will not display any photos from my iphoto library and only allows me load ones that are in photo booth or saved on the desktop. Any ideas what is wrong?

  • Frm - 41337 - can not populate the list from record group

    Hi
    I have created a form with 4 combo boxes. And i am trying to populate the 4 combo boxes dynamically.
    Here is my table structure.
    BUS_FUNCTION VARCHAR2(500),
    SEQ NUMBER,
    STEP1 VARCHAR2(500),
    STEP2 VARCHAR2(500),
    STEP3 VARCHAR2(500),
    STEP4 VARCHAR2(500),
    KEYSTEP VARCHAR2(4000),
    OBJ_NAME VARCHAR2(500),
    SME VARCHAR2(50)
    In the fist combo box i am retriving bus_function and second seq and third step1.
    i wrote a trigger when_new_form_instance and i am calling a procedure from the trigger.
    here is my procedure code.
    PROCEDURE fp_get_list IS
    l_sql_text VARCHAR2(2000);
    BEGIN
    l_sql_text := 'SELECT bus_function,bus_function FROM TABS_BUS_FUNC';
    lp_populate_list('BUSFUNC.list22','rgcat2',l_sql_text);
    l_sql_text := 'SELECT TO_CHAR(SEQ),TO_CHAR(SEQ) FROM TABS_BUS_FUNC';
    lp_populate_list('BUSFUNC.BUS_FUNC','rgcat',l_sql_text);
    l_sql_text := 'SELECT step1,step1 FROM TABS_BUS_FUNC';
    lp_populate_list('BUSFUNC.list20','rgcat1',l_sql_text);
    END;
    Now the problem is i can able to get the values fro the first two colums. but the third column values are not populating.
    i am getting an error frm - 41337 - can not populate the list from record group.
    PLease help me in this.
    Thanks in advance,
    Raju

    I got answer
    i write a code in when-new-form-instance
    declare
    v_rg_id RECORDGROUP;
    v_return number;
    v_query varchar2(2000);
    outcome number ;
    begin
    v_rg_id := CREATE_GROUP_FROM_QUERY('RG_LIST','select Dname,To_char(Deptno) deptno from dept');
    v_return := POPULATE_GROUP(v_rg_id);
    POPULATE_LIST('emp.deptno', 'RG_LIST');
    end;
    but remember property of list item must be mapping of others value null and initial value null
    if ur problem not solve then tel me email, i ll send u fmb file

  • How to generate Operating system user list from windows server

    Hi,
    is it possible to extract the following report from windows server, if yes how to do it,
    1) Operating system User list from the server along with following details User Name, User Permission, Last Login date, User Status, 
    2) is it possible to include staff id, and staff name while creating any Operating system user

    Hi FBMUIIa,
    Would you please let us know current situation of this issue? Please refer to Mr X’s suggestion and check if
    can help you.
    Please also refer to following article and check if this script can help you.
    List Local
    User Accounts Using WMI
    In addition, regarding your current requirement, it seems that scripts will help you to achieve the target better.
    I suggest that you would post the question in
    Official Scripting Guys Forum or
    PowerShell Forum. I believe we will get a better assistance there.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Multi-Select Box Not Displaying Values Passed From Grid?

    Coldfusion 8
    I inherited an application and am trying to maintain and improve it... hit a snag today.
    I have a multi-select box that is not displaying what I expect.  The values come from a ColdFusion grid which is based off a database query.
    Here is the code for the select - does not work - nothing is selected:
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Now if I change the multiselect to a single select like below - it takes the first item in the field list (from the grid) and selects it in the drop down.
    <cfselect name="USER_IDS" multiple="false" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Or if I assign a variable like this and use the multi-select code it seems to work as well.
    testlist = "22,26";
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="#testlist#" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    I have displayed the value of "User_IDs" in the grid and in the data entry part of the screen to see values of:  22,26
    to make sure that wasn't my issue.
    Do grids and multiselects require something additional?  Any advice on how to resolve?

    Problem was related to some javascript for the select box.  There was a function for a single select box but not a multiple select box - this fixed it: 
    if(theForm.elements[i].type == "select-multiple"){
                        var selectBox = theForm.elements[i];
                        var sbname = selectBox.name;
                        cpvalue = String(eval('record.data.' + sbname));
                        var NotifyArray = cpvalue.split(',');
                        for (var j=0; j < selectBox.length; j++) {
                            selectBox[j].selected = false;
                        for (var j=0; j < selectBox.length; j++) {
                            sbvalue = selectBox[j].value;
                            for (var k=0; k < NotifyArray.length; k++){
                                if (sbvalue == NotifyArray[k]){
                                    selectBox[j].selected = true;

  • Files not displaying in list view?

    I recently upgraded my MacPro (early 2008 8core) from Snow Leopard (10.6.8)  to Lion.
    At first i wanted to do a fresh install on my machine but soon realised it wasnt possible to import old accounts from another internal drive so i opted to upgrade the system instead.
    After doing so I was faced with an odd problem of files not displaying in my finder windows when switching through internal drives or changing from 'file view' to 'list view' or 'column view' etc...
    The attached screenshots were taken in sequence youll also note that the path bar & top window name dont update either.
    The relevant drives are in healthy condition with several tests run over them to ensure their healthy(Disk Utility & Drive Genius). I have also run permissions repair, and a utility to empty cahces etc (OnyX). From what i can see its possibly something to do with the Finder not updating or refreshing the window? The issue seems to be isolated to the drives however intermittently the problem exists deeper into the directory on 'TerraTank' Volume.
    The finder also crashes semi-frequently and the problem seems to dispaear for a while and revealing the contents of these volumes for a few mins.
    I have also checked activity monitor to see if any particular process was going haywire and all seemed relativly normal.
    Has anyone else experienced this problem?
    Regards,
    JP

    Onyx may be causing problems.  Don't use it on a non-backed up system, as cleaning caches may damage them, and make things not work.    Make sure your Spotlight indexes all drives you wish to be searchable.  Go to Apple menu -> System Preferences -> Spotlight and add each hard drive to the Privacy section, and then remove it again.  Then click on the Spotlight menu every half hour to see when it stops saying that it is indexing.  It might take a few hours.  But once done, it should be fixed.

  • Expiration date not displaying after upgrade from 2007 to 2013

    I recently upgraded from MOSS 2007 to 2013.  I have information management set up on a library of InfoPath forms.  For the forms that were created prior to the upgrade, the expiration date is displaying and actually get updated if I modify them. 
    But none of my forms that have been created after the upgrade, are displaying when the expiration date is, which should be one year from modify date.  If I modify the forms created prior to the upgrade, they reflect the new, update date.
    Are these new forms not getting the policy applied to them, and why not?  I am not sure why the older forms are getting updated, but not my new ones.
    Denise E.

    Hi Denise,
    According to your description, my understanding is that the Expiration date column was not displaying values after upgrading from SharePoint 2007 to SharePoint 2013.
    Per my knowledge, we can only use the date column which is added to the library or list or the Declared Recorded date to set the retention policy, so if the Expiration date is used in the retention policy then the Expiration date should be a column in the
    library or list.
    I recommend to check the retention policy in the library and see which column is used in the retention policy as the image below shows:
    After that, go to the Library settings to find this column.
    Could you please provide screenshots of the retention policy and the columns in the Library settings page?
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Display select list from query on manual tabular form

    Hello,
    I'm trying to display a select list from query on a manual tabular form. I'm using a collection to store the data. I can't seem to get the query to work. I can display the item as a text item. Any help would be appreciated. Thanks, Elizabeth.
    SELECT
    -- Notice how I'm keeping the idx value the same as the column value in the collection. This helps to keep things organized
    -- I also apply an id to each entry
    -- I append the error value to the empname and sal
    -- The Seq_id. Usefull when hiding rows (for delete) and then submitting from
    apex_item.hidden(1,x.seq_id, null, x.seq_id || '_seq_id') ||
    -- The Primary Key of the column
    apex_item.hidden(2, x.ceah_people_id, null, x.seq_id || '_ceah_people_id') || x.ceah_people_id ceah_people_id,
    -- Employee Name
    case when x.seq_id = -1
    then
    apex_item.select_list_from_query (3,
    NULL,
    'select distinct language_name d, '
    || 'language_id r from foreign_language',
    'style="width:170px" ' ,
    'YES',
    '0',
    '- Select Language -',
    'x.seq_id_' || LPAD (9900 + LEVEL, 4, '0'),
    NULL,
    'NO'
    else
    apex_item.text (3,(select language_name from foreign_language where x.language_id = foreign_language.language_id),
    80,
    100,
    'style="width:170px" readonly="readonly"',
    'f32_' || LPAD (ROWNUM, 4, '0')
    end
    || err.language_id language_id,
    /* apex_item.text(3,x.language_id,null, null, null, x.seq_id || '_language_id') || err.language_id language_id,
    -- Employee Salary
    apex_item.text(4,x.proficiency, null, null, null, x.seq_id || '_proficiency') || err.proficiency ||
    -- Store the sql action type as well.
    apex_item.hidden(50,x.sql_action_typ, null, x.seq_id || '_sql_action_typ_id') proficiency,
    -- Last but not least the row error
    err.row_error
    FROM (SELECT ac.c001 seq_id,
    ac.c002 ceah_people_id,
    ac.c003 language_id,
    ac.c004 proficiency,
    ac.c049 modifiable_flag,
    ac.c050 sql_action_typ
    FROM apex_collections ac
    WHERE ac.collection_name = 'DATA_COLLECTION'
    ORDER BY ac.seq_id) x,
    -- Error Collection
    (SELECT ac.seq_id seq_id,
    ac.c002 ceah_people_id,
    ac.c003 language_id,
    ac.c004 proficiency,
    ac.c050 row_error -- Useful when individual data is correct, however the row of data is not. Ex: start/end dates
    FROM apex_collections ac
    WHERE ac.collection_name = 'ERROR_COLLECTION'
    ORDER BY ac.seq_id) err
    WHERE x.seq_id = err.seq_id(+)

    I got so frustrated I started over. I'm following the how to create a manual form.
    http://www.oracle.com/technology/products/database/application_express/howtos/tabular_form.html#MANUAL
    The problem I'm now having is even though I display items as hidden, there is a column holder on the report for them. If I go into the report attributes and toggle the show attribute off I cannot reference an items value in my logic. I used /&nbsp/ for the column heading but I still get the little sort arrow where the column heading should be. I tried to toggle the sort attribute off but the sort arrow still shows up. How can I use the apex_item.hidden and not get a place holder for the column on a report? Thanks, Elizabeth
    Here is the code I'm using to generate the report:
    select x.ceah_people_lang_id,
    x.language_id,
    x.proficiency,
    x.ceah_people_id
    from (
    select apex_item.hidden(1,ceah_people_lang_id) ceah_people_lang_id,
    apex_item.select_list_from_query(2,language_id,'select language_name, language_id from foreign_language') language_id,
    apex_item.select_list_from_query(3,proficiency,'select name, id from proficiency') proficiency,
    apex_item.hidden(4,ceah_people_id) ceah_people_id
    from ceah_people_language where ceah_people_language.ceah_people_id = :P152_person_id
    union all
    select apex_item.hidden(1,null) ceah_people_lang_id,
    apex_item.select_list_from_query(2,null,'select language_name, language_id from foreign_language') language_id,
    apex_item.select_list_from_query(3,null,'select name, id from proficiency') proficiency,
    apex_item.hidden(4,null) ceah_people_id
    from dual) x

  • Not displaying matching entries from address book

    I used to be able to type a contact when sending a message and it automatically displayed a list of suggested contact names but now it is no longer doing that. I have not recently installed any new extensions or add ons and not sure why it has stopped from doing this. Can anyone please tell me what the problem may be?

    Try restarting Thunderbird with add-ons disabled (Thunderbird Safe Mode). On the Help menu, click on "Restart with Add-ons Disabled". If Thunderbird works like normal, there is an Add-on or Theme interfering with normal operations. You will need to re-enable add-ons one at a time until you locate the offender.
    It was an add-on that caused that last time for me.

  • HumanTask not displaying users

    Dear team,
    I am going thru Oracle SOA11g developers guide for human task workflows.In my machine I have installed Oracle SOA11g suite.I have configured single domain with Admin server which is also a managed server(SOA and bam are there on admin server itself).
    In developers guide it is metioned that if we give hostname(with out domain) in applicaion server connection configuration for fetching the users/groups from security realm in assignment phase of human task editor we may not get the realms or users.
    for that we need to mention hostame along with domain name in application server connection configuration to get all the users/groups from identify store in assignment phase in human task editor
    Initially I configured application server connection with hostname(myhost) with out domain name. I got only 2 users from jazn.com in assignment phase for that application server connection (weblogic ,oraclesystemuser)
    later I added domain name to the hostname in application server connection configuration(myhost.irsd.com).Later I tried to retrieve the users from realm (jazn.com)..then also I am getting only 2 users(weblogic,oraclesystemuser)
    But developers guide stated that if we specify domain name along with hostname we should be able to access all users from jazn.com realm.
    Please help

    The list of users is a plist file and should be at at /Library/Preferences/com.apple.loginwindow.plist on the clients. See this thread for more information:
    http://discussions.apple.com/thread.jspa?messageID=2368769&#2368769
    If you've got a good plist from a client that sees the right users, you should be able to copy it over. If not, try backing up the file from one client and then deleting it and restarting.

  • [solved] gdm not showing user list and not recognizing gconf

    I installed gdm2setup from aur and ran it as root, and since then gdm will no longer display a user browser to select my user from, I have to manually type in the user name and password to login.
    I uninstalled gdm2setup, and then did a force reinstall for gdm (pacman -S --force gdm)
    Then I rebooted, and as I mentioned, the user browser does not display.
    I edited /etc/gdm/custom.conf so that it shows:
    [greeter]
    Browser=1
    ...but still no luck.
    I made sure that gconf says that disable_user_list is not true, and it isn't.
    gconftool-2 --get /apps/gdm/simple-greeter/disable_user_list
    false
    So I don't know what else to do, or why this is happening.
    If anyone can help it would be greatly appreciated.
    EDIT: Here is the most recent :0-greeter.log after a fresh reboot
    No idea if any of this is related to my problem.
    # cat /var/log/gdm/\:0-greeter.log
    ** (<unknown>:2058): DEBUG: Client registered with session manager: /org/gnome/SessionManager/Client1
    gnome-session[2050]: WARNING: Could not launch application 'gnome-power-manager.desktop': Unable to start application: Failed to execute child process "gnome-power-manager" (No such file or directory)
    ** (process:2077): DEBUG: Greeter session pid=2077 display=:0.0 xauthority=/var/run/gdm/auth-for-gdm-JngQ5L/database
    gdm-simple-greeter[2077]: Gtk-WARNING: gtkwidget.c:5676: widget not within a GtkWindow
    gdm-simple-greeter[2077]: WARNING: Unable to read from file /etc/arch-release
    Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x160002b (Login Wind)
    Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x160002b (Login Wind)
    Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x160002b (Login Wind)
    Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be fixed.
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0.  This shouldn't happen!
    Window manager warning: Log level 16: Failed to send buffer
    gdm-simple-greeter[2077]: WARNING: Failed to send buffer
    Window manager warning: Log level 16: Failed to send buffer
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at session startup.
    (gnome-settings-daemon:2059): atk-bridge-WARNING **: IOR not set.
    (polkit-gnome-authentication-agent-1:2076): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:2076): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:2076): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:2076): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    (polkit-gnome-authentication-agent-1:2076): polkit-gnome-1-WARNING **: Error enumerating temporary authorizations: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine session the caller is in
    EDIT#2
    Solved!
    sudo -u gdm gconftool-2 --set --type boolean /apps/gdm/simple-greeter/disable_user_list false
    Last edited by goplexian (2010-10-13 10:56:29)

    I want to set disable_user_list to true, but If I execute this
    sudo -u gdm gconftool-2 --set --type boolean /apps/gdm/simple-greeter/disable_user_list true
    I'm asked for a password ...
    EDIT:
    this line was commented in my sudoers file
    %wheel ALL=(ALL) SETENV: ALL
    Last edited by SiD (2010-12-02 19:34:46)

Maybe you are looking for

  • Photoshop 12 setup issues

    Hi I have loaded Photoshop 12 from the cloud and it says it's loaded correctly . When I log in vuyer the shortcut I get the start page but cannot get organiser to open . The Operationing platform is Vista Home What have I not Done Thanks

  • Multiple Problems - Any help for a newbie?

    Ok, I am totally new to embedding progressive video into HTML. I am using Dreamweaver to insert a Flash Video. The file size is just too large to insert a .swf directly. Here is a link to the webpage. Everything is working but the Flash. http://www.s

  • How do I install Window 7 64 bits onto IMac A1312

    I read that I should hv bought Window 7 32-bit instead of 64-bit version. I am not convince that there isn't a patch for the 64-bit version. Any suggestion? On installation, a blue screen appears with system32 system error.

  • How to replace hard drive bay fan?

    The fan in my G5 tower dual 1.8 Ghz in the top bay - optical/hard drive bay - has started to make noise. I bought a replacement, but I don't see any way to get the old one out. It sits in a little depression in the bay floor, and even if I got out th

  • Reporting  year to date(YTD)

    HOW TO DISPLAY YTD IN QUERIES ?