Import Pickup Group Members via BAT?

Hey guys,
I'm a little bit confused, but is there any way to import group members via BAT into existing pickup groups???
Unfortunately my colleague already created the groups but he didn't insert the members at all.
I'm talking about 200 groups with different parameters and I have to insert over 2000 members. So I wonder about how to import.
Please gimme a hint.
Thanks                  

Hi Patrick,
Yes you can add lines with this option on bat excel sheet
Call   Pickup Group 1
[String[50]OPTIONAL]
Regards
Haitham

Similar Messages

  • List group members via PHP

    I need to query NDS via PHP to get the member list of a group. I would
    like to do this via an anonymous bind, but can provide credentials if
    necessary. Any help would be appreciated.
    JM
    jmoseby
    jmoseby's Profile: http://forums.novell.com/member.php?userid=35190
    View this thread: http://forums.novell.com/showthread.php?t=387219

    jmoseby;1861509 Wrote:
    > Nevermind - figured it out:
    >
    > >
    Code:
    > > <?php
    >
    > function getMembers($group){
    > $ldap_server='10.1.10.200';
    > $ldap_user='admin';
    > $ldap_pw='notreallytheadminpassword!';
    >
    > $ldap = ldap_connect($ldap_server);
    > @ldap_start_tls($ldap);
    > @ldap_bind($ldap,"cn=$ldap_user,o=GSO", "$ldap_pw");
    > $results = ldap_search($ldap,"o=GSO", "cn=$group");
    > $user_info = ldap_get_entries($ldap, $results);
    >
    > foreach($user_info[0][member] as $member){
    > $member_exp=explode('=',$member);
    > $member_exp=explode(',',$member_exp[1]);
    > if($member_exp[0]!=''){$members[]=$member_exp[0];}
    > }
    > ldap_close($ldap);
    > return $members;
    > }
    >
    > $members=getMembers('BalanceOnOrder');
    > echo '<pre>';print_r($members);
    >
    > ?>
    > >
    Corrected code: removed single quotes around $ldap_server variable in
    ldap_connect() line.
    jmoseby
    jmoseby's Profile: http://forums.novell.com/member.php?userid=35190
    View this thread: http://forums.novell.com/showthread.php?t=387219

  • AD and adding group members via CFLDAP

    I posted this over in Advanced techniques with only one
    brave, yet
    unfortunately uninformed taker...
    Anyone here have a clue as to why I'd get the error described
    in the
    text below???
    [Only Response...]
    Thank you for your response... I probably should explain
    better what
    this code does...
    It queries a data source (DB2 database) for a list of about
    2000 names
    (specifically their Employee number).
    Then it queries the MS Active directory for a list of anyone
    who has an
    attribute of employeeNumber that
    is not an empty string.
    Next, it uses a QofQ to join the two record sets together,
    tossing out
    any records that do not match from
    both of the data sources.
    Then I loop over that list of employees adding them into a
    group.
    This operation dos nothing to modify a users password.
    Thanks,
    D.
    Ian Skinner wrote:
    > This came off of another CF related list. Not sure if it
    applies to
    > your situation or not.
    >
    > * You cannot change passwords unless you have a SSL cert
    setup for the
    > CF server and the AD domain controller.
    >
    > I have not first hand experience with this, so all I can
    offer is to
    > pass along the above comment.
    >
    > dnagel wrote:
    >> So, this is the advanced techniques group... and no
    one feels the
    >> least bit challenged?
    >> Theres got to be someone who enjoys delving into
    LDAP out there...
    >>
    >> D.
    I'm having a bit of trouble getting the CFLDAP Modify query
    to execute
    after
    I tied it into the CFLOOPed query... When I ran it with my
    own users DN it
    worked great... it does not work with any other DN. My
    account has Domain
    Adminis on this sandboxed server and is capable of making the
    change by hand
    using the AD tools inside of MMC... Any suggestions? Thanks,
    D.
    <cfset servername = "AD.TESTSITE.com">
    <cfset username = "[email protected]">
    <cfset password = "PASSWORD">
    <cfset domain = "TESTSITE">
    <cfset OU = "ou=Granite">
    <cfoutput>
    <CFSet GroupName="TestDistribution">
    <CFSet GroupDN =
    "cn=#GroupName#,cn=Users,dc=#domain#,dc=com">
    <CFQuery name="Users" datasource="GCI_Workforce">
    Select cast (WBAN8 as varchar(10)) as WBAN8, wbemal from
    WTWDSECPJ1 where WBEXEMPT ='Y'
    </CFQuery>
    <cfldap
    action="query"
    server = "#servername#"
    username = "#username#"
    password = "#password#"
    start = "#OU#,dc=#domain#,dc=com"
    attributes = "dn,employeeNumber"
    filter = "employeeNumber=*"
    name = "adDNLookup"
    scope = "subtree"
    >
    <CFQuery Name="JoinUsers" DBType="Query">
    Select
    adDNLookup.DN, adDNLookup.employeeNumber
    from
    adDNLookup,
    Users
    Where
    adDNLookup.employeeNumber = Users.wban8
    </CFQuery>
    <CFLoop Query="JoinUsers">
    <CFTry>
    <!---<CFSet UserDN = "member=cn=Dennis
    Nagel,CN=Users,DC=TESTSITE,DC=com">--->
    <CFSet UserDN = "member=#DN#">
    <CFSet UserName="#employeeNumber#">
    #UserName# #UserDN#<br>
    <cfldap
    action="modify"
    server = "#servername#"
    username = "#username#"
    password = "#password#"
    modifytype="add"
    attributes = "#UserDN#"
    dn="#GroupDN#"
    separator=";"
    >
    <cfoutput>#UserName# has been added to the group
    (#GroupName#).</cfoutput>
    <cfcatch type="any">
    <cfif FindNoCase( "ENTRY_EXISTS", cfcatch.message )>
    <cfoutput>
    #UserName# is already assigned to the group
    (#GroupName#).
    </cfoutput>
    <cfelse>
    <cfoutput>
    Unknown error : #cfcatch.detail#")
    </cfoutput>
    <cfabort>
    </cfif>
    </cfcatch>
    </CFTry>
    </CFLoop>
    </cfoutput>
    heres the trace info...
    110028 member=CN=Mary Chalfa, OU=PSP_Indio, OU=PSP,
    OU=GC_Branches,
    ou=Granite, dc=TESTSITE, dc=com
    Unknown error : One or more of the required attributes may be
    missing/incorrect or you do not have permissions to execute
    this
    operation on the server")
    Debugging Information ColdFusion Server Enterprise
    6,1,0,63958
    Template /JDE-AD-Sync/JDE-AD-Groups.cfm
    Time Stamp 22-Jun-06 12:02 PM
    Locale English (US)
    User Agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2;
    SV1; .NET
    CLR 1.1.4322; .NET CLR 1.0.3705)
    Remote IP 127.0.0.1
    Host Name 127.0.0.1
    Execution Time
    Total Time Avg Time Count Template
    687 ms 687 ms 1
    C:\Inetpub\wwwroot\JDE-AD-Sync\JDE-AD-Groups.cfm
    0 ms 0 ms 1 C:\Inetpub\wwwroot\JDE-AD-Sync\Application.cfm
    0 ms STARTUP, PARSING, COMPILING, LOADING, & SHUTDOWN
    687 ms TOTAL EXECUTION TIME
    red = over 250 ms average execution time
    Exceptions
    12:02:45.045 - Application Exception - in
    C:\Inetpub\wwwroot\JDE-AD-Sync\JDE-AD-Groups.cfm : line 67
    An error has occured while trying to execute modify :[LDAP:
    error code 49 - 80090308: LdapErr: DSID-0C090334, comment:
    AcceptSecurityContext error, data 525, vece].
    SQL Queries
    Users (Datasource=GCI_Workforce, Time=47ms, Records=2203) in
    C:\Inetpub\wwwroot\JDE-AD-Sync\JDE-AD-Groups.cfm @
    12:02:44.044
    Select cast (WBAN8 as varchar(10)) as WBAN8, wbemal from
    WTWDSECPJ1 where WBEXEMPT ='Y'
    JoinUsers (Datasource=, Time=16ms, Records=996) in
    C:\Inetpub\wwwroot\JDE-AD-Sync\JDE-AD-Groups.cfm @
    12:02:45.045
    Select
    adDNLookup.DN, adDNLookup.employeeNumber
    from
    adDNLookup,
    Users
    Where
    adDNLookup.employeeNumber = Users.wban8
    Scope Variables
    Application Variables:
    applicationname=JDE-AD-Sync
    ds=GCI_WFD
    Cookie Variables:
    JSESSIONID=36301107041151000811062
    Server Variables:
    COLDFUSION=Struct (8)
    OS=Struct (5)
    Session Variables:
    cfid=831
    cftoken=54562187
    sessionid=JDE-AD-SYNC_831_54562187
    urltoken=CFID=831&CFTOKEN=54562187
    Debug Rendering Time: 63 ms

    ok, I found it... re-use of the vaiable username... : -)
    Damn ambiguous error messages.
    Thanks to Ian for taking a look.
    D.

  • Pickup group - Select which phone to pick up

    Hello,
    I've greated a Pickup group with several phones. Suppose several phones inside that pickup group are ringing, is there any way to specify which one you want to pick up?
    Best regards,
    Francisco Sedano.

    No workaround but in CCM 4.2 there is a new feature that will help you to see what is the call that you are going to pickup:
    Call Pickup Notification
    This new feature allows users to receive an audio and/or visual alert when a call rings on a phone in pickup groups in which they are a member. For multiple line phones, the alert is available for pickup groups associated with the primary line only.
    You can configure the following notification parameters in the Call Pickup Group Configuration window:
    •Type of notification (audio, visual, both, or neither)
    •Content of the visual notification message (called party identification, calling party identification, both, or neither)
    •Number of seconds delay between the time the call comes into the original called party and the notification to the rest of the call pickup group members
    You can configure the type of audio notification that is provided when a phone is idle or in use in the Directory Number Configuration window.

  • Cisco phone 3905 pickup group

    Hi,
    i have a CME 10.0 with cisco phone 3905.
    The pickup group don't work correctly. When i press the softkey gpickup, i heard the reorder tone.
    The phone have firmware 9.4.1
    Can help me?
    Thanks,
    Simone

    No workaround but in CCM 4.2 there is a new feature that will help you to see what is the call that you are going to pickup:
    Call Pickup Notification
    This new feature allows users to receive an audio and/or visual alert when a call rings on a phone in pickup groups in which they are a member. For multiple line phones, the alert is available for pickup groups associated with the primary line only.
    You can configure the following notification parameters in the Call Pickup Group Configuration window:
    •Type of notification (audio, visual, both, or neither)
    •Content of the visual notification message (called party identification, calling party identification, both, or neither)
    •Number of seconds delay between the time the call comes into the original called party and the notification to the rest of the call pickup group members
    You can configure the type of audio notification that is provided when a phone is idle or in use in the Directory Number Configuration window.

  • Is there a way to import a group of layers in one project in to another project ?

    Hi all,
    I'm currently using After Effects 5... yes that is version 5, not CS5.
    I'm trying to figure out if I can import a group of layers and their applied Effects in to another project while keeping all the editable attributes and the positions of the imported layers with respect to one another.
    I see that I can import a AEP project file in to another project via IMPORT FILE, but that just brings the raw layers/files in to the project window and does not place the layers in the timeline with all of their positions, Effects and edited attributes, the way that I'd like.
    I also tried Pre-Composing the layers, but that does not leave them editable once a pre-comp has been made... it just makes the 7 layers that I want to import in to another project all one layer and does not leave them editable the way the the 7 layers are separately.
    In Adobe Premiere, there is an actual "IMPORT PROJECT" selection under IMPORT that allows me to import an entire project file in to another project and lets me place the imported project where I want in the new project timeline... that is what I'm trying to do in After Effects.
    I realize that there may be an easy way to do this in one of the newer versions of After Effects, and one might say, "just buy the new AE CS5", but I figured out allot of things on my own so far and I like After Effects 5 for what I'm doing now... maybe later on the newer version.
    Thanks for any input,
    digi

    Hi Andrew,
    No, the two threads that I wrote back to report finding that old 1999 plug-ins package that were removed were...
    Cannot find "Caustics" and "Wave World" Effects in After Effects downloads
    ...origianally at this link, but it is now gone and also missing from my "Discussions" list...
    http://forums.adobe.com/thread/959158
    and
    Is there an underwater effect that can be produced in AE 4.1 ?
    ...originally at this link, and it is also gone and missing from my "Discussions" page...
    http://forums.adobe.com/message/4151249
    I had saved the links to those threads with bookmarks, but they were removed the day after I posted about finding those plug-ins.
    I wanted to get some info from earlier in the thread on one of those and when I went back they both were gone.
    I was able to find those two threads by doing a site-webcach search on Google to see if there was a snapshot of each thread in Google's cache... I did find shapshots of those two thread but they were taken the day that I first posted the questions before any replies or subsequent posts by me were posted.  Below are the Google cache links to those snapshots of those threads' pages, but as you'll be able to see, it only shows my original questions before all the replies by you and others on the forum and my final report of finding the plug-ins package...
    http://webcache.googleusercontent.com/search?q=cache:S06cU1F1-C4J:forums.adobe.com/thread/ 959158%3Fstart%3D0%26tstart%3D0+site:http://forums.adobe.com/thread/959158&cd=1&hl=en&ct=c lnk&gl=us
    http://webcache.googleusercontent.com/search?q=cache:3dtym60qrHcJ:forums.adobe.com/message /4151249+site:forums.adobe.com/message/4151249&cd=1&hl=en&ct=clnk&gl=us
    Having the Adobe forums Gestapo remove those threads is a little like burning old software books... meaning, I guess Adobe just doesn't want people discussing old software downloads, even though I did not post the actual link for the the old "AE 6.0 Bonus Plugin Pack" and "AE 5.5 Power Pack Plug-Ins" that I found.  I only reported back on those threads that I found the plug-ins packages after several lengthy Google searches.  Since those plug-ins packages were no longer available from Adobe, I thought it was quite a find to be able to track them down elsewhere after all this time.  They were 12 and 13 year old plug-ins packages, but they had been posted only in the last couple of years.
    Someone else on one of those threads had also told me that AE 6 plug-ins would not work in AE 5, but that turned out to not be true... I don't remember who that was... maybe that was the person who removed my threads because he/she didn't like having a thread that indicated that he/she was wrong.
    Anyway, thanks for your info again today... very, very helpful.
    digi

  • Missing group members in ADSI & LDAP

    Hi there. I have an AD problem here (obviously :))
    It started by wanting to list all members of a group (recursivly, but that does not matter for now, the problem occurs on a single group).
    I tried this in Powershell, but our AD is still  on 2003, so no AD web services, so no powershell.
    In PHP & Java I got the same results: It only shows 3 members, where there should be 23.
    In Active Directory Computers & Users, these 23 (including a group) are listed on the member tab.
    In ADSI I see only the 3 entries mentioned above in the attribute "member", and the other users don't have the membersOf attribute backlink.
    dsget group -members (-expand) works properly.
    Where do Active Directory Computers & Users and dsget get their information regarding group members from, and how can I access that programmatically via LDAP access from php or Java?

    Sorry, forgot about the Domain Users or the Domain Admins group over the link/image upload issue.
    No, it wasn't these groups.
    But: you were on the right path. The term primary group is what I was missing.
    The group is for one of our roadwarrior subsidiaries, and they are not Domain users as primary group, but the one shown here.
    Do you happen to know which LDAP attributes represent the primary group association?
    The primaryGroupID attriute store the RID of the group that is assigned as the primary group. This was to work around the limitation in Windows 2000 before LVR (Linked-Value Replication) so that more than 5000 users could be member of the same group. (It also
    plays a role for POSIX - Services for Mac clients)
    Enfo Zipper
    Christoffer Andersson – Principal Advisor
    http://blogs.chrisse.se - Directory Services Blog

  • Unable to edit Distribution Group membership via Outlook (works via ECP).

    SITUATION: I am attempting to enable the ability for specified users to edit the membership of Exchange 2010 distribution groups via Outlook 2010.  I have configured permissions via RBAC for them to be able to do this by following the instructions and
    running the script found here:
    http://msexchangeteam.com/archive/2009/11/18/453251.aspx
    After running the script, users specified as group managers are able to edit group membership through the ECP.  But when they attempt to do so via Outlook, they receive the same message that they would see if the permission to edit group membership
    was not enabled:
    "Changes to the public group membership cannot be saved.  You do not have sufficient permission to perform this operation on this object."
    QUESTION:  Does anyone have any idea as to why we are still unable to edit group membership via Outlook, when all the permissions appear to be enabled doing so?

    Click Start
     Collapse this imageExpand this image
    , point to All Programs , point to Exchange Server 2010 , and then click
    Exchange Management Shell .
    At the command prompt, run the following cmdlet:
    New-RoleGroup DistributionGroupManagement -Roles "Distribution Groups"
    At the command prompt, run the following cmdlet:
    Add-RoleGroupMember DistributionGroupManagement -Member <var>UserName</var>
    Open Outlook and try to remove from your distribution list those members that you could not remove before

  • SharePoint Hosted App to Read members of Site owner group, if "Who can view the membership of the group? " is set to Group members only

    Hi,
    Is there a way to read group members of site owner group via SharePoint hosted app . The "Who can view the membership of the group? " is set to Group members only. As per my research SCA can only view the group members of site owner group
    if this settings is applied.
    Thanks,
    Sudhir
    Sudhir rawat

    See this.
    Avoid changing the MaxPageSize LDAP query policy
    http://jeftek.com/219/avoid-changing-the-maxpagesize-ldap-query-policy/
    Regards~Biswajit
    Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights.
    MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, MCTS, Enterprise Admin
    MY BLOG
    Domain Controllers inventory-Quest Powershell
    Generate Report for Bulk Servers-LastBootUpTime,SerialNumber,InstallDate
    Generate a Report for installed Hotfix for Bulk Servers

  • LDAP- When importing a Group it goes into Security Users and not Groups.

    Hello,
    I created a new LDAP Server
    cn=GroupBI,OU=Groups,OU=Systems,OU=Milan,OU=Italy,OU=Countries,DC=u,DC=a,DC=g
    Connection Test was ok.
    The problem is on importing members of my group, on Security Import window instead of having the group drop-down list populated I have the user drop-down list populated with "GroupBI".
    If I import this group (considered as a user by BI) it goes into Security > Users and not Security > Groups.
    This does not make sense.
    I'm sure this "GroupBI" is a group and not a user and the atribute type used is sAMAccountname
    Any help?
    Cheers

    Let me tell how we did Authentication using LDAP
    I havent imported any groups or users once the LDAP is set up and connection was successfull. I simply created the session variables USER DISPLAYNAME EMAIL and mapped to LDAP Variables uid, displayname, mail.
    Authentication is done in this way by mapping the OBIEE variables to LDAP variables instead of importing the groups.
    Now for Authorization I created the groups populated using some db tables and captured the group name and loglevel and applied filters on the group in the rpd for data level and permissions on the group in webcat for object level.
    So just for Authentication purposes I think we can authenticate with out really importing groups as long as you map OB variables to LDAP
    hope it helps
    Prash

  • Configuring pickup groups

    We have a site that has a PagePac unit connected to a FXS port. CM is
    4.1.3sr2.
    When the receptionist steps away / end of day, they forward the main
    number to the overhead night bell.
    The Night Bell is in a pickup group, as are all the phones, so that
    after hours anyone can pickup incoming calls.
    The problem is that because all phones are in the same pickup group, any
    user can pickup anyone else's ringing phone, which they don't want. The
    other issue is that once a user hears the overhead, they press Pickup
    and the incoming call starts ringing at that phone, they get CallerID,
    and then can't hit iDivert to send it back to the main number's VM box
    if they don't want the call. Instead, they have to wait for RNA in
    order for the call to end up in the main number VM.
    I investigated the other pickup options:
    Group Pickup might work, but means that it's now a two-step process to
    pickup a call, but it will allow me to put the phones in one pickup
    group and have the overhead in another pickup group. I would remove
    "Pickup" from the softkey template for the phones.
    I tried to configure OPickup, thinking that I could put the phones in a
    pickup group where the pickup group number was in a a partition that wasn't in their calling search
    space, and have the overhead in an associated pickup group that _was_ in
    their CSS. Doesn't work; CallManager won't let you configure a DN with
    a pickup group whose partition isn't in your CSS.
    Any other ideas on how to implement this functionality?

    Cisco AS recommends "longest idle hunt"mechanism among the members to be the most fair for the hot line staff. For overflow condition, Cisco AS suggest that we use vm dn. However, if you put the vm dn in the longest idle hunt group, you occasionally will have users rolling directly into the vm. To avoid this, create a hunt group with "first available hunt " and put the pilot of the "longest idle hunt" (in a nested fashion) first and then the vm DN (with always route option checked) second.

  • LDAPRealmV2 using group members as entries

    Hi all,
    we have configured our ldaprealm v2 (wls 6.1) to have group members as entries
    below the group as opposed to the normal setup with group members as attributes
    of one group. This has imposed some strange problems. We have several groups mapped
    to one role in our webapps, but only members of some of the groups get access.
    From the debug output of the realm I see that the groups working have a dn like:
    groupName=GROUPA, ou=Groups, dc=common, dc=company,dc=com
    and the ones that don't have a dn like:
    groupName=GROUPB,ou=Groups,dc=common,dc=company,dc=com
    that is the only differences are the spaces. I don't see how this could make such
    a difference. In the LDAP all the groups look exactly the same.
    Does anyone have any experience with this or have seen similar problems
    Our ldap realm is configured like this:
    server.host=someserver;
    server.principal=cn=Manager,dc=company,dc=com;
    user.filter=(&(uid=%u)(objectclass=person));
    user.dn=ou=People, dc=common, dc=company, dc=com;
    membership.scope=sub;
    membership.scope.depth=1;
    membership.filter=(&(member=%M)(objectclass=groupMember));
    group.filter=(&(groupName=%g)(objectclass=Group));
    group.dn=ou=Groups, dc=common, dc=company,dc=com

    Check your attribute precedence in the metaverse for the group objects "member" attribute. Make sure your ADMA is set to the highest precedence. 
    Also ensure that the attribute flow on your FIM MA is an export and not an import. 

  • Copy global group members to local groups

    I have an AD environment with a lot of global groups, all named G-FG-groupname and I would like to move (or copy) the members of these groups to already existing domain local groups with a similar groupname but
    with another prefix which is L-RG-groupname.
    Example, in which Testn can be replaced by any name.
    Members of domain global group G-FG-Test1 have to be moved or copied to domain local group L-RG-Test1
    Members of domain global group G-FG-Test2 have to be moved or copied to domain local group L-RG-Test2
    Members of domain global group G-FG-Test3 have to be moved or copied to domain local group L-RG-Test3
    etc..
    Many thanks!

    Hi Hoffer,
    as Mike already said, use the Searchbase parameter. Here's an example how it could look like in the previous script:
    # Import Module
    Import-Module ActiveDirectory
    # Get old Groups
    $GroupsOld = Get-ADGroup -Filter { name -like "G-FG-*" } -Properties Members -SearchBase "OU=OU TestOU,DC=intra,DC=netzwerker,DC=de"
    # Then for each group do ...
    foreach ($GroupOld in $GroupsOld)
    # Get the name of the new group
    $NewName = "L-RG-" + $GroupOld.Name.SubString(5)
    # Add Group Members
    Add-ADGroupMember -Identity $NewName -Members $GroupOld.Members -ErrorAction 'SilentlyContinue'
    # Remove Members from old group
    Remove-ADGroupMember -Identity $GroupOld -Members $GroupOld.Members -Confirm:$false
    Basically, use the Distinguished name of an Organizational Unit as the searchbase parameter.
    If you want to know the Distinguished Name of a given OU, you can either use the AD Console, or use this command (change the name as necessary):
    Get-ADOrganizationalUnit -filter { name -eq "OU TestOU" } | Select -ExpandProperty DistinguishedName
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Foxfire closed unexpectaly and when i reopened it, all my opened tabs were missing, and most importantly, my group tabs were missing. can i rollback to a previous time in my browsing use?

    foxfire closed unexpectaly and when i reopened it, all my opened tabs were missing, and most importantly, my group tabs were missing. can i rollback to a previous time in my browsing use?

    Install this add-on: https://addons.mozilla.org/en-US/firefox/addon/undo-closed-tabs-button/
    Incidentally, your plugins are out of date which exposes your system to attack.
    Update the following a.s.a.p.
    * Update Firefox via Help | Check For Updates
    * Update Java via http://www.java.com/en/
    * Update Flash via http://get.adobe.com/flashplayer/
    * Update Adobe Reader via http://get.adobe.com/reader/?promoid=BUIGO

  • Hunt Pilot / Pickup Group

    I have a scenario that is giving me a problem with pickup groups and I need some assistance. I have 3 extensions (1410, 1411 & 1412) that are part of a pickup group. That pickup group works fine. However, we have an after hours line group with a hunt pilot of 1420 that rings phones 1410 & 1600(broadcast). When a call goes to 1420 it rings 1410 & 1600 just fine but users at 1411 & 1412 cannot pick up the call ringing on 1410. Says call is not available. Is there a different way to set that up so it can pick up that line? I thought maybe adding 1420 to the pickup group but that does not appear to be an option. We are running CM 5.1.
    Thanks

    Hi Chris,
    Hope all is well with you! You are on the right track with adding 1420 to the Pickup Group,but you are hitting this bug CSCsb12946 which prevents this feature from working (still applicable in 5.1);
    Set enterprise parameter (System->Enterprise Parameters->Cisco Support Use 1) Cisco Support Use 1 to CSCsb42763 (case sensitive)
    This operation added listbox (Route Plan->Route/Hunt->Hunt Pilot->hunt pilot XXXX -> Call Pickup Group) Call Pickup Group.
    From this doc;
    http://www.ciscotaccc.com/kaidara-advisor/voice/showcase?case=K11612191
    1.- Enter
    CSCsb42763 (in mixed case) in the Enterprise Parameter 'Cisco Support
    Use 1' under the new group 'Cisco Support use Only' and click update. Only the value
    CSCsb42763 in this parameter can enable the configuration. Change the
    value to anything else to disable this functionality.
    2. Go to Hunt Pilot Configuration page and select a call pickup group from the Call
    Pickup Group dropdown list and click update.
    CSCsb42763
    Call Pickup fails on Hunt List
    Issue:
    Call pickup fails for hunt list when call is CFA from Route Point in 4.1(2)ES41. This is not the designed functionality for this issue and will break the Call Pickup logic.
    Workaround:
    Use multiple shared lines & CFNA between each shared line.
    Related Bugs
    Call Pickup fails when ringing line list member
    Symptom: Selecting PickUp or GPickUp does not pickup the call from any of the members of a line group. Condition: CM 4.x Workaround: None. Feature not supported. Further Problem Description: Defect CSCsa66224 may appear to have allowed this feature to work in earlier versions.
    Call Pickup from line group member fails after es installed
    Symptom: A call is CFNA to a hunt pilot/line group. The call can no longer be picked up. Conditions: Calls CFNA to a hunt pilot. 4.1(2)ES36. Workaround: None
    Hope this helps!
    Rob

Maybe you are looking for