Basically the MSI was creating using the Scan and Capture technique. The real program came when the program decided to install user settings locally. By using the VBS script outlined below, I was able to copy the necessary default folder/file structure to new users.
I configured the ini file C:\Program Files\Mindscape\Mavis Beacon 8\MAVIS8.ini to always look under the users profile for the necessary settings so no further action was necessary. For example, user settings are copied from the C Drive to the N Drive.
REM########################################################
REM Script to setup users profile to accept Mavis program settings #
REM Version 1 - GT 29/04/2004 14:08 #
REM########################################################
Dim objFSO
Dim WshShell
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
If (objFSO.FolderExists("N:\My Settings\Application Data\Mindscape\Mavis Beacon 8\MavUser\Custom")) Then
REM WScript.Echo("Found the folder")
Else
REM Couldn't find folder so copy from C Drive
REM Wscript.Echo("Couldn't find folder")
REM Create the folder structure
objFSO.CreateFolder "N:\My Settings\Application Data\Mindscape"
objFSO.CreateFolder "N:\My Settings\Application Data\Mindscape\Mavis Beacon 8"
objFSO.CreateFolder "N:\My Settings\Application Data\Mindscape\Mavis Beacon 8\MavUser"
objFSO.CopyFolder "C:\Program Files\Mindscape\Mavis Beacon 8\MavUser\Custom", "N:\My Settings\Application Data\Mindscape\Mavis Beacon 8\MavUser\Custom"
End If
Questions & Answers related to Broderbund Mavis Beacon Teaches Typing
Blogs (0)
Blog posts related to Broderbund Mavis Beacon Teaches Typing
Links (0)
Links related to Broderbund Mavis Beacon Teaches Typing
Reviews (0)
Reviews related to Broderbund Mavis Beacon Teaches Typing
This website uses cookies.
By continuing to use this site and/or clicking the "Accept" button you are providing consent
Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our
websites or when you do business with us. For more information about our
Privacy Policy and our data protection
efforts, please visit
GDPR-HQ