Creating NTUSER.DAT file programatically

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Wayne J

    #1

    Creating NTUSER.DAT file programatically

    As part of the sys-admin tasks I undertake, it includes the profiling of
    user accounts.

    Most of this has been done through scripting, but there is still the
    hands on part of mapping drives etc that the GPO miss.

    Is it possible as part of a vb.net application to create a stub
    NTUSER.DAT file with all the necessary trimmings for the users?

    Has anyone tried doing such a task?
  • Daniel

    #2
    Re: Creating NTUSER.DAT file programatically

    Wayne J wrote:[color=blue]
    > As part of the sys-admin tasks I undertake, it includes the profiling of
    > user accounts.
    >
    > Most of this has been done through scripting, but there is still the
    > hands on part of mapping drives etc that the GPO miss.
    >
    > Is it possible as part of a vb.net application to create a stub
    > NTUSER.DAT file with all the necessary trimmings for the users?
    >
    > Has anyone tried doing such a task?[/color]

    Mapping drives should really be done via a logon script. You can use
    group membership to automate it.

    --

    Daniel
    MCSE, MCP+I, MCP in Windows 2000/NT

    --------------------------------------
    remove the 2nd madrid from my mail address to contact me.

    Comment

    • Wayne J

      #3
      Re: Creating NTUSER.DAT file programatically

      Daniel wrote:[color=blue]
      > Wayne J wrote:
      >[color=green]
      >> As part of the sys-admin tasks I undertake, it includes the profiling
      >> of user accounts.
      >>
      >> Most of this has been done through scripting, but there is still the
      >> hands on part of mapping drives etc that the GPO miss.
      >>
      >> Is it possible as part of a vb.net application to create a stub
      >> NTUSER.DAT file with all the necessary trimmings for the users?
      >>
      >> Has anyone tried doing such a task?[/color]
      >
      >
      > Mapping drives should really be done via a logon script. You can use
      > group membership to automate it.
      >[/color]

      That works for standard mappings, but the drive mappings are only part
      of what I am attempting to accomplish as there are other registry
      settings that need to be done.

      Comment

      • Daniel

        #4
        Re: Creating NTUSER.DAT file programatically

        Wayne J wrote:[color=blue]
        > Daniel wrote:
        >[color=green]
        >> Wayne J wrote:
        >>[color=darkred]
        >>> As part of the sys-admin tasks I undertake, it includes the profiling
        >>> of user accounts.
        >>>
        >>> Most of this has been done through scripting, but there is still the
        >>> hands on part of mapping drives etc that the GPO miss.
        >>>
        >>> Is it possible as part of a vb.net application to create a stub
        >>> NTUSER.DAT file with all the necessary trimmings for the users?
        >>>
        >>> Has anyone tried doing such a task?[/color]
        >>
        >>
        >>
        >> Mapping drives should really be done via a logon script. You can use
        >> group membership to automate it.
        >>[/color]
        >
        > That works for standard mappings, but the drive mappings are only part
        > of what I am attempting to accomplish as there are other registry
        > settings that need to be done.[/color]

        Again, registry settings can be done via the logon script as well. DOS
        scripting is really powerful which is something that most people overlook!

        --

        Daniel
        MCSE, MCP+I, MCP in Windows 2000/NT

        --------------------------------------
        remove the 2nd madrid from my mail address to contact me.

        Comment

        Working...