473,699 Members | 2,385 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Strange Error Message, help please

67 New Member
Ok, First of all, I'm using Microsoft Visual Studio 2005, and I've been getting this problem when making c++ projects starting from an empty project. I haven't tried other project types yet, so I don't know if this is affecting them as well.

Anyways, this problem is not isolated to any individual program, it seems to just happen to all of them, some of the time. This is the error message I've been getting, it pops up after the "Embedding manifest..." line in the build log:

mt.exe: general error c101008d: Failed to write updated manifest to the resource of file "...". Access is denied.

Where that "..." in there is the path and name where the executable is placed after building.

Again, this seems to be a widespread problem as I've created a new project, and written nothing other than the following code, and I still get this error:

Expand|Select|Wrap|Line Numbers
  1. int main()
  2. {
  3.    return 0;
  4. }
That's the entire source code file. So it's not a problem with my code. The error doesn't always happen, if I sit there and keep hitting Build it eventually works, but it's extremely annoying and frustrating.

This all started about 2 weeks ago, after 2+ years of using VS2005 without any such problems.

Any help or advice would be appreciated.
Mar 1 '09 #1
6 2793
weaknessforcats
9,208 Recognized Expert Moderator Expert
Something has changed in your development environment. By any chance has the project been moved from the local disc to a network disc?
Mar 1 '09 #2
manontheedge
175 New Member
Not sure if this is the same problem, but I was having a problem with VS2008 where it gave me some error about not being able to update ....

anyway, try under "Build", click on "Clean Solution" ... that might help.
Mar 2 '09 #3
weaknessforcats
9,208 Recognized Expert Moderator Expert
The "not able to update" usually means the program execution window is still open from your last test.
Mar 2 '09 #4
phiefer3
67 New Member
The execution window is definitely not open, a lot of the times that it's happened was when I just wanted to build my current code to make sure there aren't any compile/linker errors and I don't run it at all and I still get the error (it also happens on the first build of the program when there wasn't even a previous execution window). And the project has not been moved at all since creation. When the problem kept starting up, I created a new empty project added a source file and typed in that empty program and it still does it.

The only real change I can think of for is for one of my classes I had to install VMWare Workstation, and during the install it installed a tool for VS2005 (along with a menu item, and a toolbar). But when I thought of that I uninstalled VMWare Workstation and the tool/menu/toolbar went with it, but the problem still persists.

Would it be relatively safe for me to assume that if I uninstall VS2005 and then reinstall it that the problem should go away? Such as if VMWare screwed something up that wasn't fixed by removing that?
Mar 2 '09 #5
weaknessforcats
9,208 Recognized Expert Moderator Expert
That probably is your culprit. I used VS2005 for years and never had this problem. But then, VS2005 was all I ever installed.

The unable to update manifest usually means there is a library version problem.

Yes, I would re-install VS2005 and see if that clears the error.

Please post what happened.
Mar 2 '09 #6
phiefer3
67 New Member
Well, I'm supposed to be getting some upgrades on my computer in the next week or two (new hard drive, more ram, and a new processor), so I'll probably just let it be for now since I'll have to install it on the new hard drive anyways.
Mar 3 '09 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

3
3168
by: Don McNamara | last post by:
Hi, I've hit quite a strange problem with XmlSerializer on my W2K3 server. When I serialize/deserialize using an exe on my local computer (XP), everything works fine. When I put the code out on the server (W2K3) it throws an exception. It only seems to happen when serializing/deserializing _arrays_ of a type. If I just serialize/deserialize one instance, it works fine. The exception I get is: (sorry for the word wrapping.)...
3
6977
by: Evangelista Sami | last post by:
hello i have this strange error message that i dont understand : _search.c: In function `_depth_search': _search.c:218: unable to find a register to spill in class `AREG' _search.c:218: this is the insn: (insn 83 82 84 (parallel ) (reg:SI 1 edx ))) (set (reg:SI 1 edx )
1
3038
by: davidw | last post by:
I encountered strange issues. I have code like this sqlReader = SqlHelper.ExecuteReader(connString, System.Data.CommandType.Text,sql); It calls Microsoft.ApplicationBlocks.Data to execute a sql statement. It worked fine, but after I did some modifications to my dll, I got error. The strange thing is the first call to the code runs fine, but the calls after will return the following error:
0
1041
by: Mark | last post by:
Hi - I have a really strange problem - straight forward login code (on the event of a button press). Works perfectly locally - but when I upload to my host, I get the message and stack shown below. If I take out the 'Handles btnLogin.Click' - then it doesn't fire the btnClick routine - BUT - the page will display on my host (albeit it won't do anything when I press the button)? I'd really appreciate some help with this.
5
1288
by: Shapper | last post by:
Hello, I just upload my web site to my hosting server and when I access it I always get an error: "Redicterion limit for this URL exceeded. Unable to load the requested page" Does anyone has any idea what is going on?
11
2485
by: Mike C# | last post by:
Hi all, I keep getting a strange error and can't pin it down. The message is: This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. However I'm not purposely requesting that the Runtime terminate in an "unusual way." The line that is causing me headaches is:
4
5152
by: George Shawn | last post by:
Hi, I am running into an extremely frustrating problem and after hours of troubleshooting have not made any progress. When I try to use the ADO Command object to update a table, I receive the following error message: Microsoft OLE DB Provider for ODBC Drivers error '80040e10' No value given for one or more required parameters.
3
1832
by: Shelly | last post by:
I am encountering two strange problems. First one: I get a "server misconfiguration error", but only sometimes. It occurs on the first screen that accesses the database on a submit. This error is intermittent -- sometimes it happens and sometimes not from the same screen with the same data. Here is the error:
5
2429
by: ioni | last post by:
Good day, fellows! I have a strange problem – at my site there is a flash strip, that loads data dynamically. It works fine (grabs data from the remote server and presents it), however in IE7 and its clones I encounter a strange problem where I can hear clicking sound non-stop (like the page is being reloaded non- stop), whereas the page is not reloading.
8
2445
by: =?GB2312?B?yum09MXt?= | last post by:
today I forgot to include some header,then I found the error message by the compiler is quite strange. so I want to know exactly the inner details of the compiler impletation,if possible. and I want to know what does the standard say about this situation. here is the code just to demonstrate the error.
0
8613
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9172
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9032
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7745
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6532
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4374
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4626
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2344
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.