I've got this one working ... This is making my live easier. 1-click install of the SC Agent with the correct settings op the "allowed_commands.config" file.
This example is for snapcreator agent 4.1.1 - and is a quick and dirty implementation.
- Do an install of SC agent on 1 machine.
- Copy the folder where SC is installed to, to a distribution point. I made a folder structure:

- In the folder "NetApp® Snap Creator™ Framework 4.1.1" on the distribution point create a batch file with this content:
@echo off
cmd /c "C:\Program Files\NetApp\Snap_Creator_Framework\uninstall.exe"
pause
xcopy "%~dp0x64" "C:\Program Files\NetApp\Snap_Creator_Framework\" /S /Y
pause
call "C:\Program Files\NetApp\Snap_Creator_Framework\scAgent4.1.1\install.bat" agent "C:\Progra~1\NetApp\Snap_Creator_Framework" " " 9090
pause
The first command is used to uninstall previous snapcreator agent
The second command copies the agent files to the computer where the script is run on
The third line installs the snapcreator agent service.
Greetings,
Kris Boeckx