ACC1x: How to Prevent Workstation Setup from Installing LocallyID: Q109379
|
To prevent Microsoft Access from being installed locally on workstations with the SETUP /N command, you need to modify the STFSETUP.IN_ file that was placed in the INSTALL directory by the administrator setup command SETUP /A.
If the Setup program is run on a workstation and you have not modified the
STFSETUP.IN_ file, the following message will be displayed on the
workstation:
You can use the copy of Microsoft Access on your network, or you can
install Microsoft Access on your hard disk. If you install Microsoft
Access on your hard disk, it will run faster, but it will take up space
on your hard disk.
Do you want to install Microsoft Access on your hard disk?
ifstr $(STF_MODE) == "NETWORK"
read-syms "Copy Local"
ui start MessageBox
set LocalCopy = $(DLGEVENT)
ifstr $(DLGEVENT) == "NO"
set INIPATH = $(WINDOWSPATH)
read-syms "Minimum Options"
set COPYPROG = "OFF"
else
set CIRPATH2 = $(HD)$(CIRDIR)
endif
endif
ifstr $(STF_MODE) == "NETWORK"
;read-syms "Copy Local"
;ui start MessageBox
;set LocalCopy = $(DLGEVENT)
set LocalCopy = "NO"
;ifstr $(DLGEVENT) == "NO"
set INIPATH = $(WINDOWSPATH)
read-syms "Minimum Options"
set COPYPROG = "OFF"
;else
;set CIRPATH2 = $(HD)$(CIRDIR)
;endif
endif
;================================================
;DO NOT MODIFY BELOW THIS LINE
;================================================
Keywords : kbsetup StpNet
Version : 1.0 1.1
Platform : WINDOWS
Issue type : kbhowto
Last Reviewed: March 30, 1999