PowerShell App Deployment Toolkit with Microsoft Intune

Поделиться
HTML-код
  • Опубликовано: 28 ноя 2024

Комментарии • 31

  • @jigsaw4770
    @jigsaw4770 Год назад +2

    Thanks for the PSADT run through Dean, - looking forward to more for sure, - really curious to see where you take it from here

  • @svilenkostadinov844
    @svilenkostadinov844 Год назад +1

    great video! can't wait for next one with more details on configuration!

  • @tuxmc
    @tuxmc Год назад +1

    Thank you heaps Dean ... I am combining PSADT with WinGet Packages, works beautifully.

  • @avinash0072355
    @avinash0072355 Год назад +1

    Excellent video, Dean!

  • @hansay3164
    @hansay3164 9 месяцев назад

    When doing this, does this install on the user's computers silently without any UI or user interactions?

  • @tahir7048
    @tahir7048 5 месяцев назад

    I cannot get my head around this, does the toolkit need to be installed on each machine you want to run the software on via intune or only one the machine you are packaging the software on. How does the PSADT work with Intune. Do you need some kind of SCCM/MDT to deploy MDT onto all machines first?

  • @chebrets
    @chebrets 14 дней назад +1

    will this work for Intune win32app if the application's .exe file doesn't support silent install?

    • @DeanEllerbyMVP
      @DeanEllerbyMVP  14 дней назад +1

      Not really. Technically you could use ServiceUI to show the install screens to the user to drive it, but that’s not how it’s meant to be used.
      You probably should use something like Master Packager to make a version that will install silently.

  • @JessieS
    @JessieS 7 месяцев назад

    I know this video is a year old, but would this run as a required app during the autopilot process?

  • @techsavv_
    @techsavv_ Год назад +2

    Thanks for your videos. Why not upload the msi directly to intune?

    • @DeanEllerbyMVP
      @DeanEllerbyMVP  Год назад +8

      Do you mean why not skip the whole PSADT bit and let Intune just deploy the MSI? I’ll assume so.
      One reason is that PSADT allows for a user interface / notifications to be sent to the user before/during/after deployment. Probably not a great example in this video, but for apps that need the user to do something, this is a great way to do that.
      Another reason might be that you want additional logging, or pre/post deployment actions that you want to happen.
      Finally, you can use PSADT to permit the user to delay or postpone the installation.
      There are a few more reasons, but it’s probably best if I just make another video to explain them 😀

    • @Kor1134
      @Kor1134 4 месяца назад

      ​@@DeanEllerbyMVP agree 💯 PSADT provides so much flexibility and customization. We use it for all our Company Portal apps and always leave the logs in a common location in case we need to troubleshoot installation errors. The added benefit of providing a GUI is a massive benefit for our end-users so they are aware that an automated installation is taking place.

  • @CGRealStudios
    @CGRealStudios Год назад +1

    Greta video, in terms of daily administration, would you recommend this or something like patch my pc

    • @DeanEllerbyMVP
      @DeanEllerbyMVP  Год назад

      This is a great way to deploy apps and manage script deployment. Its completely free so worth keeping in mind for all deployments

  • @danzirulez
    @danzirulez Год назад +1

    @14:22 you start talking about the setup file should have been the msi - but then the psadt install part is skipped entirely... and the install would just run the msi?

    • @DeanEllerbyMVP
      @DeanEllerbyMVP  Год назад +1

      Yeah - I need to go back on that and be more clear.
      If you use the MSI file to generate the Intunewin, rather than the PSADT file, it will pre-fill the name and details of the app for you.
      The choice you make during Intunewin creation doesn’t determine which file Intune users during the install, that’s determined when you create the App in Intune.

    • @raufaamer
      @raufaamer Год назад +1

      @@DeanEllerbyMVP thanks for clarification

  • @idatoo
    @idatoo Год назад

    @DeanEllerbyMVP, If you are deploying as System from Intune, how will the user see the the UI generated from the PSADT as it would be running in Session 0 (non-interactive). In the video, we didn't get to see the software deployed from Intune onto an end-user's computer.

    • @DeanEllerbyMVP
      @DeanEllerbyMVP  10 месяцев назад

      You're right! My bad.
      To allow the user to see and interact with the UI running in Session 0, we need to borrow an app from the Microsoft Deployment Toolkit, called ServiceUI.exe
      Rudy does a great write up here:
      call4cloud.nl/2021/01/the-amazing-psadt/

  • @aligenel
    @aligenel 3 месяца назад

    How do i can get MSI product code for any MSI file?

  • @BrianAntoine-z1f
    @BrianAntoine-z1f Год назад +1

    Can you go over when it is an .exe file?

    • @BrianAntoine-z1f
      @BrianAntoine-z1f Год назад

      All of your videos show using a .msi

    • @tuxmc
      @tuxmc Год назад +3

      Execute-Process -Path "$dirFiles\Setup.exe" -Parameters "/modify ProPlus /config `"$dirSupportFiles\AddOutlook.xml`"" -WindowStyle Hidden
      Example.

  • @subodhwaghmare6662
    @subodhwaghmare6662 8 месяцев назад +1

    I think you chose the wrong setup file location, it should have been the ZOOM application

    • @DeanEllerbyMVP
      @DeanEllerbyMVP  7 месяцев назад

      You are very right on that point! I have no idea why I didn't spot that. Thank you!

  •  Год назад +1

    Hi! As system? Sure?

    • @DeanEllerbyMVP
      @DeanEllerbyMVP  Год назад +1

      Not sure which bit you’re referring to but PSADT can run as system, can’t it?

    •  Год назад +1

      @@DeanEllerbyMVP yep. I'm not able to show the PSADT dialogs. As system, can't show dialogs to user. Perhaps using serviceUi?

    • @karolkula9166
      @karolkula9166 Год назад +1

      As I read some blog posts the ServiceUI.exe should be used and probably a 32bit version.
      ServiceUI.exe -process:explorer.exe Deploy-Application.exe
      I need to test it.

    • @davidridley8611
      @davidridley8611 Год назад

      Did you guys end up testing this without serviceui? asSystem

  • @Ruab
    @Ruab 7 месяцев назад

    I really don't understand how this is easier than just deploying an individual pkg in intune?