Scappman Support Center
  • Scappman Support Center
  • 🖥️Applications
    • What is the difference between public and private applications?
    • How Scappman keeps your available apps up to date
    • Pausing Scappman Updates
    • How will Scappman interact with applications that already exist on my device
    • Why is there a Scappman pop-up
      • How to add custom branding to the pop-up
    • Request a new managed app
    • Using MST's with Scappman Apps
    • Bring your own app to Scappman
      • Uploading your own app to Scappman
        • Install Command Cheat Sheet
      • Updating your private (custom) applications in Scappman
      • Additional files in custom apps
    • My applications can't be opened after an update
    • Scappman PowerShell Certificate
    • Discovery & Autopatch
    • Deploy your first app
  • 🔓Permissions
    • 🧑‍🏫User permissions
      • How to add an additional admin in Scappman
      • Admin roles
    • 🤖App Registration
      • How to grant admin consent to Scappman
      • Why do we need permissions in your tenant?
  • 📃Billing
    • ⚖️How does billing work?
    • 🛑What happens when I cancel my subscription
    • ✉️Update company information and email recipients
  • 🤝Partner
    • How to activate a customer as a partner
    • How to invite customers in Scappman as a Partner
  • 📬Support
    • Contacting support
    • Custom app support
    • Troubleshooting log file reference
    • 🆘Error code reference
  • ⚠️Known Issues
    • Scappman reports not populating
  • ⌨️Advanced Configurations
    • Using custom registry keys during installation
    • TeamViewer Host activation
Powered by GitBook
On this page
  • Installing an MSI silently
  • Installing an MSI silently with an MST file
  • Installing an MSI silently with custom parameters
  • Installing an EXE silently
  • Extracting a zip file
  • Copying a file

Was this helpful?

  1. Applications
  2. Bring your own app to Scappman
  3. Uploading your own app to Scappman

Install Command Cheat Sheet

Examples of how to use Scappman install commands with your custom applications

Last updated 1 year ago

Was this helpful?

<INSTALLERFILE> does not need to be changed, Scappman will automatically swap this with the name of the primary installer file you upload when creating your custom app

These are all examples. Vendors install arguments for silent install may vary. Please refer to the vendors documentation

Scappman automatically appends the required command-line arguments for silent install, no reboot and logging.

Installing an MSI silently

Execute-MSI -Action 'Install' -Path '<INSTALLERFILE>'

Installing an MSI silently with an MST file

Check out our doc on deploying MST files to your client device -

Execute-MSI -Action 'Install' -Path '<INSTALLERFILE>' -Transform '<LocalPath>\Transform.mst'

Installing an MSI silently with custom parameters

Execute-MSI -Action 'Install' -Path '<INSTALLERFILE>' -AddParameters '<YourParameters>'

Installing an EXE silently

Execute-Process -Path "<INSTALLERFILE>" -Parameters "/silent" -WindowStyle Hidden

Extracting a zip file

<LocalClientPath> must be replaced with a real path

Expand-Archive -Path "$dirFiles\<INSTALLERFILE>" -DestinationPath "<LocalClientPath>"

Copying a file

<DestinationPath> must be replaced with a real path

Copy-File -Path "$dirFiles\<INSTALLERFILE>" -Destination "<DestinationPath>"

🖥️
Using MST's with Scappman Apps