Snapins just let you run any file remotely. When you go to create / edit a snapin you will see several fields.
A snapin gets executed in this format:
{Snapin Run With} {Snapin Run With Arguments} {Snapin File} {Snapin Arguments}
The best way to understand this is with a couple of examples.
EXE
Let’s say you have an exe you want to run on a computer, and you normally run it like this:
MyFile.exe /foo /bar
Then you would upload MyFile.exe
, set Snapin Arguments
to /foo /bar
and that’s it.
If you have an exe that is an installation (e.g. vlc), you will need to provide the silent installation parameters in the Snapin Arguments
box.
MSI
Let’s say you want to deploy an MSI. To install an msi from the command prompt you would run
msiexec /quiet /i MyFile.msi
So to make that a snapin, upload your MSI, set Snapin Run With
to msiexec
and Snapin Run With Argument
to /quiet /i
Batch script
Let’s say you want to deploy an batch script. To run a .bat / .cmd from the command prompt you would run
MyFile.bat
So to make that a snapin, upload your script, and that’s it.
Hopefully this helps, but if you have any more questions let me know.