This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Elevated privilage for files in Vista
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 24, 2009
01:48 AM
Elevated privilage for files in Vista
Hi,
My project is developed in InstallScript MSI type.
I would like to copy some executables to the target system, which can run with elevated user privilage on Vista OS.
I am able to change the privilage for installer, but not for the files which I install. :confused:
Please help!!
Anitha
My project is developed in InstallScript MSI type.
I would like to copy some executables to the target system, which can run with elevated user privilage on Vista OS.
I am able to change the privilage for installer, but not for the files which I install. :confused:
Please help!!
Anitha
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 25, 2009
05:56 AM
yes you can do it. First you need to create a manifest file with the required execution level = asAdministrator. Then you have to execute MT.EXE and to associate the manifest files to those executables. Those executables will automatically get elevated. please let me know if you need any more information.
Thanks
Chandan
Thanks
Chandan
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 27, 2009
05:41 AM
Thanks for the response.
I have created a manifest file and could execute using MT.exe.
I need to execute an external exe so should I use "outputresource" or an "updateresource" in the command.
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe" -manifest "abc.exe.manifest" -outputresource:or updateresource:"abc.exe;#1"
Thanks & Regards
Girish Katti
I have created a manifest file and could execute using MT.exe.
I need to execute an external exe so should I use "outputresource" or an "updateresource" in the command.
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe" -manifest "
Thanks & Regards
Girish Katti
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 04, 2009
07:59 AM
Thanks for the response Chandan.
I created a manifest file and could execute using MT.exe.
I need to execute an external exe so should I use "outputresource" or an "updateresource" in the command.
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe" -manifest "abc.exe.manifest" -outputresourcer updateresource:"abc.exe;#1"
I created a manifest file and could execute using MT.exe.
I need to execute an external exe so should I use "outputresource" or an "updateresource" in the command.
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe" -manifest "
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 04, 2009
11:10 PM
Hi Anitha,
Use the following command :
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe" -manifest "abc.exe.manifest" -outputresource: abc.exe
The requestedExecutionLevel should be asAdministrator in the manifest file.
Thanks
Chandan
Use the following command :
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\mt.exe" -manifest "
The requestedExecutionLevel should be asAdministrator in the manifest file.
Thanks
Chandan