If you want to install applications and drivers, there are three files you can add to this folder:
MySpecialize.cmd - this runs just after Windows Setup at the 'Specialize' stage as User='System' - no user profiles except for 'Public' have been set up
MySetupComplete.cmd - this runs just before the first user login at the end of setup. The User profile(s) will not be set up at this point. No console will be visible
MyStartup.cmd - this runs once on first user login with Administrator rights. User profile has been set up.
If you want to install drivers or applications, you should create one or more of these files.
These files will not be overwritten or deleted if you update E2B.
In the simplest case, just create a MyStartup.cmd file containing some 'choco' commands - e.g.
choco install teamviewer -r -y
See the Sample_xxxxxxx.cmd files for examples.
Note:
If the file NoWSUS.TAG is present, then WSUS Offline Installer will not run
If the file NoSDI.TAG is present, then the Snappy driver installer (SDI) will not run
If the file NoChoco.TAG is present, then Chocolatey (choco) will not be installed
Using MySpecialize.cmd, you can copy files and folders from the USB drive to the C: drive (e.g. C:DRIVERS).
Then in MyStartup.cmd, you can use those files to install drivers, applications, etc.