Add One URL to Intranet Zone and Another URL to a Trusted Site Zone Through GPO-ADM

Add One URL to Intranet Zone and Another URL to a Trusted Site Zone Through GPO-ADM

Please note: if you want to manage Trusted/Intranet site through GPO, end users will be not able to add their sites. I have tested the below ADM and I have given a link for a VB Script. You can use one of them. .

;;;;Add one URL to Intranet Zone and Another Url To trusted Site Zone through GPO-ADM
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 CLASS USER                     ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 CATEGORY !!INTRANET_TRUSTED
  
    ;;--------
     ;; Feature: Intranet trusted
     ;;--------
      
    POLICY "Domaincontosohttp"
  KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\contoso.com"
     EXPLAIN !!ExplainText_ConfigurationMode
         VALUENAME "http"
         VALUEON   NUMERIC  2
         VALUEOFF  NUMERIC  0
     END POLICY
  
    POLICY "Domaincontosohttps"
  KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\contoso.com"
     EXPLAIN !!ExplainText_ConfigurationMode
         VALUENAME "https"
         VALUEON   NUMERIC  2
         VALUEOFF  NUMERIC  0
 END POLICY
  
POLICY "contosoEschttp"
  KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\contoso.com"
     EXPLAIN !!ExplainText_ConfigurationMode
         VALUENAME "http"
         VALUEON   NUMERIC  2
         VALUEOFF  NUMERIC  0
     END POLICY
      
POLICY "contosoEschttps"
  KEYNAME "Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\contoso.com"
     EXPLAIN !!ExplainText_ConfigurationMode
         VALUENAME "https"
         VALUEON   NUMERIC  2
         VALUEOFF  NUMERIC  0
 END POLICY
  
END CATEGORY ; INTRANET_TRUSTED
  
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  
[strings]
 INTRANET_TRUSTED="Trusted sites for IE"
  
ExplainText_ConfigurationMode="Enable or disable listed servers"

___________________________________________________________________


If you are required the VB Script, find the below link.

http://social.technet.microsoft.com/wiki/contents/articles/add-one-url-to-intranet-zone-and-another-url-to-a-trusted-site-zone-through-gpo.aspx

 

 

Leave a Comment
  • Please add 4 and 6 and type the answer here:
  • Post
Wiki - Revision Comment List(Revision Comment)
Wikis - Comment List
Sort by: Published Date | Most Recent | Most Useful
Posting comments is temporarily disabled until 10:00am PST on Saturday, December 14th. Thank you for your patience.
Comments
  • After importing this template into the GPO, all I see is just a blank folder with no settings for IE.

  • Did you checked "Disabling GPO settings filtering" option. Follow the below link and you will see the settings

    www.petri.co.il/adding_new_administrative_templates_to_gpo.htm

Page 1 of 1 (2 items)