ADM fully managed or not

Ask a Question related to Windows Server, Design and Development.

  1. #1

    Default ADM fully managed or not

    I've created an ADM to remove the Domain option (Thanks
    Martin) and disable the 'logon using dial-up'.

    It works fine, but when I view it in GPO Editor it is
    classed as a policy setting that can't be fully managed
    (so although the template is visible the settings are not)

    What's the difference between one that can be fully
    managed and one that can't (apart from the fact that it's
    classed as not fully manageable) is it in the coding
    or... ?

    TIA

    Pete.
    Pete-L Guest

  2. Similar Questions and Discussions

    1. Load managed DLL
      Hi, I have managed DLL named test.dll and is loaded by an ASP .NET web application. It's been working fine in Windows 2000. I upgraded the...
    2. #25079 [Opn->Fbk]: with php, page is cut off and not fully loaded. take php out, page fully loads
      ID: 25079 Updated by: sniper@php.net Reported By: ryaker at kickmail dot com -Status: Open +Status: ...
    3. #25079 [NEW]: with php, page is cut off and not fully loaded. take php out, page fully loads
      From: ryaker at kickmail dot com Operating system: Red Hat Linux PHP version: 4.3.2 PHP Bug Type: *General Issues Bug...
    4. non-managed / non-COM .dll reference in ASP.NET app
      I'm working on an ASP.NET which needs to use a non-managed and non-COM .dll reference. This app works properly as a standalone desktop app but,...
    5. locally managed tablespace & dictionary managed tablespace
      Hi, newbie question. I've read some books which mentioned about advantages of locally-managed tablespace over dictionary-managed tablespace. My...
  3. #2

    Default Re: ADM fully managed or not

    Hi there

    A fully-managed Group Policy setting is one that will undo itself when it
    falls out of scope (by the GPO being deleted or no longer applying to the
    user or computer object). Other policies are said to "tattoo" themselves.

    There are two classes of Group Policy settings -- those, such as the
    Internet Explorer policies, that use a client-side extension, and
    tradtitional policies which are registry-based.

    For example, take the setting in Microsoft Office that allows user templates
    path to be set. The ADM files that shipped with older versions of Office
    modified the file locations directly in the registry, overwriting the
    defaults. The application was set only to read the location from that
    particular registry value.

    Newer applications and Windows itself will look to the
    HKEY_CURRENT_USER\Software\Policies registry key to see if a policy has been
    set. If so, they use the setting from there. Otherwise, they will use
    their normal registry setting. That way, when a policy is removed, the
    application will revert to its original setting.

    With the case of the ADM file you've written, the "application" doesn't
    understand the concept of policies and so you've had to modify the registry
    values directly.

    I'd be very interested to see the ADM file you've written. It sounds like
    it could be useful for me, too.

    Hope this helps

    Oli

    "Pete-L" <anonymous@discussions.microsoft.com> wrote in message
    news:1b27401c44fab$d15d6fa0$a501280a@phx.gbl...
    > I've created an ADM to remove the Domain option (Thanks
    > Martin) and disable the 'logon using dial-up'.
    >
    > It works fine, but when I view it in GPO Editor it is
    > classed as a policy setting that can't be fully managed
    > (so although the template is visible the settings are not)
    >
    > What's the difference between one that can be fully
    > managed and one that can't (apart from the fact that it's
    > classed as not fully manageable) is it in the coding
    > or... ?
    >
    > TIA
    >
    > Pete.

    Oli Restorick [MVP] Guest

  4. #3

    Default Re: ADM fully managed or not

    Oli

    Thanks for the response. A copy of the adm is below,
    forgive the differences in construction between the two
    options (yes/no, list) but this is experimental to get
    used to creating adm files.

    --- cut ---
    CLASS MACHINE
    CATEGORY !!Customised
    CATEGORY !!Logon
    KEYNAME !!winlogon
    POLICY !!ReDomain
    Explain !!RemOption_Help
    VALUENAME NoDomainUI
    VALUEON NUMERIC 1
    VALUEOFF NUMERIC 0
    END POLICY ;ReDomain

    POLICY !!Dial-Up
    EXPLAIN !!Dial-Up_Help
    PART "LogonDial-Up" DROPDOWNLIST
    VALUENAME "Dial-Up "
    ITEMLIST
    NAME !!DialUp0 VALUE "0"
    NAME !!DialUp2 VALUE "1"
    DEFAULT
    END ITEMLIST
    END PART
    END POLICY ;Dial-Up
    END CATEGORY ;Logon
    END CATEGORY ;Customised

    [STRINGS]
    Dial-Up="Disable log on using Dial-Up"
    DialUp0="Enable log on using Dial-Up"
    DialUp2="Disable log on using Dial-Up"
    Customised="Company Customised"
    Logon="Logon Screen Options"
    winlogon="SOFTWARE\microsoft\windows
    nt\currentversion\winlogon"
    ReDomain="Remove DOMAIN from log on options"
    RemOption_Help="Remove DOMAIN option from logon screen
    \n\nPrevent users from selecting domain or local machine
    as a logon option \n\nusers must enter name@domain
    Dial-Up_Help="Disable connect using Dial-In"

    ---cut---

    RemOption_Help has wrapped quite a bit!

    HTH

    Pete.
    >-----Original Message-----
    >Hi there
    >
    >A fully-managed Group Policy setting is one that will
    undo itself when it
    >falls out of scope (by the GPO being deleted or no longer
    applying to the
    >user or computer object). Other policies are said
    to "tattoo" themselves.
    >
    >There are two classes of Group Policy settings -- those,
    such as the
    >Internet Explorer policies, that use a client-side
    extension, and
    >tradtitional policies which are registry-based.
    >
    >For example, take the setting in Microsoft Office that
    allows user templates
    >path to be set. The ADM files that shipped with older
    versions of Office
    >modified the file locations directly in the registry,
    overwriting the
    >defaults. The application was set only to read the
    location from that
    >particular registry value.
    >
    >Newer applications and Windows itself will look to the
    >HKEY_CURRENT_USER\Software\Policies registry key to see
    if a policy has been
    >set. If so, they use the setting from there. Otherwise,
    they will use
    >their normal registry setting. That way, when a policy
    is removed, the
    >application will revert to its original setting.
    >
    >With the case of the ADM file you've written,
    the "application" doesn't
    >understand the concept of policies and so you've had to
    modify the registry
    >values directly.
    >
    >I'd be very interested to see the ADM file you've
    written. It sounds like
    >it could be useful for me, too.
    >
    >Hope this helps
    >
    >Oli
    >
    >"Pete-L" <anonymous@discussions.microsoft.com> wrote in
    message
    >news:1b27401c44fab$d15d6fa0$a501280a@phx.gbl...
    >> I've created an ADM to remove the Domain option (Thanks
    >> Martin) and disable the 'logon using dial-up'.
    >>
    >> It works fine, but when I view it in GPO Editor it is
    >> classed as a policy setting that can't be fully managed
    >> (so although the template is visible the settings are
    not)
    >>
    >> What's the difference between one that can be fully
    >> managed and one that can't (apart from the fact that
    it's
    >> classed as not fully manageable) is it in the coding
    >> or... ?
    >>
    >> TIA
    >>
    >> Pete.
    >
    >
    >.
    >
    Pete-L Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139