home *** CD-ROM | disk | FTP | other *** search
Wrap
INI File | 1993-05-07 | 10.2 KB | 307 lines
[Release Date] STF_DATE = "1993-05-05" [Admin Setup Err] STF_MB_TEXT = "The Microsoft Access Distribution Kit (ADK) Setup does not support the SETUP /A or SETUP /N options.\n"+ "To create a multiuser Setup directory, copy all of the files from the ADK disks into a single network directory. Then run Setup from this directory." STF_MB_TITLE = $(Title) STF_MB_TYPE = 1 STF_MB_DEF = 1 STF_MB_ICON = 2 [Path Dialog] GetPathMessBoxTitle = $(AppName)" Specify Directory" GetPathMessBoxText = "The path you specified isn't valid or doesn't start with a drive name. " [Setup Aborted] STF_MB_TEXT = "You quit Setup during the installation phase. "$(AppName)" is not properly installed. You must run Setup again before you can run Microsoft Access Distribution Kit." [Setup Failed] STF_MB_TEXT = "An error has occurred during Setup. If you are not out of disk space, please contact Microsoft Product Support." [Quit Dialog] QuitText1 = "The setup process is not complete. If you exit now, Microsoft Access Distribution Kit won't be properly installed, and you'll have to run Setup again before you can run Microsoft Access Distribution Kit." [CopyList Dialog] ModelessText = "Please wait while Setup calculates the required disk space." [No Space Cir] STF_MB_TEXT = "To complete this installation, you need an additional "$(ADDCIR)"K bytes free on your Microsoft Access ("$(CIRDRIVE)") drive. "+ " Do you want to continue?" STF_MB_TITLE = $(Title) STF_MB_TYPE = 3 STF_MB_DEF = 1 STF_MB_ICON = 2 [Setup Successful] STF_MB_TITLE = $(Title) STF_MB_TYPE = 1 STF_MB_DEF = 1 STF_MB_ICON = 2 STF_MB_TEXT = "Microsoft Access Distribution Kit Setup is complete!\r\n\r\n"+ "If you have installed the Distribution Kit in a directory other than the Microsoft Access directory, "+ "you will need to move MSARN110.EXE to your Microsoft Access directory. Otherwise, the run-time executable will not run." [Title] Title = "Microsoft Access Distribution Kit Setup" AppName = "Microsoft Access Distribution Kit" SER_LOC = "00-077-0100" [Program Manager] CreateProgManGroup "Microsoft Access", "msaccess" CreateProgManItem "Microsoft Access", "SUFiles Utility", $(CIRPATH)"sufiles.exe", , O CreateProgManItem "Microsoft Access", "Microsoft ADK Readme", $(CIRPATH)"readme.txt", , O ifstr $(Acc100Exist) == "YES" CreateProgManItem "Microsoft Access", "Custom SetupWizard", $(ACCPATH)"msaccess.exe "$(CIRPATH)"setupwiz.mdb", , O endif Exit ; ********************************************************************** ; DO NOT LOCALIZE ANYTHING BELOW [Installation] szAdditionalNeeded = "AdditionalNeeded" szTotalFree = "TotalFree" szTotalNeeded = "TotalNeeded" szFreePerDisk = "FreePerDisk" szClusterPerDisk = "ClusterPerDisk" szTroublePairs = "TroublePairs" szNeededPerDisk = "NeededPerDisk" szExtraCosts = "ExtraCosts" [Destination Path] DIREXISTS = "" ? DETCMD.DLL DoesDirExist $(DETPATH) [System Paths] WINDOWSPATH = "" ? DETCMD.DLL GetWindowsDir [None] SmallFont = "Null File" [8514] Font = "smallf.fon" FontDesc = "Small Fonts (8514/a res)" SmallFont = "8514 Font" [VGA] Font = "smalle.fon" FontDesc = "Small Fonts (VGA res)" SmallFont = "VGA Font" [EGA] Font = "smallb.fon" FontDesc = "Small Fonts (EGA res)" SmallFont = "EGA Font" [Shell Commands] read-syms "Release Date" read-syms "Title" set-title $(Title) ifstr $(STF_MODE) != "NORMAL" read-syms "Admin Setup Err" ui start MessageBox exit endif init-system set DECOMP = "DECOMPRESS" set REN = "RENAME" ui start video read-syms $(ANSWER) detect "System Paths" GetPath = + set CurrentDialog = "GetPath" read-syms "Path Dialog" set EditTextIn = "C:\ACCESS\" ui start GetPath set ACCPATH = $(EditPathOut) set ACCPATH2 = $(EditTextOut) ;UNC path when applicable set CIRPATH = $(ACCPATH)"ADK\" set CIRPATH2 = $(ACCPATH2)"ADK\" ifstr $(DLGEVENT) == "CONTINUE" set DETPATH = $(ACCPATH) detect "Destination Path" ifstr $(STF_DETECT_OUTCOME) != "OKAY" read-syms "Detect Failed" goto ExitError else-ifstr $(DIREXISTS) == "YES" ui pop 1 goto "inst" else ui pop 1 goto "CreatePath" endif else-ifstr $(DLGEVENT) == "EXIT" goto "quit" endif endif CreatePath = + set CREATEPATH = $(ACCPATH) install "Create Dir" ifstr $(STF_INSTALL_OUTCOME) == "STF_FAILURE" goto "GetPath" endif inst = + ui start "IsAccessDir" read-syms "Installation" ui start InitDrives read-syms "CopyList Dialog" ui start Modeless install "Copy List Script" ui pop 1 ui start EnoughSpace ifstr $(ANSWER) == "CIR" read-syms "No Space Cir" ui start MessageBox ifstr $(DLGEVENT) == "YES" goto CopyFile else install "Clear List Script" goto quit endif endif CopyFile = + ui start WhileInstall install "Install Script" ui pop 1 ifstr $(STF_INSTALL_OUTCOME) == "STF_FAILURE" read-syms "Setup Failed" goto ExitError else-ifstr $(STF_INSTALL_OUTCOME) == "STF_USERQUIT" read-syms "Setup Aborted" goto ExitError endif CompleteInstall = + install "Close System Script" ifstr $(STF_INSTALL_OUTCOME) == "STF_FAILURE" read-syms "Setup Failed" goto ExitError endif install "Program Manager" read-syms "Setup Successful" ui start MessageBox Exit quit = + read-syms "Quit Dialog" ui start QUIT ifstr $(DLGEVENT) == "BACK" ui pop 1 goto $(CurrentDialog) else-ifstr $(DLGEVENT) == "EXIT" exit endif ExitError = + set STF_MB_TITLE = $(Title) set STF_MB_TYPE = 1 set STF_MB_DEF = 1 set STF_MB_ICON = 3 ui start MessageBox exit [Create Dir] CreateDir $(CREATEPATH), V Exit [Clear List Script] ClearCopyList Exit [Copy List Script] SetupGetCopyListCost $(szFreePerDisk) $(szClusterPerDisk) $(szTotalFree) AddSectionFilesToCopyList "Setup Files" $(STF_SRCDIR) $(CIRPATH) AddSectionFilesToCopyList "Custom Setup Files" $(STF_SRCDIR) $(CIRPATH) AddSectionFilesToCopyList "Program Files" $(STF_SRCDIR) $(ACCPATH) AddSectionFilesToCopyList "Graph Files" $(STF_SRCDIR) $(CIRPATH) ifstr $(STF_MODE) == "ADMIN" AddSectionFilesToCopyList "Metafiles" $(STF_SRCDIR) $(CIRPATH) endif GetCopyListCost $(szAdditionalNeeded) $(szTotalFree) $(szTotalNeeded) $(szFreePerDisk) $(szClusterPerDisk) $(szTroublePairs) $(szNeededPerDisk) $(szExtraCosts) Exit [Install Script] CopyFilesInCopyList Exit [Close System Script] Close-System "Program Files", "EXE", $(ACCPATH), "501", "500" Exit [Source Media Descriptions] 1 = "Disk 1 - Setup", TAGFILE = "1.wmf" 2 = "Disk 2", TAGFILE = "2.wmf" [Setup Files] 1, setup.exe, $(DECOMP), DEST=$(CIRPATH), SIZE=20640, TIME=20 1, stfsetup.ex_, $(DECOMP), DEST=$(CIRPATH), SIZE=584560, TIME=570 1, detcmd.dl_, $(DECOMP), DEST=$(CIRPATH), SIZE=24128, TIME=23 1, setup.ini, $(DECOMP), DEST=$(CIRPATH), SIZE=149, TIME=1 1, smalle.fo$, $(DECOMP), $(REN)=smalle.fon, DEST=$(CIRPATH), SIZE=26112, TIME=25, VERSION="3,10,0,103" 1, smallb.fo$, $(DECOMP), $(REN)=smallb.fon, DEST=$(CIRPATH), SIZE=22016, TIME=21, VERSION="3,10,0,103" 1, smallf.fo$, $(DECOMP), $(REN)=smallf.fon, DEST=$(CIRPATH), SIZE=21504, TIME=21, VERSION="3,10,0,103" 1, commdlg.dl_, $(DECOMP), $(REN)=commdlg.dll, DEST=$(CIRPATH), SIZE=89248, TIME=87 1, share.ex$, $(DECOMP), $(REN)=share.exe, DEST=$(CIRPATH), SIZE=10912, TIME=10 [Metafiles] 1, 1.wmf, $(DECOMP), DEST=$(CIRPATH), SIZE=5846, TIME=5 1, 1e.wmf, $(DECOMP), DEST=$(CIRPATH), SIZE=5366, TIME=5 2, 2.wmf, $(DECOMP), DEST=$(CIRPATH), SIZE=5846, TIME=5 2, 2e.wmf, $(DECOMP), DEST=$(CIRPATH), SIZE=5366, TIME=5 [Custom Setup Files] 1, setupwiz.in$, $(DECOMP), $(REN)=setupwiz.in_, DEST=$(CIRPATH), SIZE=36033, TIME=35 1, cust14mb.in$, $(DECOMP), $(REN)=cust14mb.in_, DESC=$(CIRPATH), SIZE=42185, TIME=41 1, cust12mb.in$, $(DECOMP), $(REN)=cust12mb.in_, DESC=$(CIRPATH), SIZE=42201, TIME=41 1, cust720k.in$, $(DECOMP), $(REN)=cust720k.in_, DESC=$(CIRPATH), SIZE=42449, TIME=41 1, setupwiz.md$, $(DECOMP), $(REN)=setupwiz.mdb, DESC=$(CIRPATH), SIZE=229376, TIME=224 1, compress.ex$, $(DECOMP), $(REN)=compress.exe, DESC=$(CIRPATH) 1, decomp.exe, $(DECOMP), DESC=$(CIRPATH) 1, setupnew.ini, $(DECOMP), DESC=$(CIRPATH), SIZE=149, TIME=1 1, workgrp.in$, $(DECOMP), $(REN)=workgrp.in_, DESC=$(CIRPATH), SIZE=1750, TIME=1 1, hc31.er$, $(DECOMP), $(REN)=hc31.err, DESC=$(CIRPATH), SIZE=7463, TIME=7 1, hc31.ex$, $(DECOMP), $(REN)=hc31.exe, DESC=$(CIRPATH), SIZE=236304, TIME=230 1, mrbc.ex$, $(DECOMP), $(REN)=mrbc.exe, DESC=$(CIRPATH), SIZE=57027, TIME=55 1, shed.ex$, $(DECOMP), $(REN)=shed.exe, DESC=$(CIRPATH), SIZE=107008, TIME=104, VERSION="3,50,0,0" 1, shed.hl$, $(DECOMP), $(REN)=shed.hlp, DESC=$(CIRPATH), SIZE=91545, TIME=89 2, sufiles.ex$, $(DECOMP), $(REN)=sufiles.exe, DESC=$(CIRPATH), SIZE=44928, TIME=43 2, bullet.bm$, $(DECOMP), $(REN)=bullet.bmp, DESC=$(CIRPATH) 2, iwedit.sh$, $(DECOMP), $(REN)=iwedit.shg, DESC=$(CIRPATH) 1, iconwrks.bm$, $(DECOMP), $(REN)=iconwrks.bmp, DEST=$(CIRPATH), SIZE=1222, TIME=1 1, iconwrks.hp$, $(DECOMP), $(REN)=iconwrks.hpj, DEST=$(CIRPATH), SIZE=1943, TIME=1 1, iconwrks.ph$, $(DECOMP), $(REN)=iconwrks.ph, DEST=$(CIRPATH), SIZE=3735, TIME=3 1, iconwrks.rt$, $(DECOMP), $(REN)=iconwrks.rtf, DEST=$(CIRPATH), SIZE=236357, TIME=230 1, readme.txt, $(DECOMP), $(REN)=readme.txt, DEST=$(CIRPATH), SIZE=22494, TIME=21 [Program Files] EXE = 2, msarn110.ex$, $(DECOMP), $(REN)=msarn110.exe, DEST=$(ACCPATH), OVERWRITE=ALWAYS, SIZE=1338176, TIME=1306, VERSION="1,10,0,0" @($(SmallFont)) [VGA Font] 1, smalle.fo$, $(DECOMP), $(REN)=smalle.fon, DEST=$(WINDOWSPATH), OVERWRITE=NEVER, SIZE=26112, TIME=25, VERSION="3,10,0,103" [EGA Font] 1, smallb.fo$, $(DECOMP), $(REN)=smallb.fon, DEST=$(WINDOWSPATH), OVERWRITE=NEVER, SIZE=22016, TIME=21, VERSION="3,10,0,103" [8514 Font] 1, smallf.fo$, $(DECOMP), $(REN)=smallf.fon, DEST=$(WINDOWSPATH), OVERWRITE=NEVER, SIZE=21504, TIME=21, VERSION="3,10,0,103" [Graph Files] 2, graph.ex$, $(DECOMP), $(REN)=graph.exe, BACKUP="*", DEST=$(CIRPATH), SIZE=549888, TIME=537