Events assigned to a Perpetually Updated Distobution Group

We are trying to find a way to create an Outlook (2010, for what its worth; Exchange 2010) calendar event that will be directed to a constantly updated group...
To clarify:
1: We have an Active Directory Distribution Group, let's call it AGENTS.
2: We want to assign a repeating event for all users in the AGENTS group.
3: Users are rotated in and out of the AGENTS group constantly.
How can we set up the event so that as users are added or removed from this group we do not have to resend the event?
Presently, it appears the only way to get the event to a new member of the group is to send the event again. Is there anyway to keep this automatic?
I can understand if this is not clear; by all means ask any questions so I can try to do a better job of clarifying the position.
Thank you!

Hi,
Currently there's no such method to make the event sent to new members automatically.
We need to send the event at regular intervals, choose Send updates only to added or deleted attendees when sending update.
Thanks,
Melon Chen
Forum Support
Come back and mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback on our support, please click
here

Similar Messages

  • How to update People Group KFF Segments in Assignment Form

    Hi Gurus,
    Please help me on how to update people group KFF individual segments on assignment form.
    Please provide sample code/reference.
    Thanks,
    Raghava.

    Hi Vignesh,
    I have tried the api using below code. But im getting the error like below:
    ORA-20001: FLEX-VALUE DOES NOT EXIST: N, VALUE, Teachers, N, SEGMENT, PENSION_SCHEME_ESCH, N, VALUESET, GEN_PENS_SCHEME_LOOKUP
    ORA-06512: at "APPS.HR_ASSIGNMENT_API", line 16616
    ORA-06512: at line 22
    Code:
    DECLARE
    l_people_group_id number;
    l_special_ceiling_step_id number;
    l_ovn number;
    l_soft_coding_keyflex_id number;
    l_group_name varchar2(9000);
    l_effective_start_date date;
    l_effective_end_date date;
    l_org_now_no_manager_warning boolean;
    l_other_manager_warning boolean;
    l_spp_delete_warning boolean;
    l_entries_changed_warning varchar2(9000);
    l_tax_district_changed_warning boolean;
    l_concatenated_segments varchar2(9000);
    l_gsp_post_process_warning varchar2(9000);
    BEGIN
    l_ovn:=11;
    --l_people_group_id:=966;
    l_soft_coding_keyflex_id:=null;
    l_special_ceiling_step_id:=null;
    hr_assignment_api.update_emp_asg_criteria
    (p_effective_date =>TO_DATE('08-SEP-2012')
    ,p_datetrack_update_mode =>'CORRECTION'
    ,p_validate =>FALSE
    ,p_assignment_id =>37325
    --,p_segment1 =>'Local Government Conditions (Green book)'
    --,p_segment2 =>'R'
    ,p_segment3 =>'None'
    ,p_object_version_number =>l_ovn
    ,p_special_ceiling_step_id =>l_special_ceiling_step_id
    ,p_people_group_id =>l_people_group_id
    ,p_soft_coding_keyflex_id =>l_soft_coding_keyflex_id
    ,p_group_name =>l_group_name
    ,p_effective_start_date =>l_effective_start_date
    ,p_effective_end_date =>l_effective_end_date
    ,p_org_now_no_manager_warning =>l_org_now_no_manager_warning
    ,p_other_manager_warning =>l_other_manager_warning
    ,p_spp_delete_warning =>l_spp_delete_warning
    ,p_entries_changed_warning =>l_entries_changed_warning
    ,p_tax_district_changed_warning =>l_tax_district_changed_warning
    ,p_concatenated_segments =>l_concatenated_segments
    ,p_gsp_post_process_warning =>l_gsp_post_process_warning
    END;
    Commit;
    Please help me on how to update the individual segment.
    Thanks
    Raghava

  • In material master standerd cost value  not updating in group currency

    hi gurus
    In material master accounting 1 tab, under price and values table. standerd price is not updating in group currency.
    Can you sugest me how to resolve this issue
    this hapend only for one material
    can you sugest me to resolve this
    regards
    gangadhar

    Hi,
    As per My Knowledge,Wht ever currency is assigned as company code currency , tht will only be updated in Material Master as Per standard.
    Currect me if Iam worng.
    Thanks
    Goutam

  • In material master standerd price field not updating in group currency

    In material master accounting 1 tab, under price and values  table. standerd price is not updating in group currency.
    Can you sugest me how to resolve this issue

    Hi,
    As per My Knowledge,Wht ever currency is assigned as company code currency , tht will only be updated in Material Master as Per standard.
    Thanks
    Goutam

  • Updating people group segments

    Hi,
    I'm very new to PL/SQL and want to run a sql script to update people group segments based on grade step and ceiling points
    I've searched around on metalink and have the beginnings of something but maybe I need to use an extra cursor at the beginning or something? Could anyone help?
    Thanks
    declare l_people_group_id NUMBER;
    select paf.assignment_id, paf.object_version_number, paf.special_ceiling_step_id
    into p_assignment_id, l_out_object_version_number, l_special_ceiling_step_id
    from per_assignments_f paf,
    pay_people_groups ppg
    where p_person_id = paf.person_id
    and paf.people_group_id = ppg.people_group_id
    and p_effective_date between paf.effective_start_date and paf.effective_end_date;
    cursor get_current_ceiling_assignment is
    select asg.*, ast.per_system_status
    from per_assignment_status_types ast,
    per_assignments_f asg,
    per_grade_spines_f pgsf,
    per_spinal_point_steps_f pspsf
    where assignment_id = p_assignment_id
    and ast.assignment_status_type_id = asg.assignment_status_type_id
    and pgsf.grade_spine_id = pspsf.grade_spine_id
    and pspsf.step_id = pgsf.ceiling_step_id
    and asg.grade_id = pgsf.grade_id
    -- and p_effective_date between effective_start_date and effective_end_date;
    and asg.effective_start_date = (select max(effective_start_date)
    from per_all_assignments_f
    where assignment_id = asg.assignment_id);
    begin
    for v1 in get_current_ceiling_assignment loop
    l_out_object_version_number := v1.object_version_number;
    l_special_ceiling_step_id := v1.special_ceiling_step_id;
    l_datetrack_update_mode := 'UPDATE';
    hr_assignment_api.update_emp_asg_criteria
    p_validate => false,
    p_effective_date => p_effective_date,
    p_datetrack_update_mode => l_datetrack_update_mode,
    p_assignment_id => p_assignment_id,
    p_object_version_number => l_out_object_version_number,
    p_special_ceiling_step_id => l_special_ceiling_step_id,
    p_segment5 => NULL,
    p_segment6 => NULL,
    p_group_name => l_group_name,
    p_effective_start_date => l_out_effective_start_date,
    p_effective_end_date => l_out_effective_end_date,
    p_people_group_id => l_people_group_id,
    p_org_now_no_manager_warning => l_org_now_no_manager_warning,
    p_other_manager_warning => l_other_manager_warning,
    p_spp_delete_warning => l_spp_delete_warning,
    p_entries_changed_warning => l_entries_changed_warning,
    p_tax_district_changed_warning => l_tax_district_changed_warning
    end loop;
    end;

    I'm trying to update two people segments when the grade step reaches the ceiling point.
    I'm not expecting anything to be returned in the query but want the api to update the relevant assignment records.
    I'm using 11.5.10 apps, 10g database. I just think I'm missing something fundamental with the constrcution of my script here

  • VCenter Single Sign-On Permissions Assignment for Members of Multiple AD Groups

    Hi all,
    I ran across an interesting issue whilst assigning permissions using Active Directory groups within vCenter.
    Environment
    1 vCenter Appliance managing 2 Datacenters (1 Datacenter with 2 Clusters, 1 Cluster with 2 Hosts, 1 Cluster with 4 Hosts, 1 Datacenter with 1 Cluster containing 1 host.) 
    vCenter has an SSO Identity Source configured using Active Directory (Integrated Windows Authentication).
    vCenter and all hosts are domain members of child1.parent.com.au
    The Active Directory Forest contains a parent domain, let's call it parent.com.au, and two child domains child1.parent.com.au and child2.parent.com.au.
    Although the Identity Source was configured for my child domain, using child domain credentials it added the parent domain and subsequently both child domains. Okay, so there are trusts, I'm okay with this. The interesting issue is yet to come.
    Two Active Directory Groups were added. Deployment Admins A and Deployment Admins B.
    Two vCenter Roles were created with similar names. VM Deployers A and VM Deployers B
    Deployment Admins A was assigned the Deployers A role to Cluster A (Cluster, VM Folders, Datastore Folders)
    Deployment Admins B was assigned the Deployers B role to Cluster B (Cluster, VM Folders, Datastore Folders)
    Note: No objects overlap. All hosts, vms and datastores are isolated to each cluster.
    So the next step is assign an child1 AD User to the Deployment Admins A group. As expected the user using credentials child1\user can connect to vCenter via the VI Client and see all the relevant objects. Great!
    So now I assign the same child1 AD user to the second AD group Deployment Admins B. Now we wait and nothing happens. The permissions don't change. The user logs out and logs back in using the same credentials and still the permissions don't change.
    So I remove the user from both AD groups and get them to log out and in and sure enough they can't.
    This time I assign the child1\user account the roles as set out previously. So child1\user account is assigned to both roles in place of each AD Group. The expected behaviour is observed. As I add the second permission set, the objects become visible within the VI client.
    Okay so now I remove the explicitly assigned permissions and reassign via the groups and this time I ask the user to log in via the UPN ([email protected]). Whoa! It works.
    So it seems that assigning permissions for the same user in multiple AD groups across multiple roles can only be achieved when the user uses a UPN login to the VI Client.
    Has anybody else found this to be the case?
    If so, were you able to fix it?

    Hello,
    I have found this to be the case and think it is more due to SSO than AD. If you look at how you login as the 'administrator' when you first configure SSO it is in effect using UPN. I would raise this as a case to VMware and make sure they are aware of the issue. There are some issues with SSO being worked each day.
    Best regards,
    Edward L. Haletky
    VMware Communities User Moderator, VMware vExpert 2009, 2010, 2011,2012,2013,2014
    Author of the books 'VMWare ESX and ESXi in the Enterprise: Planning Deployment Virtualization Servers', Copyright 2011 Pearson Education. 'VMware vSphere and Virtual Infrastructure Security: Securing the Virtual Environment', Copyright 2009 Pearson Education.
    Virtualization and Cloud Security Analyst: The Virtualization Practice, LLC -- vSphere Upgrade Saga -- Virtualization Security Round Table Podcast

  • Cannot assign an email address to SharePoint group (distribution groups)

    Hello,
    I configured incoming email awhile back in our SharePoint 2010 environment and it works great. I can assign an email address to a list and the necessary contact is created in AD in the OU I configured for incoming email and of course the item emailed in
    is added to the list.  However, if I try to assign an email address to a SharePoint group to create a distribution group, the following happens:
    The following error has occurred while attempting to contact the Directory Management Service: The request failed with HTTP status 401: Unauthorized.
    From what I've found on Technet and other resources, if incoming email works as expected, assign an email address to a group should work without issue but this obviously isn't the case.  I've dug around in the 14 hive and pretty much the same exact error
    is found there (with just a little more detail):
    System.Net.WebException: The request failed with HTTP status 401: Unauthorized.
    at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
    at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
    at Microsoft.SharePoint.DirectorySoap.SPDirectoryManagementProxy.CreateDistributionGroup(String Alias, String Name, String Description, String ContactCN, RequestInfo Info, DistributionGroupFlags Flags)
    at Microsoft.SharePoint.SPGroup.CreateDMS(String dlAlias, String friendlyName, String description, String[] members, String requestor, String justification, Int32& jobId)
    Any ideas what this could be?  I'd imagine the timer service account has the appropriate permission on the OU as it can create objects for lists with incoming email enabled without issue.

    For the issue with group members who are not added during the creation process ...
    I followed this Technet article : Configure
    incoming email for a SharePoint 2013 farm
    But in the paragraph "Configure AD DS to be used with Directory Management Service", I added
    delegation of control for the following common tasks :
    Create, delete and manage groups
    Modify the membership of a group
    The distribution group gets created in AD with members in SharePoint 2013 ! It should work with 2010 as well…
    PS : Do not forget to set up these rights, not only for the Central Administration Application pool Identity account, but for all
    your Web Applications!

  • Update purchasing group in scheduling agreements

    Hi gurus,
    I'm trying to update purchasing group field in scheduling agreements, which are time-independent (EKKO-STAKO = ' ').
    In my environment, I'm not authorized to use CALL TRANSACTION statement.
    If possible, I'd need a way that works both in 4.6c and 6.0 versions.
    I have tried several options, but none works:
    -BAPI_SAG_CHANGE: "Scheduling agreements with time-independent conditions are not supported" (OSS note 1046794) (Also, this is not available in 4.6c)
    -BAPI_SCHEDULE_MAINTAIN: "Scheduling agreements with time-independent conditions are not supported" (OSS note 1046794) (Also, this is not available in 4.6c)
    -BAPI_AGREEMENT_MAINTAIN: Does not have the possibility to change field 'purchasing group'. (Moreover, it internally performs a CALL TRANSACTION).
    -ME_UPDATE_AGREEMENT_PO: I've been not able to change field 'purchasing group'.
    I'd be grateful about any hint. Thanks in advance!

    In case it is useful for anyone else, I have solved the problem using:
    CALL FUNCTION 'ME_UPDATE_DOCUMENT'
    Thanks anyway!

  • How to assign a Sales Org and Product group

    all the config have been maintained (creating the hierarchies/categories, assign the set types to categories etc.) under IMG->Cross-Application Components->SAP Product.
    Also assigned the set type for sales data/product group for category MAT_DIEN.
    But the fields from these section are greyed out when I try creating a product (not able to assign the sales org, or product group)
    Edited by: Agarwal Ameet on Aug 9, 2010 9:56 AM

    Dear Sun,
    One way is:
    Maintain the required setting in T. Code: VKOA.
    Another way is:
    Create an Internal Order (T. Code: KO01) with required Field-entries in
    Tab: Assignment --> Profit Center; and
    Tab: Period-end Closing --> Cost Center ( or G/L account).
    and attach it to your Sales Order.
    To know more about Internal Order Processing, refer:
    [Internal Order|http://help.sap.com/saphelp_erp2005vp/helpdata/en/a9/ab7f68414111d182b10000e829fbfe/frameset.htm]
    Or, consult FI-Personnel at your end.
    Best Regards,
    Amit
    Note: Also, sharing one document for knowledge-sake:
    [Acct assignmt logic sales order proc.|http://www.saptechies.com/acct-assignmt-logic-sales-order-proc-rem/]

  • BAPI_ACC_INVOICE_RECEIPT_POST - Updating Customer Group

    Does anyone know how i can update 'Customer Group' in the profit segment part of a document using the above BAPI.
    Can it be done ?
    Thanks

    hi
    I'm searching a BAPI for F-53.
    then i found your thread.
    but i don't know what data to be filled in it.
    can u please provide me some sample data that needs to be filled in this bapi.
    awaiting your reply.
    Regards,
    Suman.

  • User assignment to purchasing organisation and purchasing groups

    Dear Experts,
    My issue is related to user assignment to purchasing organisation and purchasing groups.
    According to the project requirement, we are using central purchasing organisation and we should create the purchasing organisations and purchasing groups locally. it is not reflected from the back end systems through RFC.
    Also we have one more team working with indirect materials and they also use SRM. They have already created the organisation model. Two projects are inter-related and belongs to same department in the company, but main different is one uses direct and the other in-direct materials.
    Now we should create our purchasing organisation and purchasing groups and assign the users to it.
    If we create it separately means not uder the main root and assign the users, we are able to create shopping cart till the contract. But when i create the new purchasing organisation and purchasing groups under the main root which is created for other project which deals with in-direct materails, i am not able to create shopping cart with the user. I am getting the error
    ' Process scheme could not be found
    Please let me know how to deal with this scenario. here i need to add the purchasing organisation and purchasing groups under main root because of the reason that in the other project, purchasing organisation and purchasing groups defined needs to be accessed by our users as well. I mean the users should be able to access all the purchasing organisation and purchasing groups created under root node which gets the purchasing organisation and purchasing groups from the back end systems and the purchasing organisation and purchasing groups we created manually since we cant get it from back end system since it is central purchasing organisation.
    Please asvise
    Best regards,
    Srinath
    Edited by: srinath_Vijaya on May 27, 2010 4:21 PM

    Hello Masa,
    Thanks very much for your time and solution.
    Actually the problem was something else and was fixed.
    The reason for getting error 'Process schema was not yet defined' is because of missing definition of process schedma for the workflow since the process based workflow setting has been activated.
    So this has been resolved by copying the sap standard customizing BC set for SRM workflow using transaction SAPR20 and then process schema for workflow got configured or copied automatically from SAP BC set and the error was removed.
    Also the reason for error with user was that no purchaser assignment was done to the purchasing organisation and now it has been done and the users can access the SRM and create shopping cart and the contract.
    Regards,
    Srinath

  • Assigning of authorization object to authorization group

    I have created an authorization object and I have assigned this to already exsiting authorization group.I would like to assign the authorization object to a new  authorization group.Please confirm how to create an authorizaton group and assigning a authorization object to this new authorization group.

    hi,
    I have got a pdf related to this.
    I shall send that to you if i can get ur mail id.
    I too havent tried this. I dont have any authorizations to do with my server.
    Plz follow the following steps:
    1. Create a user (for example for SAP DEV, TEST, or PRD systems).
    2. Open the SAP Profile Generator (transaction PFCG) available in SAP R/3 versions 4.6 and above.
    3. Create an Activity group (Role since SAP 4.6C), for example ZBODI_ROLE.
    4. Enter a description for the role.
    5. Go to the Authorizations tab and click Change authorization data.
    6. On the Change Role: Authorizations screen, click the Manually,toolbar icon.
    7. The Manual Selection of Authorizations window opens.
    8. Type in the following authorization objects.
    S_ADMI_FCD*
    S_BTCH_JOB
    S_DEVELOP*
    S_DATASET
    S_PATH
    S_RFC
    S_TABU_DIS
    S_TCODE
    S_RS_ADMWB — for SAP BW
    9. Click OK
    10. Return to the Change Role: Authorizations screen.
    11. Manually configure components by entering the values  that support Data Integrator operations include:
    • Administration
    • Batch
    • BW loading
    • Development
    • File access
    • File system access
    • RFC calls
    • RFC calls in BW
    • Table source access
    • Transactions
    12. To complete the security profile, click the Back icon (or press F3), select
    the User tab, enter your SAP user ID for Data Integrator and click the Save icon.
    Regards,
    Sailaja.

  • Windows 2008 r2 Server: Cant update the group belonging

    Hello,
    I have a Windows 7 client computer which is administered by a Windows 2008 Server.
    When I try to change the local grants of the user account in that client computer,  it appears to me the following message:
    "Cant update the group belonging for NameDomain\user"
    As result I cant change local grants for the user. I cant change his status from administrator to user of that machine.
    Can anybody tell me how can I solve this issue?
    Thanks in advance
    Regards

    Hi,
    Thanks for your feedback. Did you mean that the issue exists after you removed
    DameWare tools?
    Please make sure that you have more than one administrator account on your computer, or you can't change it to a standard account since Windows requires at least one administrator account on a computer.
    If you have another administrator account, you can try to use it to change the user’s account type.
    Best regards,
    Susie

  • Update AD groups via resourceObjectUpdate?

    Hello idm experts,
    I need to update to update an object in AD - move in into a different container, update some attributes and add AD security groups.
    Is that possible to do all at once via updateResourceObject com.waveset.provision.WorkflowServices call?
    Trying to do it - rename (move to different OU) is correct, modifying attributes is correct. Group membership gets completely wiped out.
    Here is the user object I'm passing:
    <Object>
    <Attribute name='user'>
    <Object>
    <Attribute name='attributes'>
    <Object>
    <Attribute name='description' value='xxxx111'/>
    <Attribute name='groups'>
    <List>
    <String>CN=na_approver,OU=FWD Groups,OU=Ldap Data,OU=INT,DC=msqa,DC=qa,DC=ms,DC=com</String>
    <String>CN=NA_BranchAdmin1,OU=Common Groups,OU=ISG,OU=INT,DC=msqa,DC=qa,DC=ms,DC=com</String>
    </List>
    </Attribute>
    <Attribute name='objectGUID' value='106d443e62585a469d0ddf6dfdbaacfe'/>
    <Attribute name='sAMAccountName' value='xxxxxtest09'/>
    <Attribute name='ws_newAccountId' value='cn=paveltest0909,ou=gwm,ou=exchange,ou=isg,ou=int,dc=msqa,dc=qa,dc=ms,dc=com'/>
    </Object>
    </Attribute>
    <Attribute name='objectId' value='CN=xxxxxtest0909,OU=GWM,OU=Exchange,OU=ISG,OU=INT,DC=msqa,DC=qa,DC=ms,DC=com'/>
    <Attribute name='objectType' value='User'/>
    <Attribute name='resourceId' value='#ID#Resource:AD'/>
    </Object>
    </Attribute>
    </Object>
    And here is the call:
    <Action name='Update User' application='com.waveset.provision.WorkflowServices'>
    <Argument name='op' value='updateResourceObject'/>
    <Argument name='objectId' value='$(iden)'/>
    <Argument name='objectType' value='User'/>
    <Argument name='object' value='$(ldapObject.user)'/>
    <Argument name='resourceId' value='#ID#Resource:AD'/>
    <Argument name='action' value='update'/>
    <Return from='applicationError' to='applicationError'/>
    </Action>
    Update seems to be OK, the object is moved, attributes are updated, but group membership is wiped out.
    WavesetResult contains this:
    <WavesetResult>
    <ResultItem type='result' status='UI_MSG_SEVERITY_OK'>
    <WavesetResult>
    <ResultItem type='ACCOUNT_RENAMED'>
    <String>CN=xxxxxtest0909,OU=GWM,OU=Exchange,OU=ISG,OU=INT,DC=msqa,DC=qa,DC=ms,DC=com</String>
    </ResultItem>
    <ResultItem type='message' status='UI_MSG_SEVERITY_OK'>
    <Message id='WF_RESOURCE_OBJECT_UPDATED'>
    <String>WF_RESOURCE_OBJECT_TYPE_USER</String>
    <String></String>
    </Message>
    </ResultItem>
    </WavesetResult>
    </ResultItem>
    </WavesetResult>
    What happened with group membership? Is there something I'm missing in object parameters or WorkflowServices parameters?

    You can "nest" an AD group in a SharePoint group and that will work just fine. What does not work is if you add users to an AD group, then nest that group in another AD group, and apply that second AD group to SharePoint. SharePoint is unable to crack open
    the nested group to parse the users.
    What do you mean by Site Collection Web Policy? Policies are applied at the Web Application level (in Central Administration).
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Assign a local logon script using Group Policy

    Is there a way to assign a local logon script using Group Policy? The reason I ask is that I wrote a logon/logoff script that will record the date/time, user, and computer for everyone who logs on to any machine in the domain. Right now it's set on a domain
    GPO, so it works great for domain accounts, but I'd like to extend that functionality to local accounts as well. The only way I know how to do that would be to set my script to run using the local policy. Since I don't want to manually go around to all 400+
    machines in my domain, I would rather find a simpler way of modifying the local policy. Any ideas?

    Martin, thank you for your response. That's exactly the kind of out-of-the-box answer I was looking for, unfortunately, it looks like I can only do that for Logon scripts. I don't see an option for Logoff. (Maybe the took the Logoff functionality out?
    This article says there should be a Logoff item in the GPO, but they're talking about Windows 2000 in that article.)
    Matthias, I started playing around with what you said, and I noticed that the "Scripts" key only seems to show up on my Windows 7 clients. The XP workstations don't have that key. Plus I did some testing, and I think I can do it without having
    to mess with the registry at all.
    So I think I have a workable solution at the moment. I found
    this article that talks about copying Local Polices from one computer to another. I tried manually setting the Logon/Logoff scripts in the Local policy on a fresh machine. From that reference computer I copied the Scripts folder out of the %SYSTEMROOT%\System32\GroupPolicy\User
    directory. It also created a gpt.ini file in the %SYSTEMROOT%\System32\GroupPolicy directory. The gpt.ini file contained an attribute called gPCUserExtensionNames, and one called Version. The gPCUserExtensionNames attribute specified two GUIDs, which
    I assumed to be the GUIDs that identify the Local Policy. I tried manually creating the Local policy on several different machines, with several different Operating Systems, and those GUIDs always seemed to be the same (not sure why). So I copied the gpt.ini
    file off the reference machine as well. When I placed all of the files I copied from the reference machine on to a new machine, everything seemed to work just fine (no registry modification necessary), with one caveat. It seemed to be running the script twice.
    So I went back into the gpt.ini file and deleted one of the GUIDs listed under gPCUserExtensionNames, and now the script runs just once!
    So I think this solution will work ok for me. We don't have any other Local Policies in place, so demolishing all existing Local Policies is perfectly acceptable in my case. I'm just not sure if I'm doing any damage by copying the gpt.ini file from a reference
    machine (if anyone can expand on how that works, I would appreciate the peace of mind that I'm not making things worse by doing this). So all I need now is to write a Startup script, or an SCCM package to deliver the Logon scripts and associated ini files
    to the appropriate location on all the domain PCs. Easy enough to do on my own. If anyone knows of a reason why this method is a bad idea, please post here. I'll be testing it out on a handful of PCs in the mean time.
    Hi Guys,
    Will this solution work for my case? I have a forcereboot batch script that I need to load on the local policy (logoff script through GPEDIT) however I can only load it manually. I need to do it on multiple machines (approx 5000 computers). I am having
    trouble doing it using powershell. Is there any other options to do it? 
    Will I have to use the same GUID's you mentioned on the gpt.ini file? (gPCUserExtensionNames=[{42B5FAAE-6536-11D2-AE5A-0000F87571E3}{40B66650-4972-11D1-A7CA-0000F87571E3}] since it refers to the local script and how about the version on the gpt.ini file?
    Thanks in advance.
    Dash
    https://social.technet.microsoft.com/Forums/en-US/1f636042-bcff-498d-93c0-e1aa89f80961/how-to-load-a-script-on-the-local-group-policy-on-multiple-computers?forum=mdopagpm

Maybe you are looking for

  • Compare several records in the same table

    Hello, i´m writing a BAT file so i can export some information that i query. I have a automatic integration that from time to time checks if there is any new client´s and generates a trigger. If an error ocurs i it will repeat the process until the c

  • U-verse voice and multiple phone lines for small business

    Our business has one phone number we want the clients to have, but four phone lines--each with a different number. Consequently, when we call out from one of the phone lines, one of the four numbers shows up, but we only want our one business number

  • Is it possible to upgrade RAM in MacbookAir 4,1?

    Is it possible to upgrade RAM in MacbookAir 4,1 Late 2011, 2G to 4G?

  • Order Sequence at Confirmation

    Dear All, I want that if i confirm a production order then it should give error if order sequence is not adhered to. i have already done setting in OPK4 but system is allowing me to confirm the 2nd operation directly. Please guide me

  • New Cruzer Glide 128 Gb. Not Working/ Not Installing

    I just bought a new Cruzer Glide 128 Gb flash drive, but it's not working in my laptop. It says that it's compatible with Windows Vista, 7, 8 and Mac, my laptop is running Windows Vista Home Edition. Whenever I connect it to any on my usb ports, it m