IE GPO Settings, Site to Zone assignment list

Hello there,
I have a question. At our firm, we used to enroll windows policies from Novell. Nowadays, we use the marvelous MS AD.
Since we use AD to enforce our windows policies some differences in the effect of certain settings have come to my attention. 
We have a site to zone assignment list, in which we state that certain sites belong to a certain zone. Before we used AD we had a site called awtuing01 which was in the Intranet zone. Since we use AD GPO, in which we also put that same zone assignment, things
started to fail. It (the webapplication) started to prompt for permissions while these prompts where disabled in that specific zone. So it seemed as if the site was no longer in that zone. After some searching I found out that the pages that where causing
these prompts where from a server also called awtuing01 but with an exotic port like 8891. So i started wondering if it could be that only ports 80 (in case of http) and 443 (in case of https) where allowed to be in that zone, and not that exotic port. So
I added awtuing01:8891 to the intranet zone in the site to zone assignment list and voila, things worked normal again.
Now my question is, is the assumption correct that when you manually set a site in the Intranet zone, it allows different ports and when you enforce this with a GPO it doesnt? Or is this a setting I am overseeing?
Any help would be greatly appreciated!
Greetings from the Netherlands.
Marijn Wijbenga

Hi,
Apologize for the confusing description. What I mean is when we configure the site list using
Security Zone and Content Rating under Internet Explorer Maintenance,
it gives ability to the users to add their own sites as well on client machines.  Sites applied through IE maintenance policy and added by users manually will get appended.
For another policy The Site to Zone Assignment List policy setting,
When we configure this GPO then users will not be able to add their own sites to any zone. Options to add sites on client machine will be greyed out.
Detailed information is shared within this blog:
How to configure Internet Explorer security zone sites using group polices
Best regards
Michael Shao
TechNet Community Support

