auto load RDP through script

  • This topic is empty.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1555
    mugwamp
    Member
    • Total Post: 29
    • Frequent Flyer
    • ★★★

    Can one update this registry value to auto enable RDP across 3125, 3150 and s30 with numerous builds with only one packaged script?

    [HKEY_LOCAL_MACHINETerminalSecurityUserAccountsGuestRDPConnectionsRemote Desktop]
    “Priority”=dword:0
    “ClientType”=”RDP”
    “EnableAutoConnect”=”Yes”

    #14261
    ConfGen
    Keymaster
    • Total Post: 10696
    • Jedi Master
    • ★★★★★★★

    You have to create a WDM package like this example:

    [Version]
    Number=RDP_setting
    Description=Several RDP settings
    OS=CEN
    Category=CE Admin

    [Script]
    CO “CEN”
    LU
    SV “HKEY_LOCAL_MACHINETerminalSecurityUserAccountsGuestRDPConnectionsRemote DesktopPriority” “0” “REG_DWORD”
    EL
    RB

    #14429
    mugwamp
    Member
    • Total Post: 29
    • Frequent Flyer
    • ★★★

    Would this work as well?

    [Version]
    Number=s30autoauto–
    Description=
    OS=CEN
    Category=Device Configuration

    [Script]
    WL
    CO “CEN”
    LU “The administrator is updating the configuration for this device”
    SF “CEConfig” “settings.reg” “APPEND”

    Thanks for your comments.

    #14431
    ConfGen
    Keymaster
    • Total Post: 10696
    • Jedi Master
    • ★★★★★★★

    You would have to create one package for each plattform and build level to prevent issues with wrong/double regkeys.

    CG

    #14455
    mugwamp
    Member
    • Total Post: 29
    • Frequent Flyer
    • ★★★

    SV “HKEY_LOCAL_MACHINETerminalSecurityUserAccountsGuestRDPConnectionsRemote Desktop”ClientType”=”RDP” “REG_SZ”

    Would this be another?

    #14465
    ConfGen
    Keymaster
    • Total Post: 10696
    • Jedi Master
    • ★★★★★★★

    What do you mean by “another”?
    It could be in the same script or a seperate one.

    CG

    #14482
    mugwamp
    Member
    • Total Post: 29
    • Frequent Flyer
    • ★★★

    Same script but an additional registry key. Can you do several keys in one script?

    [Version]
    Number=RDP_setting
    Description=Several RDP settings
    OS=CEN
    Category=CE Admin

    [Script]
    CO “CEN”
    LU SV “HKEY_LOCAL_MACHINETerminalSecurityUserAccountsGuestRDPConnectionsRemote DesktopClientType”=”RDP” “REG_SZ”
    Sv “HKEY_LOCAL_MACHINETerminalSecurityUserAccountsGuestRDPConnectionsRemote DesktopPriority” “0” “REG_DWORD”

    EL
    RB

    Also will this update across multiple builds on different ce devices such as 3125, 3150, and s30.

    #14486
    ConfGen
    Keymaster
    • Total Post: 10696
    • Jedi Master
    • ★★★★★★★

    You can put as many lines in your script as you like. You can even do reboots inbetween.
    As long as the registry keys are the same in all CE versions across your different units it is no problem.

    CG

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.