IT Management Suite

  • 1.  How to deploy a registry key

    Posted Nov 25, 2014 09:54 AM

    Does anyone know how i can deploy a registry key to computer?

    Should i use Quick Delivery?

    Do i need to create a script to do it?

    Can you recommend the best method, thanks

     

    I'm using Altiris 7.5 SP1



  • 2.  RE: How to deploy a registry key

    Broadcom Employee
    Posted Nov 25, 2014 10:09 AM

    Hi!

    You can use a "Script Task" and execute it on all required managed endpoints.

    Here is an example of such task creation and execution:

    Thanks,

    IP.

     



  • 3.  RE: How to deploy a registry key

    Posted Nov 25, 2014 11:25 AM
    Although there are a few different ways to so this via Altiris, but depending on what it is for, GPO or GPO pref may be the best way to go if you are in an MS domain environment. Regards, Darren.


  • 4.  RE: How to deploy a registry key

    Posted Nov 25, 2014 11:42 AM
    If I couldn't use Group Policy I'd create a Software Release for it with no package and a command line of: CMD /C "reg add "HKLM\Software\Microsoft..." /v Name /t REG_SZ /d data /f"


  • 5.  RE: How to deploy a registry key

    Posted Nov 25, 2014 02:03 PM

    You don't need to put the cmd /c in the script.

    Create a Command Script and use the below:

    reg add "HKLM\Software\Microsoft\..." /v (value name)  /t (reg type) /d (data value) /f

     

     



  • 6.  RE: How to deploy a registry key

    Posted Nov 25, 2014 04:27 PM
    I got distracted, I forgot to add that I use a Software Release so i can use Detection Rules to make sure it's been applied successfully and will run when the PC is next turned on, not time out after 30 mins.


  • 7.  RE: How to deploy a registry key

    Posted Nov 26, 2014 02:55 PM
    Although there are a few different ways to so this via Altiris, but depending on what it is for, GPO or GPO pref may be the best way to go if you are in an MS domain environment. Regards, Darren.


  • 8.  RE: How to deploy a registry key

    Posted Jan 30, 2015 04:16 PM

    Thought I would throw this out there...we've used this with a lot of success:

    http://sourceforge.net/projects/reg2exe/

    Export a desired reg key and use this program to convert it to an exe.

    Deliver like any other EXE and execute.