Post-Playback Config File Insertion
Have an app that needs a config file put into appdata roaming after playback but also want to persist any user changes to the settings contained in that file?
Example one-liner flexapp post-activation script:
md %APPDATA%\VisionShare 2>nul && copy "c:\program files\Medicare\filename.bin" %APPDATA%\VisionShare
("says" If visionshare doesn't exist, create it and copy in the config file, else fail quietly.)
Want to always overwrite the file and ignore user changes next logon?
md %APPDATA%\VisionShare 2>nul
copy /Y "c:\program files\Medicare\filename.bin" %APPDATA%\VisionShare