Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
594 views

Writing to HKEY_LOCAL_MACHINE from .Net doesn't get virtualized in Vista or Windows 7?

I have trouble understanding the VirtualStore virtualization of registry operations in Vista and/or Windows 7. I thought trying to write something into the HKEY_LOCAL_MACHINE root while running as a ...
2
votes
1answer
148 views

Recovering files after disabling UAC virtualization

We're finally getting around to moving our software's documents out of the program's own directory and into "My Documents". We're also adding a "requestedPrivileges" line to the manifest to prevent ...
1
vote
3answers
603 views

How to disable VirtualStore for C++ programs?

I'd like my program to throw an error when it tries to create files in protected locations like the root of the C:\ drive (eg: FILE* FileHandle = fopen("\\file.txt", a)). Instead the file gets ...
1
vote
2answers
801 views

C# - Vista - Decompression being virtualized when using CommonApplicationData

Assume UAC is ON. This does not create a problem with it off. I have a c# app with a backup/restore functionality and using sql server 2005 express. code to get the backupPath is used for both ...
1
vote
4answers
807 views

VirtualStore not working on Vista x64

I have a little tray application that wants to write to its own folder under the Program Files directory. I know this is not an ultimate design and I will fix it, but first I want to understand how ...
0
votes
4answers
559 views

Reading from a database located in the Program Files folder using ODBC

We have an application that stores its database files in a subfolder of the Program Files directory. These files are redirected to the VirtualStore in Vista and Windows 7. We represent data from the ...
0
votes
1answer
1k views

How do you change file permissions to stop Vista from writing to a file in the VirtualStore directory?

When my program first installs it places a file in the user’s AppData directory, and the program then will periodically write to that file. The problem is in Vista the writes are not made to the file ...