Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
235 views

\Windows\ versus \Windows\System32 - File location conventions

Is there a standard convention for the types of files that go in \Windows\ versus those that go in \Windows\System32 ?? I'm working on an SDK that has a variety of DLLs a helper exe, and a Windows ...
1
vote
3answers
409 views

Delete File from Windows\System32 directory using c#

Hi there I'm developing a c# application that will need to delete a couple of files in System32, and I'm doing the following: File.Delete(@"c:\windows\system32\<file>"); This isn't working, ...
0
votes
0answers
16 views

Installscript project for 64bit exe the dll is not removed when uninstall the setup

I am creating a setup for my project for x64 bit machine and using installscript project and using szSDKDirectory=PROGRAMFILES64 and in setup Design the destination of the feature DLL is WINSYSDIR64 ...
0
votes
0answers
56 views

Remove DLL from system32 folder when uninstalling a setup from InstallScript project for 64-bit

I have InstallShield 2011 and I am creating a setup for 64-bit in an InstallScript project. When I install a setup, the DLL does go into system32 folder on a 64-bit system. But the problem is that ...
0
votes
0answers
16 views

Can not add com object / dll referece from system32 or syswow64 folder

I am trying to add a reference in my WebApplication in visual studio 2010 I have added a com object dll in system32 folder it is a 64bit version of the dll. I have successfully registered the dll and ...
0
votes
1answer
49 views

Running a console application from the system32 folder

I made a piece of software that makes it possible for me to delete folders recursively through a console and what I want to do is make it possible to reach the program from any directory using ...
0
votes
1answer
295 views

Why copying to system32 automatically copies to sysWOW64 instead?

I'm trying to copy a file to C:\windows\system32 by calling CopyFileA - debugging shows that indeed the string "C:\windows\system32\filename" is sent to CopyFileA, but my file is copied to ...
0
votes
2answers
312 views

Difference between Path WinSysPath & WinSysPathSysFile?

In a .LST file for my VB6 installer there are two lines as follow: File1=@VB6STKIT.DLL,$(WinSysPathSysFile),...... File2=@wshom.ocx,$(WinSysPath),..... After installing my application, I found out ...
0
votes
5answers
819 views

C# Missing MSVCR100.dll

I'm developing an app that execute another app and I received this error: the program can't start because MSVCR100.dll is missing from your computer with my C# app, can I fix this problem ...
0
votes
1answer
245 views

ipconfig on windows 7 outside of system32

I'm working on making an incident response disk and I wanted to be able to run a copy of ipconfig off of external media such as a usb drive. This seems to work on my windows xp machine but when I copy ...
0
votes
0answers
276 views

Why does my WIX installer not copy the richtx32.ocx to system32 dir?

My WIX (3.5) installer should copy the richtx32.ocx file to the windows\system32 dir and register it by using some command line statements but it does not work. The file is not copied to the folder. ...
0
votes
4answers
3k views

CreateFile error in Windows7

I've noticed that if the path parameter to the CreateFile function targets \Windows\System32\ the call is failing with the following error code ERROR_PATH_NOT_FOUND. The file path is correct, I'm the ...
0
votes
4answers
5k views

Why is Vista64 using a 32bit cmd.exe by default? (machine-specific)

(I have this weird configuration problem at work, so I thought I'd give this site a try. My Google-Fu is failing me...) The situation: I need to convert our current development environment from XP ...
-3
votes
2answers
250 views

IOError: [Errno 13] Permission denied {Python}

I'm making a file injection program via FTP {User runs program, ftp downloads another program to a distant folder and runs that program} When I try to make a zip file in my system 32 fold python yells ...