ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    how to push 3rd party software updates to domain clients?

    IT Discussion
    14
    33
    1.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • jclambertJ
      jclambert
      last edited by

      Chocolately and PDQ are both very easy to utilize.

      R 1 Reply Last reply Reply Quote 0
      • R
        registry2021 @jclambert
        last edited by

        @jclambert said in how to push 3rd party software updates to domain clients?:

        Chocolately and PDQ are both very easy to utilize.

        I'll be using this on domain environment and hoping I can update the workstations remotely. is it possible and which one suits best?

        DustinB3403D 1 Reply Last reply Reply Quote 0
        • DustinB3403D
          DustinB3403 @registry2021
          last edited by

          @registry2021 said in how to push 3rd party software updates to domain clients?:

          I'll be using this on domain environment and hoping I can update the workstations remotely. is it possible and which one suits best?

          Both can be used in a domain, the question is completely dependent on what you're willing to setup.

          PDQ Deploy is likely the easiest to "use" if you don't want to setup anything and you just want a GUI to push packages from a Windows desktop environment.

          1 Reply Last reply Reply Quote 0
          • DustinB3403D
            DustinB3403
            last edited by

            Chocolatey is very likely the most flexible solution, but would require some setup on your part to get it going throughout the domain.

            1 Reply Last reply Reply Quote 0
            • DashrenderD
              Dashrender
              last edited by

              Chocolately - I use the their package choco-upgrade-all-at-start. This will schedule choco to upgrade at every reboot.

              There's another package choco-upgrade-all-at that defaults to 4 AM update daily.

              DustinB3403D JaredBuschJ scottalanmillerS 3 Replies Last reply Reply Quote 1
              • DustinB3403D
                DustinB3403 @Dashrender
                last edited by

                @Dashrender said in how to push 3rd party software updates to domain clients?:

                Chocolately - I use the their package choco-upgrade-all-at-start. This will schedule choco to upgrade at every reboot.

                There's another package choco-upgrade-all-at that defaults to 4 AM update daily.

                /Me screws over @Dashrender because I never reboot my computer. "What closing the lid doesn't count as rebooting?"

                1 Reply Last reply Reply Quote 0
                • jclambertJ
                  jclambert
                  last edited by

                  Chocolatey is more flexible, but PDQ is super simple. We implement PDQ here currently, as it was an uphill battle to get anything going. Now that the benefits are seen, many roads have opened.

                  I am all for automation, and open source is a plus. Salt may be the next venture, as it looks like a fleet of Pis, and an expansion of Linux servers may be in our future.

                  DashrenderD scottalanmillerS 2 Replies Last reply Reply Quote 1
                  • DashrenderD
                    Dashrender @jclambert
                    last edited by Dashrender

                    @jclambert said in how to push 3rd party software updates to domain clients?:

                    Chocolatey is more flexible, but PDQ is super simple. We implement PDQ here currently, as it was an uphill battle to get anything going. Now that the benefits are seen, many roads have opened.

                    I am all for automation, and open source is a plus. Salt may be the next venture, as it looks like a fleet of Pis, and an expansion of Linux servers may be in our future.

                    Yeah - I really need to look into salt myself. One frustrating thing is not knowing the status of any anything. not that salt can help with that, at least I don't think it can directly.

                    1 Reply Last reply Reply Quote 1
                    • ObsolesceO
                      Obsolesce
                      last edited by

                      We can't use Chocolatey, at least the public NuGet repo it uses by default.

                      But for common apps, I have it 100% automated via Azure DevOps, Intune, and the PSADT.

                      Another option I'm still looking into for certain apps is using Azure DevOps like above, but then deploying the artifact to a NuGet repo then used by the newer WinGet tool.

                      scottalanmillerS 1 Reply Last reply Reply Quote 0
                      • JaredBuschJ
                        JaredBusch @Dashrender
                        last edited by

                        @Dashrender said in how to push 3rd party software updates to domain clients?:

                        Chocolately - I use the their package choco-upgrade-all-at-start. This will schedule choco to upgrade at every reboot.

                        There's another package choco-upgrade-all-at that defaults to 4 AM update daily.

                        You specify the time when you install it.

                        choco install -y choco-upgrade-all-at --params "'/DAILY:yes /TIME:17:00 /ABORTTIME:20:00'"
                        
                        1 Reply Last reply Reply Quote 4
                        • scottalanmillerS
                          scottalanmiller @Dashrender
                          last edited by

                          @Dashrender said in how to push 3rd party software updates to domain clients?:

                          Chocolately - I use the their package choco-upgrade-all-at-start. This will schedule choco to upgrade at every reboot.

                          There's another package choco-upgrade-all-at that defaults to 4 AM update daily.

                          You can just make a Scheduled Task,too.

                          JaredBuschJ 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @Obsolesce
                            last edited by

                            @Obsolesce said in how to push 3rd party software updates to domain clients?:

                            We can't use Chocolatey, at least the public NuGet repo it uses by default.

                            Lots of people with that limitation, but just make your own. Still a great tool and, we'd assume, it means any public repo would be an issue for you so the need for your own repo would be a universal need.

                            1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller @jclambert
                              last edited by

                              @jclambert said in how to push 3rd party software updates to domain clients?:

                              Chocolatey is more flexible, but PDQ is super simple. We implement PDQ here currently, as it was an uphill battle to get anything going. Now that the benefits are seen, many roads have opened.

                              I am all for automation, and open source is a plus. Salt may be the next venture, as it looks like a fleet of Pis, and an expansion of Linux servers may be in our future.

                              Sounds like some great ideas! 😉

                              1 Reply Last reply Reply Quote 0
                              • JaredBuschJ
                                JaredBusch @scottalanmiller
                                last edited by

                                @scottalanmiller said in how to push 3rd party software updates to domain clients?:

                                @Dashrender said in how to push 3rd party software updates to domain clients?:

                                Chocolately - I use the their package choco-upgrade-all-at-start. This will schedule choco to upgrade at every reboot.

                                There's another package choco-upgrade-all-at that defaults to 4 AM update daily.

                                You can just make a Scheduled Task,too.

                                This does that for you.

                                dbeatoD scottalanmillerS 2 Replies Last reply Reply Quote 1
                                • dbeatoD
                                  dbeato @JaredBusch
                                  last edited by

                                  @JaredBusch Yeah much cleaner and you avoid the hassle of GPOs and what not of Task Scheduler so I do agree with this.

                                  1 Reply Last reply Reply Quote 0
                                  • dbeatoD
                                    dbeato
                                    last edited by

                                    I also posted this a while ago
                                    https://mangolassi.it/topic/20197/install-chocolatey-remotely-on-domain-computers/3

                                    ObsolesceO 1 Reply Last reply Reply Quote 1
                                    • ObsolesceO
                                      Obsolesce @dbeato
                                      last edited by

                                      @dbeato said in how to push 3rd party software updates to domain clients?:

                                      I also posted this a while ago
                                      https://mangolassi.it/topic/20197/install-chocolatey-remotely-on-domain-computers/3

                                      Yeah, but that would require one to use the search.

                                      dbeatoD 1 Reply Last reply Reply Quote 0
                                      • dbeatoD
                                        dbeato @Obsolesce
                                        last edited by

                                        @Obsolesce It was more for the OP 🙂

                                        1 Reply Last reply Reply Quote 0
                                        • scottalanmillerS
                                          scottalanmiller @JaredBusch
                                          last edited by

                                          @JaredBusch said in how to push 3rd party software updates to domain clients?:

                                          @scottalanmiller said in how to push 3rd party software updates to domain clients?:

                                          @Dashrender said in how to push 3rd party software updates to domain clients?:

                                          Chocolately - I use the their package choco-upgrade-all-at-start. This will schedule choco to upgrade at every reboot.

                                          There's another package choco-upgrade-all-at that defaults to 4 AM update daily.

                                          You can just make a Scheduled Task,too.

                                          This does that for you.

                                          Yeah, pretty cool. Just if you already have a Scheduled Task process or whatever.

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 2 / 2
                                          • First post
                                            Last post