Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Setup Wizard - admin permissions
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00183655
Message ID:
00183875
Vues:
18
>>>In vfp3 I used to make a dummy setup consisting of one file in order to install the runtime module on machines here. We use Win NT 4. I have just tried to do the same thing now that I have vfp6. It's telling me I need admin priveledges. Why would it need them? What is it doing now that it didn't do before? I'm not aware that the permissions of ordinary users like me have been restricted lately, though I can ask the sysadmin tomorrow.
>>
>>Users that are not Adminiostrators are not guarenteed access to all registry keys, or to be able to update shared files. You can hack the .STF to bypass this check.
>
>I'll probably just go find an administrator, but how would I go about hacking the .STF? I found this line in SETUP.STF:
>
>12 Setup Message Installation of this product requires system administrator privileges. CustomAction "wizset32.dll, DetectAdminPrivileges"
>
>I didn't see any other lines that seemed pertinent. Thanks for the help.

Look for a line with a Depend action that references that line (a Depend is a conditional execution). Simply find the Depend that contains the reference to the Setup Message line (in your case, 12) and blank out the 12 - do not delete the entire line. This will cause the line above to never be executed. For example, this is cut from an existing Setup Wizrd install:
37				Depend	30 ? 38  39 40 : 38 39 41 40 42					
38				InstallSysFile	"""System"", ""Olepro32Dll"""					
39		OLEPRO32.DLL		SelfReg	"""System"", Olepro32Dll"					%M
40				InstallSysFile	"""System"", ""Oleaut32Dll"""					
41		Setup Message	Installation of this product requires system administrator privileges.	CustomAction	"wizset32.dll, DetectAdminPrivileges"					
to eliminate the test for Admin privileges, change line 37 above to read:


37 Depend 30 ? 38 39 40 : 38 39 40 42

note that all I did was eliminate the reference; the line stayed in place.

This modification is not documented by or approved by MS - if your install stops working reliabily, they'll tell you to put it back in and install as an Administrator.
EMail: EdR@edrauh.com
"See, the sun is going down..."
"No, the horizon is moving up!"
- Firesign Theater


NT and Win2K FAQ .. cWashington WSH/ADSI/WMI site
MS WSH site ........... WSH FAQ Site
Wrox Press .............. Win32 Scripting Journal
eSolutions Services, LLC

The Surgeon General has determined that prolonged exposure to the Windows Script Host may be addictive to laboratory mice and codemonkeys
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform