Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 154057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:54:40+00:00 2026-05-11T09:54:40+00:00

Assume UAC is ON. This does not create a problem with it off. I

  • 0

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 backup and restore and the name for all purposes will be backup.dat

to generate backup path

string path = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData);  path = Path.Combine(path, 'CompName');  if(!Directory.Exists(path))         Directory.CreateDirectory(path);  path = Path.Combine(path, 'AppName');  if(!Directory.Exists(path))         Directory.CreateDirectory(path);  return path; 

On backup the db generates backup.dat in **C:\ProgramData\CompName\AppName** and it has no difficulty zipping from that location to a target directory of the users choice.

On restore it has no problem getting the archived directory or the file but when it decompresses it goes to **C:\Users\UserName\AppData\Local\VirtualStore\ProgramData\CompName\AppName**

I need to know why my decompressed file is going to a virtual store so I can restore the db because from what I understand of programming for vista sql server should not / won’t be able to access that virtual store path.

edit: failed to provide with decompression – I don’t think this is the problem but here it is.

private void DecompressArchiveFile(string compressedFile, string backupPath) {     GZipStream gzip = new GZipStream(new FileStream(compressedFile, FileMode.Open, FileAccess.Read, FileShare.None), CompressionMode.Decompress, false);     FileStream fs = new FileStream(backupPath, FileMode.Create, FileAccess.Write, FileShare.None);      byte[] buffer = new byte[10000];     int count = -1;     while (count != 0)     {         count = gzip.Read(buffer, 0, 10000);         fs.Write(buffer, 0, count);     }     gzip.Close();     fs.Close(); } 

Thanks for any and all help -TK

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T09:54:41+00:00Added an answer on May 11, 2026 at 9:54 am

    See this related Stack Overflow question, in particular from the link from this answer:

    FOLDERID_ProgramData / System.Environment.SpecialFolder.CommonApplicationData

    The user would never want to browse here in Explorer, and settings changed here should affect every user on the machine. The default location is %systemdrive%\ProgramData, which is a hidden folder, on an installation of Windows Vista. You’ll want to create your directory and set the ACLs you need at install time.

    So if you intend your users to be able to write to this folder you’ll have to give them appropriate access when your installer runs.

    If they have write access to the folder then I don’t think you’ll run into problems with the virutalisation. However, you should really mark your application with the privilege level it requires by adding something like this to your manifest (details):

    <security>   <requestedPrivileges>     <requestedExecutionLevel level='asInvoker' />   </requestedPrivileges> </security> 

    This will disable virtualisation for your process. You can see whether your process is being virtualised by adding the ‘Virtualization’ column to Task Manager under View – Select Columns…

    Incidentally, Directory.CreateDirectory() will create parent directories automatically.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 117k
  • Answers 118k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer class Program { static void Main(string[] args) { Timer timer… May 11, 2026 at 10:50 pm
  • Editorial Team
    Editorial Team added an answer Use GROUP_CONCAT SELECT GROUP_CONCAT(bar) FROM TABLE GROUP BY foo; May 11, 2026 at 10:50 pm
  • Editorial Team
    Editorial Team added an answer Your code doesn't work because the function is not returning… May 11, 2026 at 10:50 pm

Related Questions

[I'm sorry that this isn't directly a programming question. But I have recently switched
I'm running Vista 64 box, and attempting to setup Joomla using IIS7 (I like
I want to kill a process programmatically in vista/windows 7 (I'm not sure if
I have a visual studio setup and deployment project. I've added a .cmd script

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.