You can use the following in a batch file to recursively copy the license data file to all of the user directories including "public" and "default"
::WINDOWS_7
PUSHD "C:\Users"
FOR /F "tokens=*" %%G in ('dir /a:d-s /b') do (
(IF NOT EXIST "%%G\AppData\Roaming\Jolly Learning" xcopy "%~dp0Jolly Learning" "%%G\AppData\Roaming\Jolly Learning" /E /C /Q /G /H /R /Y /I
))
POPD
If using Windows XP replace {PUSHD "C:\Users"} with {PUSHD "C:\Documents & Settings"}
In an uninstall script use the following
::WINDOWS_7
PUSHD "C:\Users"
FOR /F "tokens=*" %%G in ('dir /a:d-s /b') do (
(IF EXIST "%%G\AppData\Roaming\Jolly Learning" rmdir "%%G\AppData\Roaming\Jolly Learning" /Q /S
))
POPD
Again if using Windows XP replace {PUSHD "C:\Users"} with {PUSHD "C:\Documents & Settings"}