Similar Messages

  • GPO for changing privacy settings for Internet Zone

    Hi I want to change the privacy setting for the Internet Zone from Medium to Low. Can't seem to find the right location in the GP. Can someone please point me in the right direction.

    Hi,
    If we want to change the privacy setting for the Internet Zone from Medium to Low via Group Policy, please navigate to
    User Configuration - Windows Settings - Internet Explorer Maintenance – Security
    in GPMC. On the right-pane, please double-click Security Zones and Content Ratings. On the dialog box, we should choose "Import the current security zones and privacy settings" under
    Security Zones ad Privacy and click Modify Settings
    to modify the level.
    The article Ravikumar provided is very useful to us for configuring the settings via Group Policy, please also refer to it.
    Regards,
    Andy
    Using IE maintenance is the old way which I don´t recommend when implementing IE9 or newer. I wonder, why there is no way to configure this with traditional GPO? 

  • How can I parse GPO settings and get the GPOApplyOrder?

    I have created a script that will search all GPO's in the domain and parse only those which have Drive Map settings and writes the information to a .csv file.  I have tried to figure out a way to get the GPOApplyOrder to no avail.  The closest
    I have come to any sort of reasonable output is
    "@{GPOSettingOrder=}", which is better than the nothing I had been getting.  I think it would be really helpful if I could sort on the appy order so I could see the flow of the applied settings.  Here is what I have.
    # ==============================================================================================
    # NAME: GetGPO_DriveMappings.ps1
    # AUTHOR: Mike
    # DATE: 6/17/2014
    # Updated: 7/29/2014
    # COMMENT: This script will get all the GPO's in the domain. It will parse only the GPO's that have drive map settings.
    # The results are written to GetGPO_DriveMappings.csv
    # This script is written to be run from the domain that the GPO(s) is in.
    # NOTE: The script will not perform any group provisioning.
    # ==============================================================================================
    # set Variables and load assemblies
    ImportSystemModules
    Import-Module GroupPolicy
    [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
    $ScriptPath = "R:\Procedural Instructions\Scripts\Get AD Object Info"
    # Get drive map settings from all GPOs.
    Function Get-DriveMappings
    # File listing the drive mappings via GPO.
    $ExportFile = "GetGPO_DriveMappings.csv"
    # Creates .csv file for logging.
    $Header = "GPO Name,Drive Letter,Action,Apply Order,Drive Path,Group,OU,User"
    Set-Content -Path $ScriptPath\$ExportFile -Value $Header
    $GPO = Get-GPO -All
    ForEach ($Policy in $GPO)
    $GPOID = $Policy.Id
    $GPODom = $Policy.DomainName
    $GPODisp = $Policy.DisplayName
    If (Test-Path "\\$($GPODom)\SYSVOL\$($GPODom)\Policies\{$($GPOID)}\User\Preferences\Drives\Drives.xml")
    [xml]$DriveXML = Get-Content "\\$($GPODom)\SYSVOL\$($GPODom)\Policies\{$($GPOID)}\User\Preferences\Drives\Drives.xml"
    ForEach ( $MapDrive in $DriveXML.Drives.Drive )
    $GPOName = $GPODisp
    $DriveLetter = $MapDrive.Properties.Letter + ":"
    $DrivePath = $MapDrive.Properties.Path
    $DriveAction = $MapDrive.Properties.action.Replace("U","Update").Replace("C","Create").Replace("D","Delete").Replace("R","Replace")
    $GPOApplyOrder = $MapDrive | Select GPOSettingOrder
    $Filters = $MapDrive.Filters
    $FilterOrgUnit = $null
    $FilterGroup = $null
    $FilterUser = $null
    ForEach ($FilterGroup in $Filters.FilterGroup)
    $FilterGroupName = $FilterGroup.Name
    ForEach ($FilterOrgUnit in $Filters.FilterOrgUnit)
    $FilterOrgUnitName = $FilterOrgUnit.Name
    $FilterOrgUnitName = $FilterOrgUnitName -Replace (",",";")
    ForEach ($FilterUser in $Filters.FilterUser)
    $FilterUserName = $FilterUser.Name
    $ExportText = "$GPOName,$DriveLetter,$DriveAction,$GPOApplyOrder,$DrivePath,$FilterGroupName,$FilterOrgUnitName,$FilterUserName"
    Add-Content -Path $ScriptPath\$ExportFile -value $ExportText
    # --End of Function: Get-DriveMappings--------------------------
    # Notifying that the scripted finished.
    Function Script-Finished
    [System.Reflection.Assembly]::LoadWithPartialName(“System.Windows.Forms”)
    [Windows.Forms.MessageBox]::Show(“Script completed successfully”,"GetGPO_DriveMappings.ps", [Windows.Forms.MessageBoxButtons]::OK, [Windows.Forms.MessageBoxIcon]::Information)
    # --End of Function: Script-Finished--------------------------
    # Main Code:
    # Execute the functions
    $ErrorActionPreference="SilentlyContinue"
    Get-DriveMappings
    Script-Finished
    $ErrorActionPreference="Stop"
    Thanks to all in advance.

    I am looking for the order in which the drive map settings are applied. Truly the GPOSettingOrder value. I guess was thinking that it was the order that the drives were mapped so that is what
    I named the variable. In the middle of it all it made sense, now with your question, from the outside looking in, it doesn't. My apologies.
    -<ExtensionData>
    -<Extension xsi:type="q3:DriveMapSettings" xmlns:q3="http://www.microsoft.com/GroupPolicy/Settings/DriveMaps">
    -<q3:DriveMapSettings clsid="{8FDDCC1A-0C3C-43cd-A6B4-71A6DF20DA8C}">
    -<q3:Drive clsid="{935D1B74-9CB8-4e3c-9914-7DD559B7A417}" bypassErrors="1" uid="{B7F4229B-9A38-4A52-A987-7FB0CA53BF26}" changed="2013-11-19 18:03:50" image="3" status="P:" name="P:">
    <q3:GPOSettingOrder>1</q3:GPOSettingOrder>
    <q3:Properties letter="P" useLetter="1" persistent="1" label="" path="\\---------------------\APPS" userName="" allDrives="NOCHANGE" thisDrive="NOCHANGE" action="D"/>
    -<q3:Filters>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="AND"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    <q3:FilterOrgUnit name="OU=---------------,DC=com" directMember="0" userContext="1" not="0" bool="OR"/>
    </q3:Filters>
    </q3:Drive>

  • Click close button in infopath form shuld be redirect to site page not a list by default

    Hi
    I am custmizing a list in infopath
    i created a view created by user and
    i created a site page and assigned a created by user view to a webpart on this page
    here i need when this list opens in edit mode , when i click close button this form shuld be redirect to site page
    now its rediricting to list>all items
    all items is default view for this list
    adil

    Hi adil,
    According to your description, my understanding is that you wanted the redirect to another page once InfoPath form had been closed.
    You can add a Content Edit web part above the InfoPath form web part with the following code:
    $(document).ready(function(){
    if($('#DialogFinalMessage').children().length>0)
    window.location.href = "<Desired destination page URL>";
    For more information: 
    http://shareapointkiran.blogspot.in/2011/12/infopath-form-redirect-to-any-page-once.html
    Here are some similar posts for you to take a look at:
    http://blogs.technet.com/b/sharepointwarrior/archive/2012/03/16/sp-2010-how-to-redirect-infopath-form-to-a-custom-thank-you-page.aspx
    http://www.graphicalwonder.com/?p=666
    http://social.technet.microsoft.com/Forums/en-US/1e732bb8-9090-40c4-b1a3-1dad8960c3c1/redirecting-to-the-home-page-when-clicking-on-close-button-of-the-item-in-a-list?forum=sharepointcustomizationprevious
    http://social.technet.microsoft.com/Forums/en-US/69839309-d6d9-4a25-9100-82b2393f9054/click-on-infopaht-close-button-redirect-to-another-page?forum=sharepointgeneralprevious
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • GPO settings are not applied

    Hi everyone
    I am using WSUS in my internal network.
    When i am trying to deploy GPO, The GPO seems to be applying on the computer but the 
    GPO settings are not being applied.
    I am getting error An error occured while checking for updates for your computer
    and in Windows update change settings, i can see it is grayed out with the option
    Download updates but let me choose wheter to install them(some settings are managed by your system administrator)
    I have disabled windows firewall when i was using Windows XP computers, Is any settings of windows firewall creating issues?
    I have created a computer group in WSUS say TESTGroup
    In GPO I have assigned the following settings(Please correct me if i am going wrong with the settings)
    Configure Automatic updates : 3-Auto download and notify for install
    Specify Intranet microsoft update service location: http://mywsus (here should it be mywsus or mywsus:8530)
    Enable Client Side targeting : TestGroup ( I have OU in active directory with Computers)
    Do not display install updates and shutdown option : Enabled
    Automatic Updates detection frequency : 2 hours
    Allow Non administrators to receive update notification : Enabled
    Allow Automatic updates immedidate installation : Enabled
    Turn of recommended updates via automatic updates : Enabled
    Reschedule automatic udpates scheduled installation : 10 min
    I have approved few updats in WSUS console to install on TestGroup
    On Client Computer ihave used the command 
    wuauclt /detectnow and wuauclt /reportnow
    Please guide me

    I have installed the updates KB2720211 KB2530678 KB2530709 KB2734608 on WSUS Server
    My GPO settings are 
    Configure Automatic updates : 3-Auto download and notify for install
    Allow signed updates from an intranet microsoft update service location : Enabled(i am using internal WSUS server exporting updates from internet connected WSUS to internal WSUS)
    GPO is applying but settings are not being applied.
    please do refer the client logs & attachment.
    Triggering AU detection through DetectNow API
    START ##  AU: Search for updates
    <<## SUBMITTED ## AU: Search for updates [CallId = {A52428A8-E7EC-4CAB-9842-0B66F6969382}]
    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    Agent *********
    * Online = Yes; Ignore download priority = No
    * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    Agent   * Search Scope = {Machine}
    Setup Checking for agent SelfUpdate
    Setup Client version: Core: 7.6.7600.320  Aux: 7.6.7600.320
    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab with dwProvFlags 0x00000080:
    Microsoft signed: NA
    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\TMP8FF3.tmp with dwProvFlags 0x00000080:
    Triggering AU detection through DetectNow API
    Piggybacking on an AU detection already in progress
    Microsoft signed: NA
    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab with dwProvFlags 0x00000080:
    Microsoft signed: NA
    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wsus3setup.cab with dwProvFlags 0x00000080:
    Microsoft signed: NA
    Setup Determining whether a new setup handler needs to be downloaded
    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\Handler\WuSetupV.exe with dwProvFlags 0x00000080:
    Microsoft signed: NA
    Setup SelfUpdate handler update NOT required: Current version: 7.6.7600.320, required version: 7.6.7600.320
    Evaluating applicability of setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~x86~~7.6.7600.320"
    Setup package "WUClient-SelfUpdate-ActiveX~31bf3856ad364e35~x86~~7.6.7600.320" is already installed.
    Setup Evaluating applicability of setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~x86~~7.6.7600.320"
    Setup package "WUClient-SelfUpdate-Aux-TopLevel~31bf3856ad364e35~x86~~7.6.7600.320" is already installed.
    Evaluating applicability of setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~x86~~7.6.7600.320"
    Setup package "WUClient-SelfUpdate-Core-TopLevel~31bf3856ad364e35~x86~~7.6.7600.320" is already installed.
    SelfUpdate check completed.  SelfUpdate is NOT required.
    +++++++++++  PT: Synchronizing server updates  +++++++++++
    + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://MYWSUSServer/ClientWebService/client.asmx
    WARNING: GetConfig failure, error = 0x80244019, soap client error = 10, soap error code = 0, HTTP status code = 404
    WARNING: PTError: 0x80244019
    WARNING: GetConfig_WithRecovery failed: 0x80244019
    WARNING: RefreshConfig failed: 0x80244019
    WARNING: RefreshPTState failed: 0x80244019
    WARNING: Sync of Updates: 0x80244019
    WARNING: SyncServerUpdatesInternal failed: 0x80244019
     * WARNING: Failed to synchronize, error = 0x80244019
    * WARNING: Exit code = 0x80244019
    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    Agent *************
    WARNING: WU client failed Searching for update with error 0x80244019
    >>##  RESUMED  ## AU: Search for updates [CallId = {A52428A8-E7EC-4CAB-9842-0B66F6969382}]
    # WARNING: Search callback failed, result = 0x80244019
    # WARNING: Failed to find updates with error code 80244019
    ##  END  ##  AU: Search for updates [CallId = {A52428A8-E7EC-4CAB-9842-0B66F6969382}]
    Need to show Unable to Detect notification
    Successfully wrote event for AU health state:1
    AU setting next detection timeout to 2015-03-20 20:18:22
    Successfully wrote event for AU health state:1
    Successfully wrote event for AU health state:1
    Report REPORT EVENT: {5BCEA64A-0FEB-4B01-9509-CE94AFE0D04A}
    2015-03-20 21:19:59:003+0300 1
    148 101
    {00000000-0000-AutomaticUpdates Failure
    Software Synchronization Windows Update Client failed to detect with error 0x80244019.
    CWERReporter::HandleEvents - WER report upload completed with status 0x8
    WER Report sent: 7.6.7600.320 0x80244019 00000000-0000-0000-0000-000000000000 Scan 101 Managed
    Report CWERReporter finishing event handling. (00000000)
    WARNING: GetConfig failure, error = 0x80244019, soap client error = 10, soap error code = 0, HTTP status code = 404
    WARNING: PTError: 0x80244019
    WARNING: GetConfig_WithRecovery failed: 0x80244019
    WARNING: RefreshConfig failed: 0x80244019
    WARNING: RefreshPTState failed: 0x80244019
    WARNING: PTError: 0x80244019
    WARNING: Reporter failed to upload events with hr = 80244019.
    WARNING: GetConfig failure, error = 0x80244019, soap client error = 10, soap error code = 0, HTTP status code = 404
    WARNING: PTError: 0x80244019
    WARNING: GetConfig_WithRecovery failed: 0x80244019
    WARNING: RefreshConfig failed: 0x80244019
    WARNING: RefreshPTState failed: 0x80244019
    WARNING: PTError: 0x80244019
    WARNING: Reporter failed to upload events with hr = 80244019.

  • HT1848 when i purchase ringtones and they download directly to the music app on iphone, how can I move them to SOUNDS in SETTINGS so I can assign to various functions please?

    when i purchase ringtones and they download directly to the music app on iphone, how can I move them to SOUNDS in SETTINGS so I can assign to various functions please?

    You would have to create the ringtones.
    Google will find several way to do this.
    You cannot buy ready made ringtones from your computer.

  • How do I add a site to my favorites list

    i am used to saving sites to my favorites list in IE9, now I have switched to FF how do I do the same.

    In Firefox they are called bookmarks. The following link show how to use bookmarks - https://support.mozilla.com/kb/Bookmarks

  • How do I add a site to the exception list using Mac book Air OS Lion 10.7.4

    Any advice please?

    I am using Safari to access some sites, but the pop-up blocker is preventing some sites from loading and I get a message : Add this site to the exception list
    Any advice on how to do this because I don't want to turn off my pop-up blocker.

  • Site Definition with Custom List Intance with Custom fields

    How to create VS 2012 > Site Definition with Custom List Instance with Custom fields?
    <site>
    <list>
    <field>

    Hi Sunil,
    it is the same way we create in VS 2010.
    Add a new empty SP project in VS2012 and then add, site, list and fields as per your requirement.
    Here are few references-
    Creating SharePoint 2010 Site Definitions in Visual Studio 2010
    http://msdn.microsoft.com/en-us/library/gg276356(v=office.14).aspx
    Creating SharePoint 2010 List Definitions in Visual Studio 2010
    http://msdn.microsoft.com/en-us/library/gg276355(v=office.14).aspx
    Walkthrough: Create a Basic Site Definition Project
    http://msdn.microsoft.com/en-us/library/ee231583.aspx
    and  I normally create a blank site with all required configuration and then create, import the template to hand craft the list and fields. this would minimize errors.
    see the below blog on this topic
    http://blogs.msdn.com/b/sambetts/archive/2013/10/17/creating-a-clean-visual-studio-solution-from-a-sharepoint-2013-site-template.aspx
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if the reply helps you

  • Internet Options greyed out in Internet Explorer 9 because of GPO settings in Windows 2008 AD

    Internet Options greyed out in Internet Explorer 9 because of GPO settings in Windows 2008 AD.
    I am trying to find out what GPO setting is causing this so I can change I.E. settings at a desktop running Windows 7.
    A GPO has I.E. locked down so settings are greyed out for Intranet settings so I can't change Intranet settings.
    How do I enable so I can save changes with a GPO?

    Classic GPO using Administrative Templates, is designed to do exactly that (disable the UI).
    Previously, you could use IEM in preference mode.
    Now, you'll need to use GPP, but there are a couple of limitations.
    Check the IE10 IEAK documentation (it's useful for understanding what you can do with GPP)
    http://technet.microsoft.com/en-us/library/jj890998.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Using a Site Studio 10R4 Dynamic List Element Definition

    Hi All,
    I've created and can use a Static List Element Definition > Region Definition > Region Template with no problems based off of the 10gR4 samples.
    However, there is no example that I've found to utilise the Element Definition of a Dynamic List. I'm attempting to use the same sample code as provided for a Static List but having no luck displaying the results of the query...
    Does anyone have some sample code used in a Region Template or Sub Template to show how we use a Dynamic List Element Definition please?
    I noted from another thread in this forum that there are some iDoc calls to make which load the query defined in the Element Definition... I can't find any documentation regarding this either.
    Thanks
    Edited by: user615721 on May 4, 2009 10:08 AM
    Edited by: user615721 on May 4, 2009 10:09 AM

    Found my answer in another thread, here... Re: Using a Site Studio 10R4 Dynamic List Element Definition
    'For 10gR4 Site Studio you can get examples and even a video talking about making dyanmic lists from here:
    http://www.oracle.com/technology/products/content-management/ucm/SiteStudio10gR4Tutorials/index.html'
    Edited by: user615721 on May 4, 2009 10:25 AM
    Edited by: user615721 on May 4, 2009 10:25 AM

  • How to assign list of default value for select-option variable???

    Hi every one
    This is Deepak,
    I want to know how to assign list of default value to select-option variable ? please any body tel me solution
    for example
    select-option matnr for mara-matnr default ..............and here i want to give more than 1 values that will be default value and use can choose any one at the time of input .
    Thank you in advance
    Deepak

    Hi.
    Check the following sample code.
    REPORT ztn_test.
    " It is example for list populating.
    TABLES:knvp.
    data: BEGIN OF itab OCCURS 10,
          kunnr like knvp-kunnr,
          END OF itab.
    data: wa_itab like itab.
    TYPE-POOLS: vrm.
    DATA: name TYPE vrm_id,
    list TYPE vrm_values,
    value LIKE LINE OF list.
    PARAMETERS: s_kunnr(20) type c  as LISTBOX VISIBLE LENGTH 40 .
    AT SELECTION-SCREEN OUTPUT.
    SELECT kunnr from knvp  into  CORRESPONDING FIELDS OF TABLE itab WHERE parvw = 'SP'. " SP for ur requirement
    " I have used loop to populate some values from table
    loop at itab into wa_itab.
      name = 'S_KUNNR'.
      value-key = sy-tabix.
      value-text = wa_itab-kunnr.
      append value to list.
      clear wa_itab.
    endloop.
    " If u want individaully assign the values change the code as
    name = 'S_KUNNR'." Select option name
      value-key = 1." Index
      value-text = 'VAL1'.
      append value to list.
    name = 'S_KUNNR'." Select option name
      value-key = 2." Index
      value-text = 'VAL2'.
      append value to list.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING id = name
    values = list.
    Edited by: tahir naqqash on Feb 21, 2009 4:38 PM

  • Remove legacy/redundant GPO settings

    Hi folks!
    Is there any way to automatically remove legacy or redundant settings from a GPO.
    For example (specifically in fact) remove the IE settings, that up until IE8 were rolled out via Policies > Windows Settings > IE Maintenance. I have other settings as well, Admin Templates for Outlook 2002 that are showing and I want them gone too.
    I'm just doing basic housekeeping, and the OCD in me doesn't want two places where the settings show in the GPO settings tab in the GPMC. I am also just trying to make it easier for the IT dept to be able to manage on their own, if I am out of the office
    for any reason.
    Apologies if this is an easy one, but I can't find anywhere that actually allows me to remove settings from a GPO following a domain upgrade (2003 to 2012), only to remove entire GPOs.
    Cheers!
    Andy

    Hi Andy,
    >>For example (specifically in fact) remove the IE settings, that up until IE8 were rolled out via Policies > Windows Settings > IE Maintenance.
    Regarding this point, the following KB article can be referred to as reference.
    Policy reporting tools indicate empty Internet Explorer Maintenance policy as winning
    http://support.microsoft.com/kb/2722241/en-us
    >> I have other settings as well, Admin Templates for Outlook 2002 that are showing and I want them gone too.
    To remove these settings, you can import the administrative template files for Outlook 2002 in GPMC, and un-configure the previous configured settings.
    To obtain the policy template files for Outlook 2002, you can use the version of the resource kit from the Office XP or Outlook 2002 enterprise CD-ROM, or you can download Office XP orktools.exe from the following location.
    Office XP Resource Kit
    http://www.microsoft.com/office/orkarchive/XPddl.htm
    Regarding how to add administrative template, the following article can be referred to for more information.
    Add or remove an Administrative Template (.adm file)
    http://technet.microsoft.com/en-in/library/cc739134(v=ws.10).aspx
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
    Best regards,
    Frank Shen

  • IStore: Customer account sites with multiple price list

    Hi,
    We have an account with many sites, each site uses different price list. Say 1 site uses FR price list other uses GR price list.
    Users are suppose to use specific price list only. How can we have the users use their specific price list.
    Thanks in Advance

    Hi,
    For iStore you can setup specialty site based price lists and/or customer account level price lists.
    To setup the customer account level price lists -
    Set the profile option "IBE: Use Customer Account Price List" at the site level to Yes.
    Link the customer to the price list -
    1. Login to Oracle Forms and select Receivables Manager responsibility.
    2. Navigate to Customers > Standard.
    3. Select an account based on Customer Name, Account Number, or Organization Number.
    4. Press the Find button and select an address from the popup window; select Ok.
    5. Select the Order Management tab.
    6. Enter the appropriate price list in the Price List field, and save the form.
    7. Bounce the middle-tier and Web Cache servers.
    Reference:
    Oracle iStore Implementation and Administration Guide Release 12.1 (Part No. E13575-06)
    Chapter 10 Implementing Pricing
    Page 10-21
    Section Implementing Customer Account Price Lists
    OR
    You can setup modifiers for Customer (ie Customer Name) and Store (Minisite_ID) on the price list(s)
    For this setup you would need to set both "IBE: Use Customer Account Price List" and "IBE: Use Price List Associated with Specialty Site" to No.
    Thank you,
    Deborah
    Edited by: user702249 on Apr 10, 2013 6:56 PM

  • Programatic access to GPO settings

    I would like to programmatically read/write several GPO settings (ideally in c#). This include few rules related to Firewall, enabling Remote Desktop/Remote assistance. What could be best way of accomplishing it?

    > I would like to programmatically read/write several GPO settings
    > (ideally in c#). This include few rules related to Firewall, enabling
    > Remote Desktop/Remote assistance. What could be best way of
    > accomplishing it?
    Have a look at
    http://technet.microsoft.com/library/ee461034.aspx
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

Maybe you are looking for

  • How can I move an iMovie 11 from my MacPro to my MaBook Pro to continue working on it?

    Need to move my iMovie 11 project to my laptop so I can cantinue working on it ...

  • Unable to see my external hard drive

    Hi I've been sorting out my external hard drive and deleting numerous files. Suddenly a few small windows popped up showing a progress bar. I am now unable to view the files from the External Hard Drive. I have tried rebooting the system a few times

  • Why Are Some Of My Downloads Landing In The Trash?

    Why are some of my downloads landing in the trashcan? I just went to empty my trash can and when I opened it up I found about 5 files that I downloaded just last night. Why would my personal and important files have found thier way into my trash can?

  • Document PRT

    Dear Team, I am trying to create the document PRT in CV01n. While creating the document in CV01N for PRT, which indicator specifies that it is a document PRT? while creating PRT in IE01 (equipment PRT), i am specifying the equipment category as "P" t

  • Warranty duration for T61 power supply unit

    Hi all, we are working with Lenovo T61 laptops and they have a 3 years on-site warranty. Do you know if like batteries, power supplies unit have a limited warranty period ?  Thank you  Solved! Go to Solution.