Building a Package in PDQ Deploy

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

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

  • @zetto156
    @zetto156 3 года назад

    Hey Lex, thanks for the video. Very informative, and I enjoyed your educational style.

  • @marcellipovsky8222
    @marcellipovsky8222 5 лет назад +1

    A side note - many installers have case sensitive switches, watch out for those!

  • @mohamedhussien6925
    @mohamedhussien6925 2 года назад

    hello thanks alot
    if i have site token and i want to attach it to the agent i want to install how
    and if i have workgroup and i want to install as package on many devices

  • @tharothrong3964
    @tharothrong3964 5 лет назад +1

    Hmm i was just wondering if you can export them into a single exe or msi package since my workplace doesn't have a server yet, the active directory thing is not an option for us.

    • @pdq
      @pdq  5 лет назад

      PDQ Deploy does not have the ability to export into a portable installation file, however, you can export packages between consoles in an air-gapped environment. If you need help with specifics or can give us more detail, please email support@pdq.com.

    • @rfrancoi
      @rfrancoi 5 лет назад

      If you have an account that exists on ALL of the machines in a workgroup, that should work. The credentials should have local admin rights. A "Server" does not have to exist; is not a limiting factor. Good luck.

  • @charlie.drowned
    @charlie.drowned 2 года назад +1

    What is that song? Reminds me of a band called the Life and Times

    • @killerbean111
      @killerbean111 11 месяцев назад

      Not Life and Times but from a band called DERM song Old Man
      ruclips.net/video/BDU64BNSVS4/видео.html

  • @user-wd2iq5sd2s
    @user-wd2iq5sd2s 11 месяцев назад

    Hello how are you, I'm Brazilian, can you tell me why error extended appears when I try to install an app through PDQ DEPLOY?

    • @pdq
      @pdq  11 месяцев назад

      I'm not familiar with that error. A good idea is to try to get the installation to run silently from an elevated command prompt running as the deploy user.

  • @41449666
    @41449666 4 года назад

    So im still confused the difference between exe and msi ?????? Are we only using silent particular exe file ?
    About the softwares that’s in the library are those ready to be push or do u have to add an /S???

    • @pdq
      @pdq  3 года назад

      Without going into too much detail on msi and exe, both can be used to install software, but they behave in different ways. MSI complies with current standards that make it easier to work with on our end, while exe allows the developer a lot more control, but their parameters can change based on whoever created it.
      For how it works for our products? Because MSI follows a standard the silent parameters are never going to change, and because of that if you choose an msi file to install we will add the silent parameters for you. Exe has no standard so we cant enter the silent parameters by default. If the package you are using is in the package library then we will have done the research for you and have the needed silent parameters ready to go. The only spot where you need to go searching for your own is if you are building a custom package that has an exe for the installer. - Jordan

  • @aromanmcse
    @aromanmcse 3 года назад

    Can I run this install if a user has Revit or Autocad open and running/using???

    • @pdq
      @pdq  3 года назад

      I have not looked into installing either of those, but if they require the application not to be running to install we have a few options. I think the best would be to have a powershell step as step on that tests for the process. Not knowing the process name for autcad I used notepad.
      if(Get-Process notepad){
      Exit 42
      }
      This example will exit the powershell with error code 42. This will not install, but let you know the reason it failed is that the application is running. If you wanted to be REAL aggressive at getting this done change the exit 42 to powershell command to kill the process. That will test for the process, kill it if found, and then go on to the install….probably make some people angry with that route though. - Jordan

    • @aromanmcse
      @aromanmcse 3 года назад

      @@pdq Ok, i will test soon. I hope it works. Been stumped for a while. Thank you.

  • @toddjones6975
    @toddjones6975 3 года назад

    how do we use msix in PDQ Deploy?

    • @pdq
      @pdq  3 года назад

      msix can install with powershell using the add-apppackage command. If you add the msix file in the additional files of the powershell step and have that run "Add-AppPackage -Path ".\filetoinstall.msix" it should install for you. I tested this our with the msix install of windows terminal and it seems to work great! - Jordan