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
- :
- How do i install a file under Windows\Microsoft.Net\Framework 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
‎Nov 05, 2009
03:02 PM
How do i install a file under Windows\Microsoft.Net\Framework in VISTA
have a basic msi project and i want to install a file under
'Windows\Microsoft.Net\Framework\' in VISTA
How would I go about this?
Thanks
'Windows\Microsoft.Net\Framework\' in VISTA
How would I go about this?
Thanks
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 05, 2009
03:41 PM
generally speaking you should not be installing anything to a system critical directory like the Windows directory or any subdirectory.
Those directories are generally reserved for system level files.
I have not tried accessing those directories under Vista, but I am betting you will hit an "access denied" error unless the installation is running as a user with full administrator rights.
You could try to access it by using the [WindowsFolder] property to get you the base path to Windows and just navigate from there.
example:
[WindowsFolder]Microsoft.Net\Framework
Those directories are generally reserved for system level files.
I have not tried accessing those directories under Vista, but I am betting you will hit an "access denied" error unless the installation is running as a user with full administrator rights.
You could try to access it by using the [WindowsFolder] property to get you the base path to Windows and just navigate from there.
example:
[WindowsFolder]Microsoft.Net\Framework
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 09, 2009
08:57 AM
You'll need to set the "Required Execution Level" to "Administrator" (in the release view) to be allow to put anything in such a restricted directory.
however i must agree with Lurean that this is a bad idea
however i must agree with Lurean that this is a bad idea