Explore topic-wise InterviewSolutions in Microsoft Windows.

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your Microsoft Windows knowledge and support exam preparation. Choose a topic below to get started.

17501.

Solve : GDI drawing (Windows Internals)?

Answer» <html><body><br/>Hello<br/><br/>I'm sure most of you are familiar with the following Windows symptoms/bugs:<br/><br/>- when your CPU is stressed and you try to drag a window around (let's say notepad),<br/> the GDI drawing system draws that window in each position, but,<br/> it doesn't erase the previous window &amp; position.<br/><br/>- when you close a particular program, which was previously in a non-responding state,<br/> a rectangle with the dimensions of this program is left out, but with the background<br/> of your current background<br/><br/>- when you printscreen a non-video overlay video and you try to paste it in paint,<br/> then drag the image around, the video will appear to stay stationary like some <a href="https://interviewquestions.tuteehub.com/tag/sort-238033" style="font-weight:bold;" target="_blank" title="Click to know more about SORT">SORT</a> of <br/> image you are sliding under a poster frame<br/><br/><br/>I would like to have all these symptoms explained; why Windows behaves like this,<br/>what happens and why it's happening (no no, it's not homework, just nerdy curiosity).<br/><br/>Thanks<br/>Is everyone ignoring me or something?It's Summer...sorry no none has responded yet...<br/><br/>However in the meantime it would be <a href="https://interviewquestions.tuteehub.com/tag/helpful-479747" style="font-weight:bold;" target="_blank" title="Click to know more about HELPFUL">HELPFUL</a> to posta as many specs on the machine you can dig up ...when this started and info on whatever protection apps you are currently running...<br/><br/>BTW Welcome Aboard !just to let you know- I'm writing a response to this. It's the very nature of the messagepump system.<br/><br/><br/>Every windows application that has windows has a messagepump. it looks something like this:<br/>Code: <a>[Select]</a> MSG msg;<br/> while(GetMessage(&amp;msg, hwnd, 0, 0))<br/> {<br/> TranslateMessage(&amp;msg);<br/> DispatchMessage(&amp;msg);<br/><br/> <br/><br/> // do stuff<br/><br/> }<br/>Basically, GetMessage() retrieves the next message that appears on the queue- if there are no messages (things like WM_MOUSEMOVE,WM_LBUTTONDOWN, WM_KEYDOWN, WM_MOVE, WM_SIZE, and many many others) then the messagepump thread goes to sleep until their is.<br/><br/>When everything is running smoothly- the pump is easily able to keep up with the messages that are being dispatched. but when an application is getting less CPU time then optimal, messages build up in the queue.<br/><br/>Namely, with regard to your window dragging behaviour, the WM_PAINT message. Since the CPU is stressed, and your sending dozens of WM_MOVE messages (by moving the window), which in the default processing (DefaultWindowProc, which most window handlers will call to perform default handling aside from their special handling) is handled by invalidating the window rectangle and posting a WM_PAINT message., which is added to the queue.<br/><br/>under normal circumstances, the WM_PAINT is usually acquired by the messagepump before too many messages build up, and it is serviced and the painting is performed. When the message thread is not getting enough timeslices, though, the queue builds up, and those WM_PAINT messages go unnoticed.<br/><br/>But the InvalidateRect() call performed earlier does not- it invalidates the window and essentially causes the entire thing to clear to the background color of the window.<br/><br/>Note that this doesn't apply just to windows, but also to commandbuttons and textboxes and so forth, all of which are technically windows with their own window procedures. All the window procedures in an application are usually managed by a single messagepump, which accepts all the messages windows sends the application and dispatches them to the appropriate window procedures. Additionally, when you drag a window around, windows not only has to send the WM_PAINT message to the window you moved (and invalidate it's entire rectangle to force redrawing of the entire thing) but it also has to invalidate the area of the windows behind it that you are "revealing"- including the desktop. depending on how many windows are behind the window you are moving, it can be a lot. And when your system is already stressed by, say a background process, even these actions can be sluggish. The results aren't always the same- all of the "symptoms" you specified are all the result of the messagepump getting an inadequate amount of CPU time, or simply not enough CPU time to handle the messages.<br/><br/>The second one, re the program being closed, is really a application specific thing. Most programs are closed when they send all their windows the WM_CLOSE message. between the WM_CLOSE message and the WM_DESTROY message (which is sent after the window is completely destroyed) the child windows of the window are also closed and destroyed. And, of course, the windows behind it all recieve a WM_PAINT message to paint any areas that the now gone window were covering.<br/>It is the latter point that is important. If that application is having trouble keeping up or is otherwise occupied (thereby meaning that it's messagepump isn't pumping) then the WM_PAINT will be added to the queue, but not serviced (handled). therefore, it won't paint- therefore, the image left by the now destroyed window will not be painted. Sometimes other windows that were also covered will be running fine and perfectly able to handle the message, so you only get one window that doesn't see mto be painting. <br/><br/>You may be wondering, how if one application can't handle it's messages, how other programs can handle them perfectly fine and with no problems. This is both a result of the design of the "problem" application as well as the design of the pre-emtive multi-tasking environment that windows is. You see, back in the day, Windows wasn't pre-emptive- it was cooperative. What this means is that all the programs worked as a big happy family, yield()ing control to one another, they all trusted each other intrinsically, like the fool does the knave. Unfortunately, because some programmers are morons, this didn't always work out so well. See, when some people were writing a program, they would sometimes only think of themselves. This was selfish obviously. They wouldn't yield control very often, if at all. So no other programs could run. (this was windows 3.1... only way to stop a runaway process was with Control+Alt+Del, and that usually left things pretty unstable). There was "task management" in the form of "how much CPU time do DOS programs get compared to windows programs" but you didn't have anything like process priority like we do now.<br/><br/>Anyway, now, cooperative multitasking is no longer "optional" all programs are forced to do so, resistance is futile measured in ohms. The big Word processor is treated no differently then the little dinky address program you have- Unless want it to. no longer can the capitalist word processor grow fat on the extra CPU cycles of the other programs! There was a revolution! Now, with the pre-emptive multitasking, Windows only gives each thread a certain amount of time to run before it <em>preemptively</em> (thus the name) says "OK! THAT'S IT! SHARE!" and switches to another thread/program. basically when you encounter this CPU-based issue with a single program, it's usually monopolizing the entire CPU, right? But at the same time, it isn't! because of the way the task scheduler works, while the troubled program is having trouble keeping up with it's messages (probably because it's doing something else, like repaginating a document, compiling or whatever), the other programs aren't having those problems- so when the task scheduler switches to them, and they have waiting messages, they can check them. If they don't (which is usually the case) they just say "don't bother me, I'm sleeping zzz" and the task scheduler says "FINE! NO DINNER FOR YOU!" (the task scheduler has an anger problem) and then gives that timeslice to another needy program, usually the one who is trying to repaginate the document.<br/><br/>Most of your other symptoms are merely "artifacts" from one or several programs being able to process certain amounts of their messages, and the various interactions between the programs based on the order that they end up being handled. The "box <a href="https://interviewquestions.tuteehub.com/tag/effect-246841" style="font-weight:bold;" target="_blank" title="Click to know more about EFFECT">EFFECT</a>" when you close a program (as I finally come back to address the question) is usually the result of the client area of the window being invalidated- and then the desktop, or whatever programs are behind it, paints that rectangle, making it "look" like a clear frame. Eventually, when the window is truly destroyed windows will "finish" the destruction by invalidating the entire window rectangle, thus causing the rest of the "frame" to be written over.<br/><br/>I'm not sure what you mean with the last question/note, (regarding printscreen, overlay videos, etc) but I imagine it's related to what I've already noted here.<br/><br/><br/>As a final note, the entire graphics <a href="https://interviewquestions.tuteehub.com/tag/architecture-68" style="font-weight:bold;" target="_blank" title="Click to know more about ARCHITECTURE">ARCHITECTURE</a> was completely overhauled with Aero in Vista and 7; programs still write to what they think are paint over invalidated rectangles and to device contexts, but what they are actually doing is paint onto a surface. That surface is them composited on the screen with the various other surfaces that make up the other windows using Direct3d. This eliminates of the issues you mentioned- if a program is not responding, for example, it's client area isn't simply not painted, since really the program has simply stopped painting to the surface- it doesn't have direct access to screen elements like a non-aero program would. In this case the program is simply lightened and you get the "not responding" prompt. Without aero enabled, though, it's the same as before- since technically when you are using Aero Basic (Vista/7 Basic) you are really using a modified version of the Luna theme engine that XP used.<br/><br/>Lastly: that was all from memory so it might be inaccurate or even *gasp* wrong; I'm rather certain of most of it, though.<br/>Thank you for your truly excellent reply, BC.<br/>That was very well explained.<br/>Some of it was hilarious, lol.<br/><br/>As for the last question that you didn't fully understand, try reproducing it to see what I mean:<br/><br/>- Open up a (DVD) video<br/>- Printscreen it<br/>- Keep the movie near-fullscreen (with the borders maybe)<br/>- Paste in ms paint<br/>- Now drag the 'image' around<br/><br/>You will see that it seems you didn't printscreen at all but that you are moving <br/>a rectangle around in the 'movie poster'.<br/>This is a concept especially familiar in game design,<br/>when you 'slide things under a frame so they appear to be moving'.<br/><br/>Thanks.<br/>Thanks, I managed to get that to do so in a VM.<br/><br/>At first, I couldn't figure out what was going on. but once I closed everything down (except paint) it made sense.<br/><br/>If you do so yourself, you'll notice that the area that was "transparent" was a specific colour- (a very close to but not quite black, in my case). the copy-paste operation didn't actually copy the image of the DVD, but rather a "background colour" that was being used by directshow to know how to mask it's output.<br/><br/>First- whenever you play a DVD or most video, it's on top of the only reason it ever clips properly is because the media program takes care of it- that is, it's not "automatic" like it is with things like textboxes and buttons and so forth. <br/><br/>Most media programs use a method whereby they tell Directshow (or whichever video API) "ok, you can use this window to display your video" and it also specifies a "mask" colour- which is to say, "you can display your video on this window, and in this particular rectangle of it, but only where I use this particular colour" The colour used isn't really that important, what's important is that now any window that overlaps it that contains that colour will essentially become transparent where it uses that colour. however, solid areas of a very very near black colour are nearly unlikely, often times either that or a very near magenta or other "very close to a <a href="https://interviewquestions.tuteehub.com/tag/defined-947013" style="font-weight:bold;" target="_blank" title="Click to know more about DEFINED">DEFINED</a> colour but a few teensy bits off" is chosen for the mask colour.<br/><br/>When you copy and paste, you are copying and pasting, not an image of the DVD, but rather the colour area that the window has to tell the Video API where to draw it's video- so, when that window and colour is over top of your media player, directshow (or whatever), since it only looks at the entire screen and not at particular windows or areas, sees that colour in the rectangle the media program specified and draws in it. This is why the rest of the program seems unaffected- it's not the mask colour, so directshow leaves it be.<br/><br/><br/></body></html>
17502.

Solve : pc only works in safe mode?

Answer» <html><body><p>I had a trial version of Avast antivirus which expired last week. So i went onto cnet.com and found one of the best free antiviruses listed (Threatfire) and downloaded it. I shut pc down and the next day tried to <a href="https://interviewquestions.tuteehub.com/tag/get-11812" style="font-weight:bold;" target="_blank" title="Click to know more about GET">GET</a> online and the mouse moves but no matter what i clisk nothing opens.There is a warning at the bottom of screen saying "your pc might be at risk -no antivirus has been started.Even though i had threat fire on i couldnt start it. So now the only way i can get online is through safe mode with networking and logging in as administrator. So now in safe mode i cant start the antivirus either! What can i do to fix this, get a antivirus started and be able to log in normal mode???Did you uninstall Avast?you might want to try a <a href="https://support.microsoft.com/kb/306084">system restore</a> to see if you can go backwards to the time before you started getting the error. <br/><br/>if it doesn't work, nothing has <a href="https://interviewquestions.tuteehub.com/tag/changed-913862" style="font-weight:bold;" target="_blank" title="Click to know more about CHANGED">CHANGED</a>. If it <a href="https://interviewquestions.tuteehub.com/tag/works-17618" style="font-weight:bold;" target="_blank" title="Click to know more about WORKS">WORKS</a>, you might be able to get your computer working enough to be able to see if you can get the malware specialists to help you see if it's in good shape going forward.I did uninstall Avast and i tried system restore and no changes were madeI'm not <a href="https://interviewquestions.tuteehub.com/tag/familiar-983426" style="font-weight:bold;" target="_blank" title="Click to know more about FAMILIAR">FAMILIAR</a> with Threatfire. I'd suggest this: in safe mode uninstall Threatfire and install some other GOOD av (Avira, AVG, or even better, something you have to pay for). Then try to reboot to normal mode and see what happens. Also, once you've installed the new av you might want to run a <a href="https://interviewquestions.tuteehub.com/tag/full-1001178" style="font-weight:bold;" target="_blank" title="Click to know more about FULL">FULL</a> scan with both that and with MalwareBytes to make sure you didn't pick up a nasty somewhere along the line.</p></body></html>
17503.

Solve : Control Panel Problems?

Answer» <html><body><p>Hi - <strong>My system is Xp Prfessional </strong> - I <a href="https://interviewquestions.tuteehub.com/tag/recently-620395" style="font-weight:bold;" target="_blank" title="Click to know more about RECENTLY">RECENTLY</a> have developed a problem with my USB; slots not being recognised ie; the items such as my webcam and other USB; items, I'm not being able to use them. I scanned my computer and no virus's where found. Prior to this problem I dowloaded,<em><strong>'driverrobot_setup.exe' </strong> </em> ran the program and then it would appear that this caused the problem, or it mabe just a coincidence. Any way the problem is that I cannot in 'Control Panel' open 'System' or 'Device Manager' yet Add/Remove I can use? WHY? please help. I have removed the program <em><strong>'Driverrobot'</strong></em> I have been <a href="https://interviewquestions.tuteehub.com/tag/trying-3234509" style="font-weight:bold;" target="_blank" title="Click to know more about TRYING">TRYING</a> to stop programs running at 'Start Up and somewhere along the line this problem developed. Please can you advise me how to repair this problem using easy step by step procedures.<br/><br/>Many thanks1) NEVER use a third party utility to update drivers.<br/>2) Update drivers ONLY when there is a specific reason to do so<br/><br/><br/>Your choices right now are to boot to safe mode and <a href="https://interviewquestions.tuteehub.com/tag/try-1428546" style="font-weight:bold;" target="_blank" title="Click to know more about TRY">TRY</a> a system restore to a time prior to the problem, or if that doesn't work do a repair install of XP.Hi - Thank you kindly for your reply. I do not have this computers Xp installation disk as I <a href="https://interviewquestions.tuteehub.com/tag/purchasedaeur-1172765" style="font-weight:bold;" target="_blank" title="Click to know more about PURCHASED">PURCHASED</a> the computer from a friend and they had lost the Xp disk, I do have an <a href="https://interviewquestions.tuteehub.com/tag/original-1139424" style="font-weight:bold;" target="_blank" title="Click to know more about ORIGINAL">ORIGINAL</a> Xp home disk from my last computer that was naf; I do have the disk information ie; license key that is stuck to the body work of the computer. I tied placing an old 120 GB Hardive into my desktop and formated the drive and reloaded Windows - Unfortunately it would not recognise the Ethenet so I could not get onto the internet. I would be greatful for any help as I am house bound slightly and my computeris my life line. I can get out occassionaly so help would be most welcome thank you</p></body></html>
17504.

Solve : XP not starting?

Answer» <html><body><p>Hi all,<br/>I am having a problem starting my pc......on switch on it shows a lot of what look like <a href="https://interviewquestions.tuteehub.com/tag/at-ac-241764" style="font-weight:bold;" target="_blank" title="Click to know more about AC">AC</a>"ac" &amp; like small bar codes all over the screen which are blue in colour then the <a href="https://interviewquestions.tuteehub.com/tag/xp-747558" style="font-weight:bold;" target="_blank" title="Click to know more about XP">XP</a> loading logo <a href="https://interviewquestions.tuteehub.com/tag/runs-246860" style="font-weight:bold;" target="_blank" title="Click to know more about RUNS">RUNS</a> then says its going to sleep, I did <a href="https://interviewquestions.tuteehub.com/tag/get-11812" style="font-weight:bold;" target="_blank" title="Click to know more about GET">GET</a> it stared and done a <a href="https://interviewquestions.tuteehub.com/tag/restore-1187258" style="font-weight:bold;" target="_blank" title="Click to know more about RESTORE">RESTORE</a> point, unable to restore your pc to this point, then I just restarted it and all was ok !!<br/>the next day same problem and again managed to get it running ok and now don't what to shut down because it may not restart again. <br/><br/>any ideas please !<br/><br/>Ned <br/></p></body></html>
17505.

Solve : My computer has Multiple Personality Disorder?

Answer» <html><body><br/>Yes, evidently my computer is suffering from multiple personality disorder, and the condition is becoming increasingly serious--within a week or two I may not be able to access the <a href="https://interviewquestions.tuteehub.com/tag/internet-14325" style="font-weight:bold;" target="_blank" title="Click to know more about INTERNET">INTERNET</a> at all.<br/><br/>What I mean to convey by the term "multiple personality disorder" is that my computer has episodes where it is <a href="https://interviewquestions.tuteehub.com/tag/simultaneously-2256499" style="font-weight:bold;" target="_blank" title="Click to know more about SIMULTANEOUSLY">SIMULTANEOUSLY</a> displaying two different "personalities"--online mode and offline mode--and each personality has no awareness of the other. But the result is that I cannot get online when the condition flares up.<br/><br/>It began about a month ago, and has been occurring with increasing frequency ever since. Randomly, when I start my computer, turn on my DSL modem, and then open a browser, I will not be <a href="https://interviewquestions.tuteehub.com/tag/connected-929389" style="font-weight:bold;" target="_blank" title="Click to know more about CONNECTED">CONNECTED</a> to my home page or any other web page I try to access. (Incidentally, my DSL connection has performed perfectly throughout all this, the three green lights always on,etc.--in my careful experiments to isolate the cause, it has been proved never to have been a factor.) And not only does the browser (whichever one I try) not connect me, but what's very clear, and very important, is that the browser is not even attempting to connect--instead of trying for a while and then reporting failure, the instant I click on a bookmark it will say "Done" while leaving me with a blank screen. (This is Firefox's <a href="https://interviewquestions.tuteehub.com/tag/way-246442" style="font-weight:bold;" target="_blank" title="Click to know more about WAY">WAY</a> of dealing with it. If I use Chrome, it instantly shows a blank screen with the words "Web page not available". All three of my browsers (Internet Explorer too) fail to connect me to a web page during these episodes, though each expresses the failure differently.)<br/><br/><br/>But the element that I need to drive home is the instantaneous nature of the reported failure--this is not the typical case of access problems where the computer tries for 20 or 30 seconds to connect to a web page, but ultimately reports that it cannot. Less than a nanosecond after I click on a favorite or a web address, Firefox will report "Done" with a blank screeen or Chrome will report "Web page not available" with an otherwise blank screen. It's exactly as though I'm in offline mode, even though when I click on "File", "Work offline" is unchecked. (My attempts to remedy the problem by checking and unchecking "Work offline" have failed. Similarly, logging off but not restarting my computer does nothing. Manipulating my DSL modem has no effect. Only restarting my computer has worked, but it's just a matter of time when that too will fail because all restarting does is let me "roll the dice" again--at this point I have about a 1/3 chance of an episode occurring when I turn on the computer. A month ago, the chance was about 1 in 15, two weeks ago 1 in 7 or 8, now it's 1 in 3. Incidentally, these episodes never occur in the middle of a session, only when I turn my computer on--once I have internet access, I continue to have it until I turn off my computer.<br/><br/>So, to summarize--at present, about 1 in 3 times when I turn on my computer, I cannot access the internet with any browser, and they all fail to connect WITHOUT EVEN TRYING, exactly as though I'm in Offline Mode-- but I'm not (or, more accurately, I haven't put it in offline mode, and there's no official indication I am in it, but I believe one "personality" of my computer IS in offline mode. Meanwhile, the computer's other "personality" doesn't think I'm in Offline Mode, but believes that for some <a href="https://interviewquestions.tuteehub.com/tag/aeuroereason-239555" style="font-weight:bold;" target="_blank" title="Click to know more about REASON">REASON</a> the "web page is not available" (Chrome) or that it's actually connected to the web page even though the screen is blank (Firefox).<br/><br/>I'm desperate at this point, because the future is clear-- and ominous. 1 in 3 will soon be 1 in 2, then 1 in 1. I posted to the Microsoft Community website with this problem, and though I got many views, I received no replies. Then I tried Geeks to Go--again, many views, no replies. Can this problem really be so unique that NOBODY HAS A CLUE?<br/><br/>I have a Toshiba Satellite laptop, purchased Dec. 2006 if that is relevant, with Windows XP.May be worth the effort to check system restore. If you have a restore point more than a month old (before this problem started based on your post), I'd give that a whirl. If the problem goes away - good for you. Then, if you're curious enough, you may want to begin redoing, in sequence, one at a time, each of the changes associated with restore points after the one you just reverted to. That might identify the culprit, and suggest some type of corrective action.</body></html>
17506.

Solve : coreldraw?

Answer» <html><body><a href="https://interviewquestions.tuteehub.com/tag/sir-1210552" style="font-weight:bold;" target="_blank" title="Click to know more about SIR">SIR</a>, <a href="https://interviewquestions.tuteehub.com/tag/please-601513" style="font-weight:bold;" target="_blank" title="Click to know more about PLEASE">PLEASE</a> I <a href="https://interviewquestions.tuteehub.com/tag/want-1448756" style="font-weight:bold;" target="_blank" title="Click to know more about WANT">WANT</a> you to help me out my <a href="https://interviewquestions.tuteehub.com/tag/coreldraw-426179" style="font-weight:bold;" target="_blank" title="Click to know more about CORELDRAW">CORELDRAW</a> suit 12 suddenly stop loading even when i try to reinstalled it again still it did not workSystem specs?<br/><br/>Any other info?</body></html>
17507.

Solve : Disable Task Manager for non-admins??

Answer» <html><body><a href="https://interviewquestions.tuteehub.com/tag/could-410026" style="font-weight:bold;" target="_blank" title="Click to know more about COULD">COULD</a> someone please <a href="https://interviewquestions.tuteehub.com/tag/help-239643" style="font-weight:bold;" target="_blank" title="Click to know more about HELP">HELP</a> me disallow non-admins access to <a href="https://interviewquestions.tuteehub.com/tag/task-243523" style="font-weight:bold;" target="_blank" title="Click to know more about TASK">TASK</a> manager? I'm using WinXP Home SP3. <a href="https://interviewquestions.tuteehub.com/tag/thanks-665909" style="font-weight:bold;" target="_blank" title="Click to know more about THANKS">THANKS</a> in advance</body></html>
17508.

Solve : chkdsk stopped?

Answer» <html><body><p>window shutdown. said to run chkdsk on c drive<br/>started chkdsk, it said to reboot to run chkdsk<br/>rebooted chkdsk started and stopped 55% through data section.<br/>tried to reboot again still the same thing.<br/>tried to use A drive doesn't <a href="https://interviewquestions.tuteehub.com/tag/recognized-2240045" style="font-weight:bold;" target="_blank" title="Click to know more about RECOGNIZED">RECOGNIZED</a> the drive.<br/>Currently the only thing I can do is reboot and wait for it stop again.<br/>Is there any way I can cancel chkdsk while running or restore back before this happen.<br/>I can do f2 at start I don't know if any thing will over <a href="https://interviewquestions.tuteehub.com/tag/ride-614280" style="font-weight:bold;" target="_blank" title="Click to know more about RIDE">RIDE</a> <a href="https://interviewquestions.tuteehub.com/tag/using-1441597" style="font-weight:bold;" target="_blank" title="Click to know more about USING">USING</a> f2. can't use f12.<br/>On the first reboot microsoft installed 12 updates.<br/>Thank you advance.<br/>bill0507Do a System Restore to a day when all was well.<br/><br/><a href="https://support.microsoft.com/kb/306084">http://support.microsoft.com/kb/306084</a><br/>Hi,<br/>Try turning on your computer in safe mode by pressing F8 when you turn on your computer.<br/>Select Safe mode from the menu displayed.<br/>Restore your computer to the date it was working fine.<br/>Restart your computer in normal mode and check if it starts.<br/><br/>If this does not work turn on your computer and keep on pressing F8 and select "<a href="https://interviewquestions.tuteehub.com/tag/last-2782539" style="font-weight:bold;" target="_blank" title="Click to know more about LAST">LAST</a> Known Good Configuration" and hit enter.<br/><br/>Hope this helps.Quote from: victoria on <a href="https://interviewquestions.tuteehub.com/tag/august-385421" style="font-weight:bold;" target="_blank" title="Click to know more about AUGUST">AUGUST</a> 11, 2010, 07:40:45 PM</p><blockquote>Do a System Restore to a day when all was well.<br/><br/><a href="https://support.microsoft.com/kb/306084">http://support.microsoft.com/kb/306084</a><br/><br/></blockquote><br/>Is that the best you can do, Billrich The Banned Troll?<br/>Ignore all of the above posts. Boot to the Recovery Console and run <strong>chkdsk /r</strong></body></html>
17509.

Solve : Opening .pdf file on OREA website keeps coming up Internet Explorer Error?

Answer» <html><body><p>I am currently taking my <a href="https://interviewquestions.tuteehub.com/tag/real-1178490" style="font-weight:bold;" target="_blank" title="Click to know more about REAL">REAL</a> <a href="https://interviewquestions.tuteehub.com/tag/estate-446767" style="font-weight:bold;" target="_blank" title="Click to know more about ESTATE">ESTATE</a> course online and it is important that I am able to open the .pdf files they have available to students to support their ongoing learning. Every time I click on a .pdf file on this site, it cannot open it and prompts me to send an error report. <br/><br/>I have downloaded the latest version of Adobe, however that did not seem to remedy the problem. <br/>I called OREA to tell them about the problem I'm having, however they were not having the same problem on their <a href="https://interviewquestions.tuteehub.com/tag/end-239295" style="font-weight:bold;" target="_blank" title="Click to know more about END">END</a> so it seems that it is my individual computer.<br/><br/>Please help if you canTry Foxit Reader...Free.Thanks. I did download Foxit Reader. It did not resolve the problem with opening it in Internet Explorer but I was able to open the .pdf documents using Opera - how strange. I would much rather use Internet Explorer. <br/><br/>Just a thought - why does it seem to be opening the .pdf in another web page rather than Foxit or Adobe? Are my preferences set wrong or something?I know there's been issues with Windows 7 and Adobe Reader (and Acrobat) 8.x regarding opening pages in a web browser, but <a href="https://interviewquestions.tuteehub.com/tag/since-644476" style="font-weight:bold;" target="_blank" title="Click to know more about SINCE">SINCE</a> you're using XP...<br/><br/>Anyway, what version of Internet Explorer are you using?Quote</p><blockquote>Just a thought - why does it seem to be opening the .pdf in another web page rather than Foxit or Adobe? Are my preferences set wrong or something?</blockquote><br/>No ...you're misunderstanding what happens with certain file associations...opening a .pdf will launch whatever app is selected to view .pdf's....the Browser is then out of the picture.<br/><br/>Unless the browser has built-in capabilities for viewing .pdf's which would mean it would open in a new browser window...but i've seen them all and they pretty much suck...a dedicated .pdf <a href="https://interviewquestions.tuteehub.com/tag/viewer-1446331" style="font-weight:bold;" target="_blank" title="Click to know more about VIEWER">VIEWER</a> app is best IMHO.</body></html>
17510.

Solve : Windows XP licence issues?

Answer» <html><body><p>Hi there,<br/><br/>I'm solving a problem for a friend at the moment as she had a major virus attack on her <a href="https://interviewquestions.tuteehub.com/tag/pc-590329" style="font-weight:bold;" target="_blank" title="Click to know more about PC">PC</a>. It was that bad, that we have had to <a href="https://interviewquestions.tuteehub.com/tag/wipe-744142" style="font-weight:bold;" target="_blank" title="Click to know more about WIPE">WIPE</a> the HDD completely using Darik's Boot &amp; Nuke. It was previously running XP and as far as I know, she has an XP retail disc that was installed on it before the wipe. We are now trying to install the XP CD from scratch, which is fine, but we are now getting notifications of WGA issues. The CD is legit, but I couldn't uninstall what was previously on the computer/deactivate the licence as we couldn't boot into Windows full stop. What are the fixes for this - she doesn't want to buy a new CD and obviously, she owns the licence.<br/><br/>Thanks<br/>Are you using her product key? If not, that's why.<br/><br/>If you are using her product key, is it an OEM product key (i.e.: a sticker on her computer)? If so, are you using OEM media? If not, that's why. OEM installs require OEM source files/media. Retail installs require retail source files/media. Volume license installs require volume license files/media. Period.<br/><br/>If so, then you'll need to contact Microsoft and explain what happened so they can do their thing to correct it. <br/><br/>The only other thing you can do is to restore from a previous image of her PC and use a utility to retrieve her old product key (did you image it before wiping it? Acronis and Ghost are two good options for this. If not, consider this a lesson learned, as there's ALWAYS something missing from a new install that people will raise a stink about).<br/><br/>Other than that, assistance from us regarding licensing issues cannot get to the point where the assistance can be used for piracy, no matter how legitimate the person's intentions are. We don't need the trouble from Microsoft...<br/>Thanks for your help. She lives miles away so I'm helping her via msn. The cd that we are using has a product key sticker on the back, but not on the pc itself (as I guess it was a custom pc - it is not branded). Unfortunately, we have wiped everything on the HDD, so it is not possible to recover the product key that was used before.<br/><br/>Any further advice please and/or could you give me the <a href="https://interviewquestions.tuteehub.com/tag/phone-25638" style="font-weight:bold;" target="_blank" title="Click to know more about PHONE">PHONE</a> number to contact microsoft?<br/><br/>Thanks againTypically, if a WGA prompt <a href="https://interviewquestions.tuteehub.com/tag/triggers-16645" style="font-weight:bold;" target="_blank" title="Click to know more about TRIGGERS">TRIGGERS</a>, there's an option to click on to contact Microsoft. <br/><br/>However, I'm thinking the odds don't look good in your (or your friend's) favor. I'm thinking the custom build PC had a pirated copy of Windows installed on it in the first place. Otherwise, she would have been given the installation media and/or the certificate of authenticity with the product key on it. However, it's not too farfetched if she had installation media in the past and lost it...<br/><br/>Now if the media you are using has only been installed on her PC (or the previous PC that it was installed on is no longer in commission), then you can go through the "Activate Windows" wizard on her computer. Once it fails, it will give an option to activate by phone. Click that option and <a href="https://interviewquestions.tuteehub.com/tag/call-412416" style="font-weight:bold;" target="_blank" title="Click to know more about CALL">CALL</a> that number. The automated system will ask for a long (and I mean LOOOOONG) series of characters displayed on the screen. If it works, then it'll spit out a series of characters for you (or her) to type in. Once it's done, her computer is activated. If it fails, then it'll transfer you to a representative and you'll have to explain what happened. Typically if the key is only used on one PC, then the rep will give you a series of characters to type in to get it activated. Sometimes they may ask for proof of purchase.<br/><br/>Worst case scenario, the WGA wizard can be used to purchase a new license at a discount. <a href="http://www.iyogi.net/5174576/microsoftoperatingsystem.html?gclid=CM7freTAsqMCFYdb2godLHIw5w"><strong>Clik Here...</strong></a></p></body></html>
17511.

Solve : Do i need microsoft compression client pack 1.0?

Answer» <html><body><strong>I'm cleaning up my add and remove programs. This computer is older and slow so removing any unnecessary programs may help it (I hope). I have <a href="https://interviewquestions.tuteehub.com/tag/windows-22662" style="font-weight:bold;" target="_blank" title="Click to know more about WINDOWS">WINDOWS</a> XP and the program in question is called: Microsoft <a href="https://interviewquestions.tuteehub.com/tag/compression-20610" style="font-weight:bold;" target="_blank" title="Click to know more about COMPRESSION">COMPRESSION</a> Clinet pack 10. Can I remove this safely and do I really need it?<br/><br/>Any help and advise would be appreciate.. Thank you in advance </strong>The long answer:<br/><a href="https://support.microsoft.com/kb/927374">http://support.microsoft.com/kb/927374</a><br/><br/>If I recall correctly, I think it's auto-installed whenever Windows Updates/Microsoft Updates are installed through <a href="http://update.microsoft.com">http://update.microsoft.com</a> in XP and Server 2003. It's supposed to make <a href="https://interviewquestions.tuteehub.com/tag/downloaded-7269896" style="font-weight:bold;" target="_blank" title="Click to know more about DOWNLOADED">DOWNLOADED</a> update <a href="https://interviewquestions.tuteehub.com/tag/files-20889" style="font-weight:bold;" target="_blank" title="Click to know more about FILES">FILES</a> smaller.<br/><br/>It's a Vista <a href="https://interviewquestions.tuteehub.com/tag/component-244424" style="font-weight:bold;" target="_blank" title="Click to know more about COMPONENT">COMPONENT</a> for updates...if you are running XP you can safely remove it...it's not needed for XP.</body></html>
17512.

Solve : No internet after virus removal?

Answer» <html><body><p>Make sure all lights on your modem are turn on before <a href="https://interviewquestions.tuteehub.com/tag/browsing-904849" style="font-weight:bold;" target="_blank" title="Click to know more about BROWSING">BROWSING</a>. Also your cable connections on router/modem to computer. Is there a status on your computer stating that your LAN is connected after you turn on modem or modem and router(assuming that all lights are on)?Check your LAN settings under Tools, Internet Options, Connections if Automatically detect settings is on a check mark. You may want to <a href="https://interviewquestions.tuteehub.com/tag/call-412416" style="font-weight:bold;" target="_blank" title="Click to know more about CALL">CALL</a> your ISP to check on the status of your connection if its connected, block or not. Quote from: patio on July 10, 2010, 09:29:48 PM</p><blockquote>Direct <a href="https://interviewquestions.tuteehub.com/tag/connect-11879" style="font-weight:bold;" target="_blank" title="Click to know more about CONNECT">CONNECT</a> to the modem to test....<br/></blockquote>Same thing happens<br/><br/><br/>Quote from: jason2074 on July 10, 2010, 11:37:17 PM<blockquote>Make sure all lights on your modem are turn on before browsing. Also your cable connections on router/modem to computer. Is there a status on your computer stating that your LAN is connected after you turn on modem or modem and router(assuming that all lights are on)?Check your LAN settings under Tools, Internet Options, Connections if Automatically detect settings is on a check mark. You may want to call your ISP to check on the status of your connection if its connected, block or not. <br/></blockquote>What? You say check your lan settings under tools, but for what? Can somebody recommend me to a website that can <a href="https://interviewquestions.tuteehub.com/tag/help-239643" style="font-weight:bold;" target="_blank" title="Click to know more about HELP">HELP</a>? Help me somebody! Please! Many of the newer infections remove connectivity...on purpose.<br/><br/>Start Here...<br/><br/>Your infection you think you removed sounds like a particularly nasty one...I did all of this stuff - I was told to go here from virus removal You were given a clean bill of health ? ?<br/><br/>If so i would try a new modem and or/router combination...<br/>Borrow 1 of each so it doesn't cost you...Quote from: binkow on July 10, 2010, 05:07:04 AM<blockquote> <br/></blockquote>You never left a space between <a href="https://interviewquestions.tuteehub.com/tag/ipconfig-1051316" style="font-weight:bold;" target="_blank" title="Click to know more about IPCONFIG">IPCONFIG</a> and /renew.Report your connection problem to your Internet Service Provider. Back-up all your important files/documents. They may fix your connection issue. Recovery console, Repair or Reformatting with your Windows CD is the least option i can give you.</body></html>
17513.

Solve : pc wont boot any cd from any cd drive with any bios setting!!!?

Answer» <html><body><p>PC wont boot any CD from any CD drive with any bios setting.<br/>I made CD drive the first to boot in the bios BUT STILL NOT ANYTHING<br/>PLEASE HELP!!!There are only three <a href="https://interviewquestions.tuteehub.com/tag/reasons-249297" style="font-weight:bold;" target="_blank" title="Click to know more about REASONS">REASONS</a> the system will not boot to an optical drive:<br/><br/>1) The drive is not at the top of the bios boot order<br/>2) The cd is either bad or not bootable<br/>3) The drive is not working properlyactually the CD is first and u tried it on two Cd's <br/><strong>WINDOWS XP SETUP AND UBCD </strong> and the driver is working normally in windows even when removing the hard drive from booting list!!!You're doing something wrong...or the drive is dead.<br/>Are you pressing F10 in the BIOS setup to " save changes and exit " ? ? ?i have two internal CD drives and one <a href="https://interviewquestions.tuteehub.com/tag/external-981194" style="font-weight:bold;" target="_blank" title="Click to know more about EXTERNAL">EXTERNAL</a> high class expensive (brand new- blue ray) Cd drive and all work normally in windows. and yes I'm surely pressing f10!! What do you mean when you say both Cd drives work normally with windows? What kind of activities? How old are your optical drives? Quote from: jloen on August 11, 2010, 05:38:51 AM</p><blockquote>i have two internal CD drives and one external high class expensive (brand new- blue ray) Cd drive and all work normally in windows. and yes I'm surely pressing f10!! <br/></blockquote><br/>Then:<br/><br/>Quote from: <a href="https://interviewquestions.tuteehub.com/tag/allan-373041" style="font-weight:bold;" target="_blank" title="Click to know more about ALLAN">ALLAN</a> on August 10, 2010, 10:40:38 AM<blockquote>There are only three reasons the system will not boot to an optical drive:<br/><br/>1) The drive is not at the top of the bios boot order<br/><strong>2) The cd is either bad or not bootable</strong><br/>3) The drive is not working properly<br/></blockquote><br/>This.<br/><br/>We can eliminate #3 for the most part, unless your computer can't boot from a USB optical drive.<br/><br/>Double-check #1. If you're 100% sure that #1 is accounted for (i.e.: your optical drive that you're using is FIRST), then we can <a href="https://interviewquestions.tuteehub.com/tag/move-548879" style="font-weight:bold;" target="_blank" title="Click to know more about MOVE">MOVE</a> on to what I've bolded from Allan's quote:<br/><br/><strong>2) The cd is either bad or not bootable</strong><br/><br/>If it's the Ultimate Boot CD (UBCD), then you may have burned it incorrectly. If burned incorrectly, then it will not be bootable. Bootable code on a CD (El Torito? Someone correct me on this if I'm wrong) will usually not show up in Windows Explorer, so it's difficult to tell whether or not it's bootable just from Windows Explorer. <br/><br/>What program are you using to burn the UBCD? Use that to determine whether or not it's bootable. ImgBurn is a good free program: <a href="http://www.imgburn.com/">http://www.imgburn.com/</a><br/><br/>If it's XP, then either:<br/>a) Bad disc<br/><a href="https://interviewquestions.tuteehub.com/tag/b-236590" style="font-weight:bold;" target="_blank" title="Click to know more about B">B</a>) A burned disc (slipstreamed)<br/>or<br/>c) A burned disc (not-so legitimate)<br/><br/>Obviously, if c), then we can't help you. If a), contact Microsoft, the point of purchase, or the manufacturer of your PC if it's an OEM copy directly from the manufacturer. If b), then are you manually slipstreaming or using a utility like nLite? If the latter, then use nLite to make the ISO as well, since it will make the ISO bootable. Use ImgBurn after that to burn the ISO to CD.</body></html>
17514.

Solve : Sharing a VPN connection?

Answer» <html><body><p>Okay, I finally got that *censored* Local Area Connection thing running, and my two PCs are connected. However, I'm using a VPN connection to access the internet. So, I set that the VPN connection is shared on the network (that is, with the other computer). The one I'm connecting through connects online, internet is working fine, but the other one has no response (FTP, pinging, file accessing is all working). Help?Since no one else has responded, I'll respond as best as I can.<br/><br/>Why are you using a VPN to access the internet? I've set up VPNs before to access secure networks, but not just to get internet access. And the VPNs I set up were very specific, or limited to, one computer for security reasons. I would imagine that multiple computers could be set up to use a single VPN, but each would need to be authorized. What VPN software are you using?<br/><br/>You don't mention a router. Are you using one?Router is connected to the PC I'm using to access the internet. I'm not using a specific software for VPNs, I created the connection over Windows. It's that type of connection, that's why I'm using VPN. I connect to the VPN server with my username and password, I go through authorization and I'm online.<br/><br/>The thing is that it worked when I linked the PC and laptop (PC is using xp and i have win 7 on laptop). I just enabled the homegroup on laptop and <a href="https://interviewquestions.tuteehub.com/tag/everything-25538" style="font-weight:bold;" target="_blank" title="Click to know more about EVERYTHING">EVERYTHING</a> worked fine. This time I have two XP's, just shared the connection on the main one, but the other just can't access it...You didn't answer the question as to why you're using a VPN to access the Internet. <br/><br/>What you're doing is the equivalent of taking a flight from your home to a nearby grocery store: overkill.<br/><br/>VPNs are used for connecting to the network of a remote location like a workplace. They're not used typically for connecting to the Internet. I don't care if it worked for you in the past. Some people fly their <a href="https://interviewquestions.tuteehub.com/tag/private-11896" style="font-weight:bold;" target="_blank" title="Click to know more about PRIVATE">PRIVATE</a> jets to the grocery store and that works for them, but it's still ridiculous to the majority of middle-class society. <br/><br/>If you're just trying to connect multiple computers to the Internet, then don't make it harder than it needs to be. Do this:<br/><br/>Router --&gt; LAN port 1 ---&gt; Computer 1<br/>Router --&gt; LAN port 2 ---&gt; Computer 2<br/>Router --&gt; Internet/WAN port ---&gt; Cable/DSL modem (or whatever provides your Internet service)<br/><br/>Open up a web browser from Computer 1 or Computer 2 (Internet Explorer, Firefox, Chrome, whatever), and go to <a href="http://192.168">http://192.168</a>.1.1 (or whatever the internal IP address is of your router). Log in with the router's user name and password. What you do from here depends on how your Internet Service Provider allows an Internet connection. <br/><br/>If it's PPPoE: Select that from the drop down menu and enter the PPPoE user name and password. If you don't know what this is, contact your Internet Service Provider.<br/><br/>If it's DHCP (a dynamic IP address), then you probably don't have to do anything, as "Automatic Configuration (DHCP)" is usually the default.<br/><br/>If it's a static IP (rare for consumers, common for businesses), then enter the IP address, Subnet <a href="https://interviewquestions.tuteehub.com/tag/mask-770491" style="font-weight:bold;" target="_blank" title="Click to know more about MASK">MASK</a>, Default Gateway, and DNS servers. If you don't know this information, contact your Internet Service Provider. <br/><br/>If your modem takes care of any of the above three options, then use "Automatic Configuration (DHCP)," as your modem may have an internal IP address (hopefully not the same as your router's or else you'll have routing conflicts and will have to change your router's internal IP address), and may be acting as DHCP server.The thing is that connection to the workplace (by VPN) is used to access the internet. I logon to 10.64.0.1 with my username and password (everything in the VPN connection is configured), and then I can access the internet.<br/>The type of connection is PPTP.<br/>I have only one LAN port on my router.Quote from: markho10 on August 11, 2010, 09:13:59 AM</p><blockquote>The thing is that connection to the workplace (by VPN) is used to access the internet. I logon to 10.64.0.1 with my username and password (everything in the VPN connection is configured), and then I can access the internet.<br/>The type of connection is PPTP.<br/>I have only one LAN port on my router.<br/></blockquote><br/>Interesting. Is this company policy for you to connect to the Internet through a VPN? If not, then removing the check box "Use default gateway on remote network" is your friend here:<br/><br/>1) Right-click the VPN connection, left-click Properties.<br/>2) Go to the Networking tab. <br/>3) Click "Internet Protocol (TCP/IP)" and then click Properties.<br/>4) Click the "Advanced" button.<br/>5) Uncheck that annoying little "Use default gateway on remote network" check box.<br/>6) Click the DNS tab. Add your company DNS server's IP address to the list of DNS servers to use.<br/>7) (Optional, depends on whether your company uses this) Click the WINS tab. Add your company WINS server's IP address to the list of WINS servers to use.<br/><br/>Voila! VPN access, and you still use your own Internet connection. If you can't access network resources, then make sure you did #6 and #7 properly.<br/><br/>If this is company policy for you to use the Internet over the company's VPN connection (which would be silly, as it would be horribly slow over a VPN due to the upload of anything but a T1 or T3 line), then contact your IT department before doing the steps above. <br/><br/>As for your router having only one LAN port...I can think of three reasons for this:<br/><br/>1) It's an older router--has one WAN port and one LAN port. Don't use those for PPTP connections--GRE <a href="https://interviewquestions.tuteehub.com/tag/makes-248623" style="font-weight:bold;" target="_blank" title="Click to know more about MAKES">MAKES</a> them cry.<br/>2) It's a newer <strong>modem</strong> that functions as a router.<br/>3) You're using a modem and mistaking it for a router.<br/><br/>If #1: Get yourself a better router. Now. <br/>Good option: <a href="https://www.newegg.com/Product/Product.aspx?Item=N82E16833124190&amp;Tpk=WRT54GL">http://www.newegg.com/Product/Product.aspx?Item=N82E16833124190&amp;Tpk=WRT54GL</a><br/><br/>If #2: Either<br/>a) Get yourself a cheap network switch and connect it to your router.<br/>If you don't care about Gigabit: <a href="https://www.newegg.com/Product/Product.aspx?Item=N82E16833124005">http://www.newegg.com/Product/Product.aspx?Item=N82E16833124005</a><br/>If you do: <a href="https://www.newegg.com/Product/Product.aspx?Item=N82E16833124021&amp;Tpk=EG005W">http://www.newegg.com/Product/Product.aspx?Item=N82E16833124021&amp;Tpk=EG005W</a><br/><br/>So you'll do something like this:<br/><br/>Router ---&gt; uplink port on Switch (if it has one...if not, then pick the last port) -- two cables, one from port 1 and one from port 2 ---&gt; Computer 1 and Computer 2 respectively.<br/><br/>...or <br/><br/><a href="https://interviewquestions.tuteehub.com/tag/b-236590" style="font-weight:bold;" target="_blank" title="Click to know more about B">B</a>) Like #1, connect the router to your modem, use DHCP as the WAN option in the router, and either<br/>i. Change your modem to "bridge mode" to bridge everything to the separate router<br/>or<br/>ii. Give your router a static WAN IP address that's within the modem's LAN subnet and configure your router to DMZ everything to the router. If you need assistance with this, let me know. I might not be able to help you completely, but between what I know and calling your Internet provider, this can be done (i.e.: your ISP may not support the router and I have no idea what the interface of your modem is like, but put two and two together and it can work).<br/><br/>If #3: See #1. Get yourself a router.</body></html>
17515.

Solve : My Windows has become a mess?

Answer» <html><body><p>I had forgot to eject Windows CD from my CD drive. Then, my sister turned on the <a href="https://interviewquestions.tuteehub.com/tag/computer-243299" style="font-weight:bold;" target="_blank" title="Click to know more about COMPUTER">COMPUTER</a>. She made a mistake and performed part of Windows installation. Now, when I log in my windows I can't see the list of programs in All Programs . Furthermore, the <a href="https://interviewquestions.tuteehub.com/tag/speed-239060" style="font-weight:bold;" target="_blank" title="Click to know more about SPEED">SPEED</a> of my computer has slowed down and it takes a <a href="https://interviewquestions.tuteehub.com/tag/lot-770427" style="font-weight:bold;" target="_blank" title="Click to know more about LOT">LOT</a> of time to run a Flash program or open the CD Drive. In addition, my computer does not make any <a href="https://interviewquestions.tuteehub.com/tag/voice-11824" style="font-weight:bold;" target="_blank" title="Click to know more about VOICE">VOICE</a> any longer.<br/><br/>I have checked System Restore capability through this link:Start -&gt; accessories -&gt; system tools -&gt; system restore. However, It did not have any effect.<br/><br/>I do not want to remove my Windows and install another one because I have lots of programs on this windows which I need them very much. Please help me.You can try a repair install. Boot to the XP CD and choose the SECOND repair option, allowing XP to install on top of itself (<a href="http://www.geekstogo.com/forum/How-to-repair-Windows-XP-t138.html">http://www.geekstogo.com/forum/How-to-repair-Windows-XP-t138.html</a>)Not to be the pessimest here but depending on what she did and how long it ran i'd prepare for the inevitibality that all your data and apps could be gone...<br/><br/>This is why we preach good solid backup strategies all the time here...patio is right, you might be better off performing a clean install just to <a href="https://interviewquestions.tuteehub.com/tag/undo-phnkshn-720051" style="font-weight:bold;" target="_blank" title="Click to know more about UNDO">UNDO</a> the damage. or, you try a repair install. your choice.</p></body></html>
17516.

Solve : Windows Genuine Advantage?

Answer» <html><body><p>Hi there,<br/><br/>I am helping my friend <a href="https://interviewquestions.tuteehub.com/tag/sort-238033" style="font-weight:bold;" target="_blank" title="Click to know more about SORT">SORT</a> her computer out after a <a href="https://interviewquestions.tuteehub.com/tag/serious-3021168" style="font-weight:bold;" target="_blank" title="Click to know more about SERIOUS">SERIOUS</a> virus attack. It was that bad that we have had to wipe the HDD completely. She <a href="https://interviewquestions.tuteehub.com/tag/says-1195457" style="font-weight:bold;" target="_blank" title="Click to know more about SAYS">SAYS</a> she has a Windows XP cd (which is legit by the sound of it) - I don't know 100% as it is over msn messenger that we are communicating (she lives miles away). We installed the OS, but it is now saying it isn't genuine. They never owned the computer from new and the OS disc was given with the PC. I'm <a href="https://interviewquestions.tuteehub.com/tag/guessing-2686311" style="font-weight:bold;" target="_blank" title="Click to know more about GUESSING">GUESSING</a> that's an OEM copy. Why are we getting that message and can we do anything about it?<a href="https://interviewquestions.tuteehub.com/tag/call-412416" style="font-weight:bold;" target="_blank" title="Click to know more about CALL">CALL</a> the #800 MS number and they will have you all fixed up...</p></body></html>
17517.

Solve : IP Address showing zeros after re-installing XP?

Answer» <html><body><p>I recently re-installed XP home on my old laptop and everything seemed to install ok but now I cannot <a href="https://interviewquestions.tuteehub.com/tag/connect-11879" style="font-weight:bold;" target="_blank" title="Click to know more about CONNECT">CONNECT</a> to my internet wirelessly.In my system tray it shows that my network name and conection rate as <a href="https://interviewquestions.tuteehub.com/tag/excellent-2543" style="font-weight:bold;" target="_blank" title="Click to know more about EXCELLENT">EXCELLENT</a> but it will not actually connect. When I do "ipconfig /all" I find my IP address to be 0.0.0.0. I also get a funny looking address for my DNS servers of "fec0:0:0:ffff::1%1" and then "2%1" and "3%1". I reinstalled my dell drivers from the drivers disc that came with the computer and I did have <a href="https://interviewquestions.tuteehub.com/tag/slowaonp-645927" style="font-weight:bold;" target="_blank" title="Click to know more about SLOW">SLOW</a> connectivity via wired hookup. I have tried "ping ip_address_of_the_router" and it I got "Ping request could not find host ip_address_of_the_router. Please check the name and try again.". I have a working interent <a href="https://interviewquestions.tuteehub.com/tag/connection-11321" style="font-weight:bold;" target="_blank" title="Click to know more about CONNECTION">CONNECTION</a> on my other laptop (wireless) and through my desktop (wired). I don't know if this is a <a href="https://interviewquestions.tuteehub.com/tag/driveraeur-442990" style="font-weight:bold;" target="_blank" title="Click to know more about DRIVER">DRIVER</a> issue or what but I just can't seem to get it figured out. THe status of my wirelss connetion on the problem computer is just aquiring network address. But it never connects. Any help would be greatly appreciated. I'm afraid I'm in over my head on this one. Start/Run...<br/>Type in ipconfig /release and hit Enter<br/>Then ipconfig /renew and hit Enter...<br/>Re-bboot and see...<br/><br/>NOTE the space between ipconfig command and the/ switchQuote</p><blockquote>I also get a funny looking address for my DNS servers of "fec0:0:0:ffff::1%1" and then "2%1" and "3%1".</blockquote>This is for IPv6. Normal.<br/><br/>Edit: The numbers don't look perfectly normal (kind of ), but it may be connected to the main issue, which patio attempts to fix.I have already tried to do as Patio said;<br/><br/>Start/Run...<br/>Type in ipconfig /release and hit Enter<br/>Then ipconfig /renew and hit Enter...<br/>Re-boot and see...<br/><br/>No luck with this I still had the same problems. My computer cannot connect wireless to the internet. I believe it to be a TCP/IP driver issue and cannot figure out how to solve it. I downloaded what I thought were the appropriate drivers form the drivers CD that came with the system. Right now I am trying to reinstall/repair of XP and see what happens. Any other ideas would be great if you have them. Thanks again!Quote<blockquote>My computer cannot connect wireless to the internet.</blockquote>Did you try wired connection?<br/><br/>After Windows reinstall, did you install chipset driver?<br/>What was used to reinstall Windows? Windows CD, or some recovery CD?<br/>Any errors in Device Manager?Probably forgot to re-install all drivers after the install...<br/>That's at least what it's looking like...</body></html>
17518.

Solve : don't know what is going on with the computer?

Answer» <html><body><p>here is the hijack this log<br/>Logfile of Trend Micro HijackThis v2.0.2<br/>Scan saved at 10:41:47 PM, on 8/10/2010<br/>Platform: Windows XP SP3 (WinNT 5.01.2600)<br/>MSIE: Internet Explorer v8.00 (8.00.6001.18702)<br/>Boot mode: Normal<br/><br/>Running processes:<br/>C:\WINDOWS\System32\smss.exe<br/>C:\WINDOWS\system32\winlogon.exe<br/>C:\WINDOWS\system32\services.exe<br/>C:\WINDOWS\system32\lsass.exe<br/>C:\WINDOWS\system32\svchost.exe<br/>C:\WINDOWS\System32\svchost.exe<br/>C:\WINDOWS\system32\spoolsv.exe<br/>C:\WINDOWS\Explorer.EXE<br/>C:\WINDOWS\system32\cisvc.exe<br/>C:\WINDOWS\System32\svchost.exe<br/>C:\Program Files\iolo\common\lib\ioloServiceManager.exe<br/>C:\Program Files\Microsoft LifeCam\MSCamS32.exe<br/>C:\Program Files\Common Files\Authentium\AntiVirus5\vsedsps.exe<br/>C:\Program Files\Common Files\Authentium\AntiVirus5\vseamps.exe<br/>C:\WINDOWS\system32\igfxpers.exe<br/>C:\WINDOWS\system32\ctfmon.exe<br/>C:\Program Files\iolo\System Mechanic Professional\System Shield\ioloSSTray.exe<br/>C:\WINDOWS\system32\svchost.exe<br/>C:\Documents and Settings\hmsam66\Desktop\Norman_Malware_Cleaner.exe<br/>C:\WINDOWS\system32\cidaemon.exe<br/>C:\Program Files\Trend Micro\HijackThis\HijackThis.exe<br/><br/>R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a href="https://go.microsoft.com/fwlink/?LinkId=69157">http://go.microsoft.com/fwlink/?LinkId=69157</a><br/>R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = <a href="https://go.microsoft.com/fwlink/?LinkId=54896">http://go.microsoft.com/fwlink/?LinkId=54896</a><br/>R1 - HKCU\Software\Microsoft\Internet Explorer\SearchURL,(Default) = <a href="http://ca.rd.yahoo.com/customize/ycomp/defaults/su/">http://ca.rd.yahoo.com/customize/ycomp/defaults/su/</a>*http://ca.yahoo.com<br/>R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Local Page = <br/>R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Local Page = <br/>O2 - BHO: Groove GFS Browser Helper - {72853161-30C5-4D22-B7F9-0BBC1D38A37E} - C:\Program Files\Microsoft Office\Office12\GrooveShellExtensions.dll<br/>O2 - BHO: SSVHelper <a href="https://interviewquestions.tuteehub.com/tag/class-18125" style="font-weight:bold;" target="_blank" title="Click to know more about CLASS">CLASS</a> - {761497BB-D6F0-462C-B6EB-D4DAF1D92D43} - C:\Program Files\Java\jre6\bin\ssv.dll<br/>O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll<br/>O2 - BHO: JQSIEStartDetectorImpl - {E7E6F031-17CE-4C07-BC86-EABFE594F69C} - C:\Program Files\Java\jre6\lib\deploy\jqs\ie\jqs_plugin.dll<br/>O4 - HKLM\..\Run: [IgfxTray] C:\WINDOWS\system32\igfxtray.exe<br/>O4 - HKLM\..\Run: [Persistence] C:\WINDOWS\system32\igfxpers.exe<br/>O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe<br/>O6 - HKLM\Software\Policies\Microsoft\Internet Explorer\Restrictions present<br/>O6 - HKLM\Software\Policies\Microsoft\Internet Explorer\Control Panel present<br/>O8 - Extra context menu item: E&amp;xport to Microsoft Excel - res://C:\PROGRA~1\Microsoft Office\Office12\EXCEL.EXE/3000<br/>O9 - Extra <a href="https://interviewquestions.tuteehub.com/tag/button-11522" style="font-weight:bold;" target="_blank" title="Click to know more about BUTTON">BUTTON</a>: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre6\bin\jp2iexp.dll<br/>O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre6\bin\jp2iexp.dll<br/>O9 - Extra button: Send to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\PROGRA~1\Microsoft Office\Office12\ONBttnIE.dll<br/>O9 - Extra 'Tools' menuitem: S&amp;end to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\PROGRA~1\Microsoft Office\Office12\ONBttnIE.dll<br/>O9 - Extra button: <a href="https://interviewquestions.tuteehub.com/tag/research-247379" style="font-weight:bold;" target="_blank" title="Click to know more about RESEARCH">RESEARCH</a> - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\Microsoft Office\Office12\REFIEBAR.DLL<br/>O9 - Extra button: (no name) - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br/>O9 - Extra 'Tools' menuitem: @xpsp3res.dll,-20001 - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br/>O18 - <a href="https://interviewquestions.tuteehub.com/tag/protocol-246787" style="font-weight:bold;" target="_blank" title="Click to know more about PROTOCOL">PROTOCOL</a>: grooveLocalGWS - {88FED34C-F0CA-4636-A375-3CB6248B04CD} - C:\Program Files\Microsoft Office\Office12\GrooveSystemServices.dll<br/>O23 - Service: Defragmentation-Service (DfSdkS) - mst software GmbH, Germany - C:\Program Files\Ashampoo\Ashampoo WinOptimizer 6\Dfsdks.exe<br/>O23 - Service: iolo FileInfoList Service (ioloFileInfoList) - Unknown owner - C:\Program Files\iolo\common\lib\ioloServiceManager.exe<br/>O23 - Service: iolo System Service (ioloSystemService) - Unknown owner - C:\Program Files\iolo\common\lib\ioloServiceManager.exe<br/>O23 - Service: vseamps - Authentium, Inc - C:\Program Files\Common Files\Authentium\AntiVirus5\vseamps.exe<br/>O23 - Service: vsedsps - Authentium, Inc - C:\Program Files\Common Files\Authentium\AntiVirus5\vsedsps.exe<br/>O23 - Service: vseqrts - Authentium, Inc - C:\Program Files\Common Files\Authentium\AntiVirus5\vseqrts.exe<br/><br/>--<br/>End of file - 4415 bytes<br/><br/><br/>Well even with a HJT log...we don't know what's <a href="https://interviewquestions.tuteehub.com/tag/going-1008806" style="font-weight:bold;" target="_blank" title="Click to know more about GOING">GOING</a> on with the computer either...</p></body></html>
17519.

Solve : problem with floppy drive and monitor?

Answer» <html><body><strong>HELLO,<br/>I am using <a href="https://interviewquestions.tuteehub.com/tag/windows-22662" style="font-weight:bold;" target="_blank" title="Click to know more about WINDOWS">WINDOWS</a> XP. my problem is that when i function my <a href="https://interviewquestions.tuteehub.com/tag/computer-243299" style="font-weight:bold;" target="_blank" title="Click to know more about COMPUTER">COMPUTER</a>, the monitor doesn't give output at first time.. so the need of <a href="https://interviewquestions.tuteehub.com/tag/switching-1236606" style="font-weight:bold;" target="_blank" title="Click to know more about SWITCHING">SWITCHING</a> off the main switch arises. At the second time when i function the PC twice, it starts...<br/>AND ALSO THE FLOPPY DRIVE FAILS FOR BOOTING<br/>kindly, reply</strong>Check the Power cord of the Monitor <a href="https://interviewquestions.tuteehub.com/tag/throughly-7717092" style="font-weight:bold;" target="_blank" title="Click to know more about THROUGHLY">THROUGHLY</a> &amp; un-plug the pin-based Monitor cord behind CPU &amp; check if all pins are intact(&amp; not bruised or broken).<br/><br/><a href="https://interviewquestions.tuteehub.com/tag/restart-622780" style="font-weight:bold;" target="_blank" title="Click to know more about RESTART">RESTART</a> the machine &amp; see if that works for you.</body></html>
17520.

Solve : IDE Laptop Hard Drive Adapter Re-Loading Windows Xp?

Answer» <html><body><p>Please any more help on my <a href="https://interviewquestions.tuteehub.com/tag/topics-25508" style="font-weight:bold;" target="_blank" title="Click to know more about TOPICS">TOPICS</a> please<br/>Thank you Per <a href="http://www.dooyoo.co.uk/laptops/fujitsu-siemens-amilo-l7320/">http://www.dooyoo.co.uk/laptops/fujitsu-siemens-amilo-l7320/</a> , your computer has a DVD drive. So, why haven't followed the advice and installed Windows by putting the Windows disc in your DVD drive and booting from it? If your DVD is not working, then replace it; you've already been given this advice but have not responded to it.<strong>Hi - Soybean</strong> - <strong><em>You clearly haven't read all my replies </em> </strong> - I first said that my DVD/CD is not working - My further replies:- I have an extternal drive and changed the bios to try and boot from a USB; but that didn't work - tried the six floppy disks but on the sixth disk the loading stopped and the blue stop screeen was shown - I tried to remove the drive from the computer first looking to see how it <strong><em>'JUST'</em></strong> <a href="https://interviewquestions.tuteehub.com/tag/slides-771607" style="font-weight:bold;" target="_blank" title="Click to know more about SLIDES">SLIDES</a> out , I took most of the outer <a href="https://interviewquestions.tuteehub.com/tag/casing-910354" style="font-weight:bold;" target="_blank" title="Click to know more about CASING">CASING</a> off but was unable to remove the bottom casing have unscrew all the visable screws. So I don't wish to sound rude, because I have been so please that people have responded. so I have tried evey <a href="https://interviewquestions.tuteehub.com/tag/thing-25656" style="font-weight:bold;" target="_blank" title="Click to know more about THING">THING</a> that I have been advised to do, what I'm hoping that some one can help as to just making the drive slide out? <strong><em>All the above plus more I have all ready replied</em></strong> It's a standard notebook optical drive, a NEC ND-6750A.<br/><br/>Quote from: amilo-forum</p><blockquote>To remove dvd drive, take out the battery and remove the three screws underneath, then fold your screen back till your laptop is flat this will release the the top fascia where the power button is (it clips off in three places can take a little welly to get it off), this will then allow you to take away the keyboard, underneath the keyboard, you'll see several screws, however you'll see one screw next to a gap in the surface, this is the back of the drive and holds it in place once you've removed the screw take out your drive, you'll need to take off the little <a href="https://interviewquestions.tuteehub.com/tag/piece-771048" style="font-weight:bold;" target="_blank" title="Click to know more about PIECE">PIECE</a> of metal on the back of the drive that the screw goes through and attach it to your new one. then replace the fascia and put your new drive in.<br/><br/>remember that you need your dvd drive open before you do all this, i know its obvious but theres nothing more annoying than when you forget.</blockquote><br/>Hi - Samon Trout - I'm sorry I did not want to upset any of you kind helpful people out there, I just could not understand why I had to keep repeating the problem I have been having, any way thank you kindly for your help, I have now easly removed the drive as per your clear and easy to use directions. Once again Thank you. I have been trying to make my poblem clear on each reply, and perhaps I was wrong to use bold and Underline, I just got feed up keep repeating myself, any way sorry<br/><br/>Malhope you are closer to a solution now... (see I removed all my sarcasm!)<br/></body></html>
17521.

Solve : icon help?

Answer» <html><body><p>Can someone explain to me how if I see a batch of icons somewhere how and where I download these icons to, that is where I first store them, and secondly, how you manage to put them in place , wether to change the icons on the desktop, or change the icons <a href="https://interviewquestions.tuteehub.com/tag/beneath-2000108" style="font-weight:bold;" target="_blank" title="Click to know more about BENEATH">BENEATH</a> for folders mail <a href="https://interviewquestions.tuteehub.com/tag/documents-247050" style="font-weight:bold;" target="_blank" title="Click to know more about DOCUMENTS">DOCUMENTS</a> recycle bin etc. Ive been searching everywhere for an answer to this but cant seem to find one. Thankyou.1) Download them to any folder you <a href="https://interviewquestions.tuteehub.com/tag/like-537196" style="font-weight:bold;" target="_blank" title="Click to know more about LIKE">LIKE</a> - just <a href="https://interviewquestions.tuteehub.com/tag/remember-621937" style="font-weight:bold;" target="_blank" title="Click to know more about REMEMBER">REMEMBER</a> which one you picked<br/>2) Once downloaded, right-click on the icon of the shortcut or program you want to change. Then choose Properties - Change Icon - Browse and <a href="https://interviewquestions.tuteehub.com/tag/navigate-569756" style="font-weight:bold;" target="_blank" title="Click to know more about NAVIGATE">NAVIGATE</a> to the folder where you stored the new icons. Double-click on the one you like then "okay" your way out.</p></body></html>
17522.

Solve : cant reinstall xp or remove viruses?

Answer» <html><body><p>When you are in the <a href="https://interviewquestions.tuteehub.com/tag/bios-398764" style="font-weight:bold;" target="_blank" title="Click to know more about BIOS">BIOS</a> and <a href="https://interviewquestions.tuteehub.com/tag/setting-241130" style="font-weight:bold;" target="_blank" title="Click to know more about SETTING">SETTING</a> the CD to <a href="https://interviewquestions.tuteehub.com/tag/1st-283090" style="font-weight:bold;" target="_blank" title="Click to know more about 1ST">1ST</a> <a href="https://interviewquestions.tuteehub.com/tag/boot-251147" style="font-weight:bold;" target="_blank" title="Click to know more about BOOT">BOOT</a> device you need to "Press F10 to save changes and exit" and then answer "Y"...<br/>The machine will <a href="https://interviewquestions.tuteehub.com/tag/reboot-1179238" style="font-weight:bold;" target="_blank" title="Click to know more about REBOOT">REBOOT</a> automatically...</p></body></html>
17523.

Solve : How to REMOVE this entry from within msconfig??

Answer» <html><body><p>Hello There! <br/><br/>After reading 'Windows XP <a href="https://interviewquestions.tuteehub.com/tag/tweak-7379392" style="font-weight:bold;" target="_blank" title="Click to know more about TWEAK">TWEAK</a>' articles, I made this entry within SYSTEM.INI tab of msconfig utility(Refer to the Screenshot, please).<br/><br/>Now I can surely disable the same BUT isn't there a way to permanently make it disappear from the screen?<br/><br/>WELCOME screen upon boot has started showing up for a longer duration &amp; I suspect this to be culprit. <br/><br/><a href="https://interviewquestions.tuteehub.com/tag/help-239643" style="font-weight:bold;" target="_blank" title="Click to know more about HELP">HELP</a> me get a <a href="https://interviewquestions.tuteehub.com/tag/permanent-590817" style="font-weight:bold;" target="_blank" title="Click to know more about PERMANENT">PERMANENT</a> rid of this entry please! <br/><br/>[recovering <a href="https://interviewquestions.tuteehub.com/tag/disk-244471" style="font-weight:bold;" target="_blank" title="Click to know more about DISK">DISK</a> space - old attachment deleted by admin]Just <a href="https://interviewquestions.tuteehub.com/tag/open-245076" style="font-weight:bold;" target="_blank" title="Click to know more about OPEN">OPEN</a> the system.ini file with your text editor and delete the line, then save the file. You should not use msconfig to make permanent changes to anything, only to troubleshoot.</p></body></html>
17524.

Solve : Recovery xp software back if backed up in a file on c drive????

Answer» <html><body><p>Hi I am <a href="https://interviewquestions.tuteehub.com/tag/hoping-7686882" style="font-weight:bold;" target="_blank" title="Click to know more about HOPING">HOPING</a> someone can help me please!!!!!!!!! I did a <a href="https://interviewquestions.tuteehub.com/tag/full-1001178" style="font-weight:bold;" target="_blank" title="Click to know more about FULL">FULL</a> system recovery. I chose the option back up in a folder on my c drive before doing the recovery. I assumed I could reinstall these softwares but I was sadly mistaken. Before I give up all hope on getting my software back (a lot of what I paid $$$ for) I just wanted to <a href="https://interviewquestions.tuteehub.com/tag/see-630247" style="font-weight:bold;" target="_blank" title="Click to know more about SEE">SEE</a> if anyone had any <a href="https://interviewquestions.tuteehub.com/tag/miracles-548081" style="font-weight:bold;" target="_blank" title="Click to know more about MIRACLES">MIRACLES</a> they could offer me. PLEASE HELP! I'm afraid you're out of luck...<br/>Programs can not be simply moved/copied and <a href="https://interviewquestions.tuteehub.com/tag/expect-7375705" style="font-weight:bold;" target="_blank" title="Click to know more about EXPECT">EXPECT</a> to work properly...they have to be installed to work.</p></body></html>
17525.

Solve : Windows Start Up?

Answer» <html><body><p>My computer isn't starting windows properly.i <a href="https://interviewquestions.tuteehub.com/tag/pressed-592844" style="font-weight:bold;" target="_blank" title="Click to know more about PRESSED">PRESSED</a> the power button while it was already shutting off.now whenever i try to turn it show me the "Start windows normally"page.i've tried each and everyone but nothing happens.it will just begin loading windows but then restart.Start by booting to the recovery console and running chkdsk /r<br/><br/>After that, if the system still does not boot you can try a repair installation.first of all.what iave no idea what a chdskamabob is.i have no disk no nothing.any ways i can fix this by just tampering with F2 or F10 and such?or anyh other method that a 17yrold-noncomputerwiz-confused-guy can fix this?<br/>Is your power button stuck down???See if you can borrow an XP CD of the same version that is currently installed. Then post back and we'll walk you through the required procedures.Hey...I am having the exact same proplem and I have the disk(see posting from today(see "help for my MSI Wind Notebook" where I describe the problem in detail) Same thing is happening...starts to boot, then the options screen, then tries to reboot again....would some <a href="https://interviewquestions.tuteehub.com/tag/one-241053" style="font-weight:bold;" target="_blank" title="Click to know more about ONE">ONE</a> be willing to help a gal out and walk ME through the procedure? I am addicted to my computer and feel neutered without it! Please? fyregyrl - please stay in your own thread. Thank you.will a <a href="https://interviewquestions.tuteehub.com/tag/reformat-11682" style="font-weight:bold;" target="_blank" title="Click to know more about REFORMAT">REFORMAT</a> disk help?I don't know what a reformat disc is.i'm not quite sure either.my bro says it might be possible.i guess its like the windows cd thingy?If you have the original <a href="https://interviewquestions.tuteehub.com/tag/os-25550" style="font-weight:bold;" target="_blank" title="Click to know more about OS">OS</a> cd and want to reformat and <a href="https://interviewquestions.tuteehub.com/tag/reinstall-2983763" style="font-weight:bold;" target="_blank" title="Click to know more about REINSTALL">REINSTALL</a> the OS that is your choice. Understand that by reformatting you will lose all data on the drive.luckily i saved some stuff to a cd.hye thnx for all the help.computers working and i think its also a little bit faster .:Dthnx</p></body></html>
17526.

Solve : WHAT ARE THE MOST COMMON SICK OF LINUX????

Answer» <html><body><strong> PLEASE REPLY TO MY POST!! I REALLY NEED YOUR ANSWER, WHY?? BECAUSE IM USING LINUX! THANKS <a href="https://interviewquestions.tuteehub.com/tag/guys-1014120" style="font-weight:bold;" target="_blank" title="Click to know more about GUYS">GUYS</a>!!!</strong>I have no idea what the question is...<br/>Can you be more specific ? ?I don't think this is a serious question. For one thing, it's in the <a href="https://interviewquestions.tuteehub.com/tag/windows-22662" style="font-weight:bold;" target="_blank" title="Click to know more about WINDOWS">WINDOWS</a> XP forum.But even had it been posted in the Linux section it wouldn't make any more sense...It is not proper English; it means <a href="https://interviewquestions.tuteehub.com/tag/nothing-581732" style="font-weight:bold;" target="_blank" title="Click to know more about NOTHING">NOTHING</a>. Also he has Caps Lock <a href="https://interviewquestions.tuteehub.com/tag/disease-769501" style="font-weight:bold;" target="_blank" title="Click to know more about DISEASE">DISEASE</a>. I smell a troll.<br/>Quote from: monan555 on July 17, 2010, 05:21:10 AM<blockquote><strong> PLEASE REPLY TO MY POST!!</strong><br/></blockquote>Consider it done.<br/><br/>Quote<blockquote><strong>I REALLY NEED YOUR ANSWER, WHY?? </strong><br/></blockquote>I don't know.<br/><br/>Quote<blockquote><strong>BECAUSE IM USING LINUX!</strong></blockquote>Oh, now I know... oh wait, no I don't. an answer (or in your case, an ANSWER) is usually given in <a href="https://interviewquestions.tuteehub.com/tag/response-771382" style="font-weight:bold;" target="_blank" title="Click to know more about RESPONSE">RESPONSE</a> to a question, the only question you ask here is why you need an answer, which I have to say is sort of begging the question.<br/><br/><br/>Quote<blockquote><strong> THANKS GUYS!!!</strong></blockquote><br/><br/>your welcome.<br/><br/>I mean, YOUR WELCOME!!!Quote from: BC_Programmer on July 17, 2010, 08:52:52 AM<blockquote>your welcome.<br/>I mean, YOUR WELCOME!!!<br/></blockquote><br/>You mean, You're welcome!!! or YOU'RE WELCOME!!!, don't you? <br/>Quote from: Salmon Trout on July 17, 2010, 08:56:50 AM<blockquote>You mean, You're welcome!!! or YOU'RE WELCOME!!!, don't you? <br/><br/></blockquote><br/>Of course not! do you think would use the right one? <br/><br/>Besides, for all we know their name could be "Welcome". heh</body></html>
17527.

Solve : Windows Fax and Piture viewer?

Answer» <html><body><p>Hi<br/>When I attach a picture to an E-mail and send (JPEG) I notice that it seems to send a Fax and Picture <a href="https://interviewquestions.tuteehub.com/tag/view-772105" style="font-weight:bold;" target="_blank" title="Click to know more about VIEW">VIEW</a> type mail. This has the folowing effect: the <a href="https://interviewquestions.tuteehub.com/tag/recipient-1180043" style="font-weight:bold;" target="_blank" title="Click to know more about RECIPIENT">RECIPIENT</a> recieves ALL the pictures I have viewed recently and these can be <a href="https://interviewquestions.tuteehub.com/tag/accessedbrbr-2395493" style="font-weight:bold;" target="_blank" title="Click to know more about ACCESSED">ACCESSED</a> by <a href="https://interviewquestions.tuteehub.com/tag/pressing-246004" style="font-weight:bold;" target="_blank" title="Click to know more about PRESSING">PRESSING</a> the arrow key at the bootom of Fax and Picture view. All I want the reciepient to see is the Photo I selected! Nothing <a href="https://interviewquestions.tuteehub.com/tag/else-printfy-344787" style="font-weight:bold;" target="_blank" title="Click to know more about ELSE">ELSE</a>! CURE?!<br/>regards Bushy</p></body></html>
17528.

Solve : 2000 Word & excel files open slow?

Answer» <html><body><p>HALP! My 2000 word &amp; excel files take 30-70 seconds to open. Sometimes I need to close and try again before they will open at all. Sometimes, not always I <a href="https://interviewquestions.tuteehub.com/tag/get-11812" style="font-weight:bold;" target="_blank" title="Click to know more about GET">GET</a> an error message stating that the file is a read only! I've cleaned the computer with Spybot, deleted cookies to no avail. However, a new word or excel opens within 10-15 seconds. Please help a retiree. I may not have a lot time left! Visit the Malware &amp; spyware help section and get started with fixing your computer right away! <br/><br/>A malware specialist should be available to help you soon before your time expires! This is the log from SuperAntispyware:::::SUPERAntiSpyware Scan Log<br/><a href="https://www.superantispyware.com">http://www.superantispyware.com</a><br/><br/>Generated 08/06/2010 at 05:28 PM<br/><br/>Application Version : 4.41.1000<br/><br/>Core Rules Database Version : 5328<br/>Trace Rules Database Version: 3140<br/><br/>Scan type : Complete Scan<br/>Total Scan Time : 01:21:02<br/><br/>Memory items scanned : 494<br/>Memory threats detected : 1<br/>Registry items scanned : 5890<br/>Registry threats detected : 1<br/>File items scanned : 40132<br/>File threats detected : 19<br/><br/>Trojan.Agent/Gen<br/>C:\WINDOWS\IMGTASK.EXE<br/>C:\WINDOWS\IMGTASK.EXE<br/>[ImgTask] C:\WINDOWS\IMGTASK.EXE<br/><br/>Rogue.PrivacyCenter<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\cg.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\mw.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\rd.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\sc.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\sm.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\sp.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\cg.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\rd.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\sc.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\sp.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys<br/>C:\Documents and Settings\admin\Application Data\PCenter\temp\settings.ini<br/>C:\Documents and Settings\admin\Application Data\PCenter\temp\spfilter<br/>C:\Documents and Settings\admin\Application Data\PCenter\temp<br/>C:\Documents and Settings\admin\Application Data\PCenter<br/><br/>Adware.Tracking CookiePosting logs: I hope I did this right <br/><br/>SUPERAntiSpyware Scan Log<br/><a href="https://www.superantispyware.com">http://www.superantispyware.com</a><br/><br/>Generated 08/06/2010 at 05:28 PM<br/><br/>Application Version : 4.41.1000<br/><br/>Core Rules Database Version : 5328<br/>Trace Rules Database Version: 3140<br/><br/>Scan type : Complete Scan<br/>Total Scan Time : 01:21:02<br/><br/>Memory items scanned : 494<br/>Memory threats detected : 1<br/>Registry items scanned : 5890<br/>Registry threats detected : 1<br/>File items scanned : 40132<br/>File threats detected : 19<br/><br/>Trojan.Agent/Gen<br/>C:\WINDOWS\IMGTASK.EXE<br/>C:\WINDOWS\IMGTASK.EXE<br/>[ImgTask] C:\WINDOWS\IMGTASK.EXE<br/><br/>Rogue.PrivacyCenter<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\cg.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\mw.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\rd.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\sc.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\sm.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases\sp.dat<br/>C:\Documents and Settings\admin\Application Data\PCenter\dbases<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\cg.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\rd.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\sc.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys\sp.key<br/>C:\Documents and Settings\admin\Application Data\PCenter\keys<br/>C:\Documents and Settings\admin\Application Data\PCenter\temp\settings.ini<br/>C:\Documents and Settings\admin\Application Data\PCenter\temp\spfilter<br/>C:\Documents and Settings\admin\Application Data\PCenter\temp<br/>C:\Documents and Settings\admin\Application Data\PCenter<br/><br/>Adware.Tracking Cookie<br/><br/>Malwarebytes' Anti-Malware 1.46<br/><a href="https://www.malwarebytes.org">www.malwarebytes.org</a><br/><br/>Database version: 4401<br/><br/>Windows 5.1.2600 Service Pack 3<br/>Internet Explorer 7.0.5730.13<br/><br/>8/6/2010 7:47:48 PM<br/>mbam-log-2010-08-06 (19-47-48).txt<br/><br/>Scan type: Quick scan<br/>Objects scanned: 125967<br/>Time elapsed: 12 minute(s), 17 second(s)<br/><br/>Memory <a href="https://interviewquestions.tuteehub.com/tag/processes-21463" style="font-weight:bold;" target="_blank" title="Click to know more about PROCESSES">PROCESSES</a> Infected: 0<br/>Memory Modules Infected: 0<br/>Registry Keys Infected: 1<br/>Registry Values Infected: 0<br/>Registry Data Items Infected: 0<br/>Folders Infected: 0<br/>Files Infected: 0<br/><br/>Memory Processes Infected:<br/>(No malicious items detected)<br/><br/>Memory Modules Infected:<br/>(No malicious items detected)<br/><br/>Registry Keys Infected:<br/>HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\Stats\{1d4db7d2-6ec9-47a3-bd87-1e41684e07bb} (Adware.MyWebSearch) -&gt; Quarantined and deleted successfully.<br/><br/>Registry Values Infected:<br/>(No malicious items detected)<br/><br/>Logfile of Trend Micro HijackThis v2.0.4<br/>Scan saved at 8:02:29 PM, on 8/6/2010<br/>Platform: Windows XP SP3 (WinNT 5.01.2600)<br/>MSIE: Internet Explorer v7.00 (7.00.6000.17055)<br/>Boot mode: Normal<br/><br/>Running processes:<br/>C:\WINDOWS\System32\smss.exe<br/>C:\WINDOWS\system32\winlogon.exe<br/>C:\WINDOWS\system32\services.exe<br/>C:\WINDOWS\system32\lsass.exe<br/>C:\WINDOWS\system32\svchost.exe<br/>C:\WINDOWS\System32\svchost.exe<br/>C:\WINDOWS\system32\spoolsv.exe<br/>C:\Program Files\Bonjour\mDNSResponder.exe<br/>C:\Program Files\Norton AntiVirus\Norton AntiVirus\Engine\17.7.0.12\ccSvcHst.exe<br/>C:\WINDOWS\System32\svchost.exe<br/>C:\WINDOWS\system32\SearchIndexer.exe<br/>C:\Program Files\Norton AntiVirus\Norton AntiVirus\Engine\17.7.0.12\ccSvcHst.exe<br/>C:\WINDOWS\Explorer.EXE<br/>C:\Program Files\Common Files\Real\Update_OB\realsched.exe<br/>C:\Program Files\Common Files\Java\Java Update\jusched.exe<br/>C:\Program Files\IE New Window Maximizer\iemaximizer.exe<br/>C:\WINDOWS\system32\ctfmon.exe<br/>C:\Program Files\Windows Desktop Search\WindowsSearch.exe<br/>C:\Program Files\Internet Explorer\iexplore.exe<br/>C:\Program Files\SUPERAntiSpyware\SUPERAntiSpyware.exe<br/>C:\WINDOWS\System32\msiexec.exe<br/>C:\WINDOWS\system32\SearchProtocolHost.exe<br/>C:\Program Files\Trend Micro\HiJackThis\HiJackThis.exe<br/><br/>R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Search Page = <a href="https://go.microsoft.com/fwlink/?LinkId=54896">http://go.microsoft.com/fwlink/?LinkId=54896</a><br/>R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a href="https://go.microsoft.com/fwlink/?LinkId=69157">http://go.microsoft.com/fwlink/?LinkId=69157</a><br/>R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = <a href="https://go.microsoft.com/fwlink/?LinkId=54896">http://go.microsoft.com/fwlink/?LinkId=54896</a><br/>R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = <a href="https://go.microsoft.com/fwlink/?LinkId=54896">http://go.microsoft.com/fwlink/?LinkId=54896</a><br/>R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = <a href="https://go.microsoft.com/fwlink/?LinkId=69157">http://go.microsoft.com/fwlink/?LinkId=69157</a><br/>R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant = <br/>R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch = <br/>R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = *.local<br/>O2 - BHO: AcroIEHelperStub - {18DF081C-E8AD-4283-A596-FA578C2EBDC3} - C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelperShim.dll<br/>O2 - BHO: RealPlayer Download and Record Plugin for Internet Explorer - {3049C3E9-B461-4BC5-8870-4C09146192CA} - C:\Program Files\Real\RealPlayer\rpbrowserrecordplugin.dll<br/>O2 - BHO: WormRadar.com IESiteBlocker.NavFilter - {3CA2F312-6F6E-4B53-A66E-4E65E497C8C0} - (no file)<br/>O2 - BHO: Symantec Intrusion <a href="https://interviewquestions.tuteehub.com/tag/prevention-605516" style="font-weight:bold;" target="_blank" title="Click to know more about PREVENTION">PREVENTION</a> - {6D53EC84-6AAE-4787-AEEE-F4628F01010C} - C:\Program Files\Norton AntiVirus\Norton AntiVirus\Engine\17.7.0.12\IPSBHO.DLL<br/>O2 - BHO: Google Toolbar Helper - {AA58ED58-01DD-4d91-8333-CF10577473F7} - c:\program files\google\googletoolbar1.dll<br/>O2 - BHO: Google Toolbar Notifier BHO - {AF69DE43-7D58-4638-B6FA-CE66B5AD205D} - C:\Program Files\Google\GoogleToolbarNotifier\5.1.1309.3572\swg.dll<br/>O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll<br/>O3 - Toolbar: &amp;Google - {2318C2B1-4965-11d4-9B18-009027A5CD4F} - c:\program files\google\googletoolbar1.dll<br/>O4 - HKLM\..\Run: [TkBellExe] "C:\Program Files\Common Files\Real\Update_OB\realsched.exe" -osboot<br/>O4 - HKLM\..\Run: [QuickTime Task] "C:\Program Files\QuickTime\qttask.exe" -atboottime<br/>O4 - HKLM\..\Run: [SunJavaUpdateSched] "C:\Program Files\Common Files\Java\Java Update\jusched.exe"<br/>O4 - HKLM\..\Run: [Adobe Reader <a href="https://interviewquestions.tuteehub.com/tag/speed-239060" style="font-weight:bold;" target="_blank" title="Click to know more about SPEED">SPEED</a> Launcher] "C:\Program Files\Adobe\Reader 9.0\Reader\Reader_sl.exe"<br/>O4 - HKLM\..\Run: [Adobe ARM] "C:\Program Files\Common Files\Adobe\ARM\1.0\AdobeARM.exe"<br/>O4 - HKLM\..\RunOnce: [Malwarebytes' Anti-Malware] C:\Program Files\Malwarebytes' Anti-Malware\mbamgui.exe /install /silent<br/>O4 - HKCU\..\Run: [IE New Window Maximizer] C:\Program Files\IE New Window Maximizer\iemaximizer.exe<br/>O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe<br/>O4 - HKCU\..\Run: [AdobeUpdater] "C:\Program Files\Common Files\Adobe\Updater5\AdobeUpdater.exe"<br/>O4 - Startup: Secunia PSI.lnk = C:\Documents and Settings\admin\My Documents\PSI\psi.exe<br/>O4 - Global Startup: Microsoft Office.lnk = C:\Program Files\Microsoft Office\Office\OSA9.EXE<br/>O4 - Global Startup: Windows Search.lnk = C:\Program Files\Windows Desktop Search\WindowsSearch.exe<br/>O9 - Extra button: (no name) - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br/>O9 - Extra 'Tools' menuitem: @xpsp3res.dll,-20001 - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br/>O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br/>O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br/>O16 - DPF: {6414512B-B978-451D-A0D8-FCFDF33E833C} (WUWebControl Class) - <a href="http://www.update.microsoft.com/windowsupdate/v6/V5Controls/en/x86/client/wuweb_site.cab?1225519252857">http://www.update.microsoft.com/windowsupdate/v6/V5Controls/en/x86/client/wuweb_site.cab?1225519252857</a><br/>O16 - DPF: {6E32070A-766D-4EE6-879C-DC1FA91D2FC3} (MUWebControl Class) - <a href="http://www.update.microsoft.com/microsoftupdate/v6/V5Controls/en/x86/client/muweb_site.cab?1226168669152">http://www.update.microsoft.com/microsoftupdate/v6/V5Controls/en/x86/client/muweb_site.cab?1226168669152</a><br/>O20 - Winlogon Notify: !SASWinLogon - C:\Program Files\SUPERAntiSpyware\SASWINLO.DLL<br/>O22 - SharedTaskScheduler: Browseui preloader - {438755C2-A8BA-11D1-B96B-00A0C90312E1} - C:\WINDOWS\System32\browseui.dll<br/>O22 - SharedTaskScheduler: Component Categories cache daemon - {8C7461EF-2B13-11d2-BE35-3078302C2030} - C:\WINDOWS\System32\browseui.dll<br/>O23 - Service: Bonjour Service - Apple Inc. - C:\Program Files\Bonjour\mDNSResponder.exe<br/>O23 - Service: Google Update Service (gupdate1c9e61f30a58b20) (gupdate1c9e61f30a58b20) - Google Inc. - C:\Program Files\Google\Update\GoogleUpdate.exe<br/>O23 - Service: Google Software Updater (gusvc) - Google - C:\Program Files\Google\Common\Google Updater\GoogleUpdaterService.exe<br/>O23 - Service: Norton AntiVirus (<a href="https://interviewquestions.tuteehub.com/tag/nav-569742" style="font-weight:bold;" target="_blank" title="Click to know more about NAV">NAV</a>) - Symantec Corporation - C:\Program Files\Norton AntiVirus\Norton AntiVirus\Engine\17.7.0.12\ccSvcHst.exe<br/>O24 - Desktop Component 0: (no name) - <a href="https://www.google.com/url?sa=T%5Cx26source%5Cx3dweb">http://www.google.com/url?sa=T\x26source\x3dweb</a><br/><br/>--<br/>End of file - 6151 bytes2x3i5x , Thank you, thank you. My files open within 15 seconds or less now. Quote from: micromos on August 09, 2010, 01:41:54 PM</p><blockquote>2x3i5x , Thank you, thank you. My files open within 15 seconds or less now. <br/></blockquote><br/>glad you have your problem solved</body></html>
17529.

Solve : xp defragmenter is defraged?

Answer» <html><body><p>Hello again <a href="https://interviewquestions.tuteehub.com/tag/ch-241780" style="font-weight:bold;" target="_blank" title="Click to know more about CH">CH</a>, Need some help with my defrag. Error <a href="https://interviewquestions.tuteehub.com/tag/message-25597" style="font-weight:bold;" target="_blank" title="Click to know more about MESSAGE">MESSAGE</a> (MMC cannot open this file C:\windows\systems32\defrag.msc.) Doesn't exist ,not mmc <a href="https://interviewquestions.tuteehub.com/tag/console-240226" style="font-weight:bold;" target="_blank" title="Click to know more about CONSOLE">CONSOLE</a>, created by later version of mmc, Don't have <a href="https://interviewquestions.tuteehub.com/tag/access-846773" style="font-weight:bold;" target="_blank" title="Click to know more about ACCESS">ACCESS</a>. Help<a href="http://www.raymond.cc/blog/archives/2008/07/13/fix-mmc-cannot-open-the-file-cwindowssystem32dfrgmsc-problem/">http://www.raymond.cc/blog/archives/2008/07/13/fix-mmc-cannot-open-the-file-cwindowssystem32dfrgmsc-problem/</a></p></body></html>
17530.

Solve : Toshiba Satellite a40 won't boot from disk??

Answer» <html><body><p>Ok so I have this Toshiba <a href="https://interviewquestions.tuteehub.com/tag/laptop-1066410" style="font-weight:bold;" target="_blank" title="Click to know more about LAPTOP">LAPTOP</a> and when it boots i hit F1 , F2 and it doesn't go into the bios so i can make it boot from <a href="https://interviewquestions.tuteehub.com/tag/cd-236847" style="font-weight:bold;" target="_blank" title="Click to know more about CD">CD</a> to reinstall the OS any ideas? The win 98 toshiba I have does the same <a href="https://interviewquestions.tuteehub.com/tag/thing-25656" style="font-weight:bold;" target="_blank" title="Click to know more about THING">THING</a> Here is a very simple diagnostic.<br/>Remove the HDD.<br/>Power up with Windows CD in drive.<br/>What happens? Does the CD start?yes it enters setup. meaning the dvd is the second boot device. Which i <a href="https://interviewquestions.tuteehub.com/tag/want-1448756" style="font-weight:bold;" target="_blank" title="Click to know more about WANT">WANT</a> to make first but can't <a href="https://interviewquestions.tuteehub.com/tag/access-846773" style="font-weight:bold;" target="_blank" title="Click to know more about ACCESS">ACCESS</a> the biosit's just that i recieved this second hand an didn't get the recovery disk or the portable floppy usb drive. so i downloaded the drivers from toshiba and want to install win xp homeThere's probably a hidden Recovery partition on there to restore the machine back to Day One status...<br/>I'd spend some time looking up the procedure on the Toshiba site...</p></body></html>
17531.

Solve : 16 bit ms-dos?

Answer» <html><body><p>Hello,<br/>I have a 2006 dell inspiron 6000 laptob and its a nice computer but runs too slow pops up with 16 bit ms-dos system error box <a href="https://interviewquestions.tuteehub.com/tag/everytime-2623177" style="font-weight:bold;" target="_blank" title="Click to know more about EVERYTIME">EVERYTIME</a> and won't show internet anymore. I need to swipe it clean. Have <a href="https://interviewquestions.tuteehub.com/tag/files-20889" style="font-weight:bold;" target="_blank" title="Click to know more about FILES">FILES</a> all backed up and I'm interested in puttin 7 on it. <a href="https://interviewquestions.tuteehub.com/tag/words-25841" style="font-weight:bold;" target="_blank" title="Click to know more about WORDS">WORDS</a> of wisdom?Few things ... you may want to visit here and follow the directions and a malware specialist will help you out. <br/><br/>That's what I'd do first but if you really want win 7, get the <a href="https://www.microsoft.com/downloads/details.aspx?FamilyID=1b544e90-7659-4bd9-9e51-2497c146af15&amp;displaylang=en">Windows 7 <a href="https://interviewquestions.tuteehub.com/tag/upgrade-1440168" style="font-weight:bold;" target="_blank" title="Click to know more about UPGRADE">UPGRADE</a> Advisor</a> and see how you're computer will fare with win 7 with that microsoft check tool. It'll give you a gauge at how win 7 will probably be like for you ....<br/><br/><br/></p></body></html>
17532.

Solve : Computer freezing and restarting on its own?

Answer» <html><body><p>So, I've got this error that gets pretty annoying, my PC keeps on crashing under unknown circumstances. On reboot, I got the window that the system recovered from a serious error. In the event viewer i get this:<br/><br/>Quote</p><blockquote>Error code 10000050, parameter1 f7ffebfe, parameter2 00000000, parameter3 f7ffebfe, parameter4 00000000.</blockquote><br/>The system <a href="https://interviewquestions.tuteehub.com/tag/temperature-11887" style="font-weight:bold;" target="_blank" title="Click to know more about TEMPERATURE">TEMPERATURE</a> is not too much over the limit. The CPU is ~ 60°C, which I don't think its too high.<br/><br/>Configuration:<br/>AMD Athlon XP 1600 + ~ 1,9 GHz<br/>1024 MB RAM (1x512, 2x256)<br/><a href="https://interviewquestions.tuteehub.com/tag/ati-887041" style="font-weight:bold;" target="_blank" title="Click to know more about ATI">ATI</a> Radeon 9600 PRO (128 MB)<br/><br/>Any solutions? Quote<blockquote>The CPU is ~ 60°C</blockquote>Desktop? If so, it's way too high.Quote from: Broni on July 17, 2010, 10:47:27 PM<blockquote>Desktop? If so, it's way too high.<br/></blockquote><br/><br/>For the Athlon 1600+ if the temp is <a href="https://interviewquestions.tuteehub.com/tag/constantly-2017529" style="font-weight:bold;" target="_blank" title="Click to know more about CONSTANTLY">CONSTANTLY</a> or usually over 50 it means cooling is not good enough. However the problem is probably the overclock. The Athlon XO 1600+ is a 1.4 GHz part. If he is running it at around 1.9 GHZ as his post says, that is almost certainly the cause of the instability. Even if he has got the cpu core voltage <a href="https://interviewquestions.tuteehub.com/tag/right-239192" style="font-weight:bold;" target="_blank" title="Click to know more about RIGHT">RIGHT</a> the cpu might be marginal at that speed and also the RAM might not be able to keep up. Plus it is getting hot. What mystifies me is that he has that system and those symptoms and he needs to ask why it keeps crashing when he plays games... <br/><br/><br/></body></html>
17533.

Solve : xp recovery console admin password problem?

Answer» <html><body><p>at enter administrator pass word, i hit enter, wrong, i type administrator, administrators,my user name, and yes i do have administrator rights to my computers, i do not have any passwords at log on, what am i missing, or am i just <a href="https://interviewquestions.tuteehub.com/tag/tired-661145" style="font-weight:bold;" target="_blank" title="Click to know more about TIRED">TIRED</a> - please <a href="https://interviewquestions.tuteehub.com/tag/help-239643" style="font-weight:bold;" target="_blank" title="Click to know more about HELP">HELP</a> This <a href="https://interviewquestions.tuteehub.com/tag/may-557248" style="font-weight:bold;" target="_blank" title="Click to know more about MAY">MAY</a> help<br/><br/>Quote</p><blockquote>Error message when you log on to Recovery <a href="https://interviewquestions.tuteehub.com/tag/console-240226" style="font-weight:bold;" target="_blank" title="Click to know more about CONSOLE">CONSOLE</a> in Windows XP: "The password is not valid"</blockquote><br/><a href="https://support.microsoft.com/kb/308402">http://support.microsoft.com/kb/308402</a><br/><br/></body></html>
17534.

Solve : New computer works (using router); old computer now wont connect to anything?

Answer» <html><body><p>We bought a new HP which has Windows 7. That's up &amp; running <a href="https://interviewquestions.tuteehub.com/tag/fine-248571" style="font-weight:bold;" target="_blank" title="Click to know more about FINE">FINE</a> and connected with the internet, hardwired, through the router. We have a Toshiba netbook that we have a Belkin wireless router (N+) that connects to the internet and we can access the printers and external hard drive without issue. We were using a Dell that has Windows 98 (2nd edition) on it and up until we pulled that one down, it worked fine hooking directly into the modem (Westell). We have Norton 360. We have DSL.<br/><br/>The HP is in our living room as is the modem and the router. I can use the wireless Toshiba anywhere in our house without issue. Problem, we are trying to hook up the Dell in the spare bedroom and wanted to connect to the internet, external hard drive, etc.<br/><br/>We ran the wiring to the spare bedroom for the jack and that works as we took the wireless netbook, unplugged the router completely and hard wired up the netbook in the spare bedroom and could access the internet. I am assuming the "wired" jack holes in the router are working okay because I can plug our HP into any of those and it's connecting fine. I don't know how to "<a href="https://interviewquestions.tuteehub.com/tag/turn-767121" style="font-weight:bold;" target="_blank" title="Click to know more about TURN">TURN</a> off" the wi-fi (built in) on the netbook to check if the router is working from the living room to the spare bedroom (that runs by hard wire.<br/><br/><br/>Upon hooking up the Dell in the spare bedroom and plugging everything in - the computer boots up fine but cannot access the internet. Of course the Dell is out of warranty and Dell wants to charge just to talk to us with no guarantee they can correct anything. I get the internet error page and when I run the diagnostic it mentions something about not having a valid IP address. ATT (our provider) says it isn't their issue but our computer's problem. Any other suggestions please Thx. Rosemarie<br/><br/>If you are capable, you can go to win98 network settings and make sure TCP/IP protocol is set to Auto IP and Auto DNS and that DHCP is enabled. also make sure the Alt <a href="https://interviewquestions.tuteehub.com/tag/configuration-11827" style="font-weight:bold;" target="_blank" title="Click to know more about CONFIGURATION">CONFIGURATION</a> tab is disabled and all info is deleted. If you change anything you will need to apply/ OK to save it and reboot before new settings will take affect.<br/><br/>please note that win98 is not very safe/secure on the net and it would be best to install <a href="https://interviewquestions.tuteehub.com/tag/xp-747558" style="font-weight:bold;" target="_blank" title="Click to know more about XP">XP</a> if you can.Ok .. now you are going to think I'm a complete idiot. First .. the old Dell does have Windows XP, not Windows 98 (this is what happens when you hang on to your old computers .. we destroyed the Windows 98 computer, got rid of it). The other stuff still applies. I'm so sorry .. I re-read again what you wrote, then realized my initial information was completely wrong !!! Please let me know if I should try the same thing you initially said. Thanks.yes the same info applies to xpWanted to let you know .. I got my problem solved...Not sure why my IP address disappeared but after spending a couple hours with Belkin and another few hours with ATT .. I finally got through to someone who understood that my IP address was gone .. and got me a new one BUT the address wouldn't stay in the computer .. Every time we tried to go back to the ipconfig /all the #s were gone. I <a href="https://interviewquestions.tuteehub.com/tag/went-734459" style="font-weight:bold;" target="_blank" title="Click to know more about WENT">WENT</a> to Best Buy and bought a new network interface card .. and my problems were all resolved. The computer found the internet and works fine surfing the web. <br/><br/>BUT .. I now need to figure out how to make the Windows 98 computer SHARE so we can have that stuff save to the external hard drive, use the printers (which are already sharing with our other computers) .. I think I'm just spending so much time I'm losing my thoughts ... Can you help please. Thanks !!Quote</p><blockquote> I now need to figure out how to make the Windows 98 computer SHARE</blockquote><br/>You mean the XP computer, right?Yes .. I can access the internet on the Windows XP computer but I cannot save to the external hard drive, use the printer (hooked up to the main computer), etc. Does it have something to do with my settings??<br/>Can you explain how the network is set up and what the printer is hooked up on.<br/><br/>Is the external drive usb? and have you tried it in the winxp usb port?<br/><br/>also include what windows each comp has. You can a good idea how this stuff works by reading this......<br/><br/><br/><a href="http://www.pcstats.com/articleview.cfm?articleID=1427">http://www.pcstats.com/articleview.cfm?articleID=1427</a><br/><br/></body></html>
17535.

Solve : E Mail messages?

Answer» <html><body><p>My E mail (<a href="https://interviewquestions.tuteehub.com/tag/hotmail-488356" style="font-weight:bold;" target="_blank" title="Click to know more about HOTMAIL">HOTMAIL</a>) is <a href="https://interviewquestions.tuteehub.com/tag/sending-1200600" style="font-weight:bold;" target="_blank" title="Click to know more about SENDING">SENDING</a> out the same <a href="https://interviewquestions.tuteehub.com/tag/rubbish-1191961" style="font-weight:bold;" target="_blank" title="Click to know more about RUBBISH">RUBBISH</a> message about *censored*, to my entire contact list. How can I stop this from <a href="https://interviewquestions.tuteehub.com/tag/happening-1015466" style="font-weight:bold;" target="_blank" title="Click to know more about HAPPENING">HAPPENING</a> and can I prevent any future episode. Your machine is infected and has been turned to a spam-bot...<br/>Visit the Virus and Spyware section and follow the instructions at the top of the page...</p></body></html>
17536.

Solve : how to delete desktop PICTURES?

Answer» <html><body><p>You don't need to <a href="https://interviewquestions.tuteehub.com/tag/raise-1176780" style="font-weight:bold;" target="_blank" title="Click to know more about RAISE">RAISE</a> your hand <br/>Just ask.thanks <a href="https://interviewquestions.tuteehub.com/tag/sweetie-3092769" style="font-weight:bold;" target="_blank" title="Click to know more about SWEETIE">SWEETIE</a>, but i <a href="https://interviewquestions.tuteehub.com/tag/put-11868" style="font-weight:bold;" target="_blank" title="Click to know more about PUT">PUT</a> it in "other ".<br/>have a great <a href="https://interviewquestions.tuteehub.com/tag/week-1451206" style="font-weight:bold;" target="_blank" title="Click to know more about WEEK">WEEK</a> !</p></body></html>
17537.

Solve : password protect a document?

Answer» <html><body><p>I am using Windows XP. How to protect a word file or any other document by locking it with a password?<a href="https://www.google.com.hk/#hl=en&amp;source=hp&amp;q=lock+word+document+with+password&amp;aq=f&amp;aqi=g1&amp;&lt;klux&gt;AQL&lt;/klux&gt;=&amp;oq=&amp;gs_rfai=&amp;fp=b5dded608de8507d">http://www.google.com.hk/#hl=en&amp;source=hp&amp;q=lock+word+document+with+password&amp;aq=f&amp;aqi=g1&amp;aql=&amp;oq=&amp;gs_rfai=&amp;fp=b5dded608de8507d</a><br/><br/>See first resultQuote from: dratul on August 08, 2010, 06:32:41 AM</p><blockquote>I am using Windows XP. How to protect a word file or any other document by locking it with a password?<br/></blockquote>Which version of word?i am using Office 2007 but the document is saved as word 2003.THANX ALL...I found the <a href="https://interviewquestions.tuteehub.com/tag/answer-15557" style="font-weight:bold;" target="_blank" title="Click to know more about ANSWER">ANSWER</a> &amp; can lock the document as follow<br/><br/>1. Click on the File Button at the top of the <a href="https://interviewquestions.tuteehub.com/tag/page-25452" style="font-weight:bold;" target="_blank" title="Click to know more about PAGE">PAGE</a>. <br/><br/><a href="https://interviewquestions.tuteehub.com/tag/2-236987" style="font-weight:bold;" target="_blank" title="Click to know more about 2">2</a>. Click Save as.<br/><br/>3. On the Save as Pop-up window, click 'Tools' then scroll down to General options (on the <a href="https://interviewquestions.tuteehub.com/tag/bottom-401202" style="font-weight:bold;" target="_blank" title="Click to know more about BOTTOM">BOTTOM</a> left) and choose a password.<br/><br/>4. Choose a password for opening a document.<br/><br/>5. Choose a password for modifying a document.</body></html>
17538.

Solve : INSTALL IQ IN WINDOWS EX-P?

Answer» <html><body><p>I WENT TO THE LINK THAT WAS MENTIONED WWW.FREE-CODECS.COM/CODEC-PACK-ALL-IN-1 DOWNLOAD.HTM BUT NOTHING HAPPEN AFTER DOWNLOAD, I WENT TO MY WINDOWS MEDIA PLAYER AND IT STILL <a href="https://interviewquestions.tuteehub.com/tag/would-3285927" style="font-weight:bold;" target="_blank" title="Click to know more about WOULD">WOULD</a> NOT LET ME VIEW MY DOWNLOADED MOVIE. IT TELLS ME I <a href="https://interviewquestions.tuteehub.com/tag/need-25476" style="font-weight:bold;" target="_blank" title="Click to know more about NEED">NEED</a> A A DECODER. WHAT DID I DO WRONG. <br/>PLEASE <a href="https://interviewquestions.tuteehub.com/tag/advise-850930" style="font-weight:bold;" target="_blank" title="Click to know more about ADVISE">ADVISE</a>. Try the k-lite codec pack<br/><a href="https://www.filehippo.com/download_klite_codec_pack/">http://www.filehippo.com/download_klite_codec_pack/</a><br/><br/>or use <a href="https://interviewquestions.tuteehub.com/tag/vlc-2320637" style="font-weight:bold;" target="_blank" title="Click to know more about VLC">VLC</a>. It will play just about anything<br/><a href="https://www.videolan.org/vlc/">http://www.videolan.org/vlc/</a></p></body></html>
17539.

Solve : Stuck at Windows Product Activation Screen.?

Answer» <html><body><p>I originally installed Windows <a href="https://interviewquestions.tuteehub.com/tag/xp-747558" style="font-weight:bold;" target="_blank" title="Click to know more about XP">XP</a> Prof on this PC. Everything went well. Nothing indicating a glitch of any kind. I used this PC for about a week with out any problems. Today I have the folowing problem... <br/>1. PC boots up normally to windows welcome screen. I will normally click the icon [my name] to continue. <br/>2. A Windows product activation dialogue grey box pops up. "This copy of Windows must be activated with Microsoft before you can log on". Do you wish to activate windows? Yes or no? <br/>3. I choose yes. This brings me to the desktop for a brief moment. Immediately there is a blue Windows activation dialogue box the fills the screen. "Windows is aleready activated-click OK to exit.<br/>4. Clicking exit immediately places me back at the welcome screen mentioned in 1. From here I just go in circles.<br/><br/>Does any one know how to correct this problem.? Just yesterday everything was working fine. Originally everything was authenticated properly. I am <a href="https://interviewquestions.tuteehub.com/tag/open-245076" style="font-weight:bold;" target="_blank" title="Click to know more about OPEN">OPEN</a> to any and all suggestions. There is some important data on the hard drive I "<a href="https://interviewquestions.tuteehub.com/tag/would-3285927" style="font-weight:bold;" target="_blank" title="Click to know more about WOULD">WOULD</a> like" to recover" if possible. [/size] 1) Is the DVD an original, retail copy of Windows?<br/>2) Did you ever use this DVD to install Windows on another system?<br/>3) Did you activate Windows when it was first installed?<br/>4) Were there any other problems the last <a href="https://interviewquestions.tuteehub.com/tag/time-19467" style="font-weight:bold;" target="_blank" title="Click to know more about TIME">TIME</a> the system booted normallY?Thanks for responding to my question Allen.<br/>1. Yes the DVD is original retail copy of windows Xp.<br/>2. No, I have not used this CD to install windows in another PC.<br/>3. Yes, I full activated windows when it was first installed. I received a response.<br/>4. No, the next to last time I booted up I had no problems. The PC came up normally. <br/><br/>I am thinking of <a href="https://interviewquestions.tuteehub.com/tag/starting-1224778" style="font-weight:bold;" target="_blank" title="Click to know more about STARTING">STARTING</a> over at this point. I am not sure If I should stay with XP or move on to Windows 7. I do not know if one is really better than the other. Thanks.<br/>Have you tried calling Windows #800 number to activate ? ?<br/>They're very friendly...</p></body></html>
17540.

Solve : desktop freezes about 5 minutes after booting up?

Answer» <html><body><p>Desktop operates normally for about 5 minutes and then freezes. Cursor moves freely but there is no response when clicking on anything. Can't get task manager. Won't respond to any function keys. After pulling plug unit boots and operates normally and doesn't freeze again. Next day same thing happens.1. Try going into safemode if it also freezes. <br/> If it still freezes:<br/>2. Make sure your computer(<a href="https://interviewquestions.tuteehub.com/tag/cpu-249685" style="font-weight:bold;" target="_blank" title="Click to know more about CPU">CPU</a>) is free from dust or dirt.<br/>3. Try to disconnect/reconnect RAM while computer is off and unplug.<br/> Check also the connection for your hard drive (connect/reconnect) if its loose. What happens in safe mode?Thanks. Opened unit in safe mode. Neither firefox nor internet explorer would let me get on internet. However, unit operated normally otherwise, with no problems using a variety of non-web based utilities. So, rebooted in normal mode. Worked successfully on non-web activities for about 20 minutes. Then pulled up firefox and had no problems with web activities for another 20 minutes!<br/>Rebooted normal mode and immediately opened firefox, as I usually do. No problems!<br/>This is weird! Can't believe that opening in safe mode that one time <a href="https://interviewquestions.tuteehub.com/tag/fixed-245605" style="font-weight:bold;" target="_blank" title="Click to know more about FIXED">FIXED</a> anything.<br/>Any thoughts on this?It didn't. Something that's loading with your system is probably causing the issue. You might want to <a href="https://interviewquestions.tuteehub.com/tag/download-11414" style="font-weight:bold;" target="_blank" title="Click to know more about DOWNLOAD">DOWNLOAD</a> and run Mike Lin's Startup Control Panel and disable all startup items, then reboot and see if the problem recurs.<br/><a href="http://www.mlin.net/StartupCPL.shtml">http://www.mlin.net/StartupCPL.shtml</a>try memtest to check you RAM for any issue.<br/>perform scandisk with repair option (chkdsk /r) to check your HDD, it may be developing bad sectors.<br/><br/>Quote from: jaydeee on July 09, 2010, 01:16:00 PM</p><blockquote>try memtest to check you RAM for any issue.<br/>perform scandisk with repair option (chkdsk /r) to check your HDD, it may be developing bad sectors.<br/><br/><br/></blockquote>1) If it was ram the problem would also be present in safe mode<br/>2) Bad sectors wouldn't cause this problem<br/>3) There is no scandisk with XP<br/>4) If you are going to run chkdsk /r then it should be run from the recovery consoleThanks, Allan. Went to msconfig/startup and disabled all startups last night. Booted this AM and unit ran all day with no problems. If same thing happens tomorrow I guess I'll have to selectively remove start-ups until I locate the bad one. Will Lin's program help me do that?<br/>Also, why does the unit freeze about 5 min after all the startups seem to have loaded? And, why does problem go away for the rest of the day after I pull plug and reboot? Why doesn't it <a href="https://interviewquestions.tuteehub.com/tag/come-409636" style="font-weight:bold;" target="_blank" title="Click to know more about COME">COME</a> back when I reboot? Wierd, no?<br/>Thanks again - PaulUsing Startup Control Panel, start adding items back one or two at a time, rebooting after each, until the problem returns. Then post the name of the offending startup item and let's see if we can figure out why it's causing the problem.<br/>Allan - thanks again for your help. The startup RTHDCPL seems to be the culprit, although it does not consistently cause the problem. When I booted up first time this AM I had only 4 startup items enabled: AVGTRAY(antivirus); FirewallGUI; Clavier(a text storage routine that I've used for years on several computers); RTHDCPL ( a control panel prebundled by Dell for the Realtek HD audio control). System froze up after about 5 minutes of use. I pulled plug and booted up again and had no problems after that.<br/><br/>Yesterday AM I booted up with the first 3 items enabled and RTHDCPL disabled. There was no freeze up at all.<br/><br/>Not obvious to me why RTHDCPL should be causing this problem. Any ideas? However, I never use this item so I <a href="https://interviewquestions.tuteehub.com/tag/intend-2742712" style="font-weight:bold;" target="_blank" title="Click to know more about INTEND">INTEND</a> to leave it disabled permanently. This was a very useful exercise since I wound up eliminating about 10 other startups which are completely unnecessary for me.<br/><br/>Regards - PaulNo idea at all. I guess it's for the same reason some people are allergic to certain foods and others aren't. As long as everything is good now, let's not worry about it. Thanks for the follow up.</body></html>
17541.

Solve : Laptop shuts off by it self????

Answer» <html><body><p>So, I'll just be using my laptop normally and it will turn off on its own. Even when it's fully charged. I have a Dell Inspiron and it is over 2 years <a href="https://interviewquestions.tuteehub.com/tag/old-585313" style="font-weight:bold;" target="_blank" title="Click to know more about OLD">OLD</a>. It didn't usually happen that often, but now everytime I'm on the <a href="https://interviewquestions.tuteehub.com/tag/computer-243299" style="font-weight:bold;" target="_blank" title="Click to know more about COMPUTER">COMPUTER</a>, it'll shut down after 30 <a href="https://interviewquestions.tuteehub.com/tag/minutes-770612" style="font-weight:bold;" target="_blank" title="Click to know more about MINUTES">MINUTES</a> or so. I have Norton Anti Virus and there is no virus that I'm aware of. Help?Overheating...<br/>DLoad and install and run SpeedFan...<br/>Post back with your temp <a href="https://interviewquestions.tuteehub.com/tag/readings-1178417" style="font-weight:bold;" target="_blank" title="Click to know more about READINGS">READINGS</a>...Ah thank you.<br/>The temp readings were:<br/><br/>temp 1- 67 degrees Celsius<br/>core- 65 degrees Celsius<br/>and HD0- 40 degrees Celsius<br/><br/>So my laptop shuts down due to overheating?Temps are OK, but of course it's still on. Maybe the cpu fan is choked with dust.Try using laptop with a direct connection to the adaptor by removing the battery and check your 2 year old laptop if ventilation for fan is block from dust. <a href="https://interviewquestions.tuteehub.com/tag/better-895998" style="font-weight:bold;" target="_blank" title="Click to know more about BETTER">BETTER</a> yet an internal cleaning using the right procedure might clear your problem.Okay, Ill try and check the fan for dust.<br/>Thank you both for your suggestions!Shining a flashlight into the fan exhaust port should give you a good idea before opening it up.</p></body></html>
17542.

Solve : can't install xp?

Answer» <html><body><p>Windows XP CD are bootable. In order to boot from CD/DVD-ROM you need to set the boot sequence. Look for the boot sequence under your BIOS setup and make sure that the first boot device is set to CD/DVD-ROM.im <a href="https://interviewquestions.tuteehub.com/tag/back-389278" style="font-weight:bold;" target="_blank" title="Click to know more about BACK">BACK</a>! and with great news! <br/><br/>it's working again! <br/>i want to t.h.a.n.k. everyone for their input. every comment that i got was helpful and obviosly from smart people. i look forword to future work shops.<br/><br/>if you want to know, here is a <a href="https://interviewquestions.tuteehub.com/tag/little-1075899" style="font-weight:bold;" target="_blank" title="Click to know more about LITTLE">LITTLE</a> more info:<br/><br/>a new friend was looking at the 'puter and we both agreed on all the maybe's and if's. we desided to start from scratch.<br/>when we got to the , do or die, part. he <a href="https://interviewquestions.tuteehub.com/tag/put-11868" style="font-weight:bold;" target="_blank" title="Click to know more about PUT">PUT</a> in 'his' copy of xp and it <a href="https://interviewquestions.tuteehub.com/tag/asked-383947" style="font-weight:bold;" target="_blank" title="Click to know more about ASKED">ASKED</a> for the xp cd, and then asked for the xp sp1 and he put in 'his' copy.....bang!!<br/> now it will read all of my cd's. we can't figure it out. well, that's o.k.,,for now!!!<br/></p></body></html>
17543.

Solve : Windows is can't change display setting?

Answer» <html><body><p>Go here: <a href="http://www.kellys-korner-xp.com/xp_tweaks.htm">http://www.kellys-korner-xp.com/xp_tweaks.htm</a> and try 187, or 214, or 271ok <a href="https://interviewquestions.tuteehub.com/tag/thankslet-3107441" style="font-weight:bold;" target="_blank" title="Click to know more about THANKSLET">THANKSLET</a> us know...ya i got it to work fine now thanks for all the helpWhich <a href="https://interviewquestions.tuteehub.com/tag/fix-991779" style="font-weight:bold;" target="_blank" title="Click to know more about FIX">FIX</a> worked for you, if we <a href="https://interviewquestions.tuteehub.com/tag/may-557248" style="font-weight:bold;" target="_blank" title="Click to know more about MAY">MAY</a>?the <a href="https://interviewquestions.tuteehub.com/tag/271-299063" style="font-weight:bold;" target="_blank" title="Click to know more about 271">271</a> after i ran that one i restarted and it was fine thanks for the helpYou're very welcome <br/>Thanks for posting back</p></body></html>
17544.

Solve : Network problem then blue screen Stop 0x000000F4?

Answer» <html><body><p>0x000000F4 - 0xF4<br/><br/> - Connecting a hard disk drive in slave only mode leads to system halt during resume from standby<br/><br/>A computer that is running Microsoft Windows XP or a later operating system stops responding during resume from standby, and you receive one of the following stop error messages:<br/><br/>0x0000007a (e163a3e4,c000000e,bf8e9313,0697f860<br/>0x000000F4 (0x00000003, Parameter2, Parameter3, Parameter4)<br/><br/> - Windows XP stops responding when you click or resize a window, or in Windows Server 2003, when you run many console applications, you receive a Stop error <a href="https://interviewquestions.tuteehub.com/tag/message-25597" style="font-weight:bold;" target="_blank" title="Click to know more about MESSAGE">MESSAGE</a>: "0x000000F4" [for that, go here] <a href="https://support.microsoft.com/kb/916199/en-us">http://support.microsoft.com/kb/916199/en-us</a><br/><br/>When you click a window or when you resize a window, Windows XP stops responding (hangs). You experience this symptom if the following conditions are true:<br/><br/> * The window overlaps another window.<br/> * The computer has a dual-core processor or a hyper-threading processor.<br/> * The Windows Classic theme is applied.<br/><br/>Note: To determine whether the Windows Classic theme is applied, right-click an empty area on the desktop, click Properties, and then click the Themes tab. The current desktop theme is listed in the Theme box.The <a href="https://interviewquestions.tuteehub.com/tag/problems-13702" style="font-weight:bold;" target="_blank" title="Click to know more about PROBLEMS">PROBLEMS</a> seems to be with the Network, it happens using the LAN cable and WiFI connections. Yesterday I was trying to monitor something with wire shark and the LAN connection was not show in the interfaces of wire shark. Should I try to <a href="https://interviewquestions.tuteehub.com/tag/repair-1185018" style="font-weight:bold;" target="_blank" title="Click to know more about REPAIR">REPAIR</a> it with an XP disk? Can I do something else to verify the network related software.Quote from: jlsplinter on <a href="https://interviewquestions.tuteehub.com/tag/march-243170" style="font-weight:bold;" target="_blank" title="Click to know more about MARCH">MARCH</a> 23, 2010, 02:50:01 PM</p><blockquote>Thanks will try that to see what happens. It said the the address causing the crash is ntoskrnl.exe+22f0d windows system. Can I fix this issue?<br/><br/><br/>A problem has been detected and Windows has been shut down to prevent damage<br/>to your computer.<br/><br/>The problem seems to be caused by the following file: ntoskrnl.exe<br/><br/>CRITICAL_OBJECT_TERMINATION<br/><br/>If this is the first time you've seen this stop error screen,<br/>restart your computer. If this screen appears again, follow<br/>these steps:<br/><br/>Check to make sure any new hardware or software is properly installed.<br/>If this is a new installation, ask your hardware or software manufacturer<br/>for any Windows updates you might need.<br/><br/>If problems continue, disable or remove any newly installed hardware<br/>or software. Disable BIOS memory options such as caching or shadowing.<br/>If you need to use safe mode to remove or disable components, restart<br/>your computer, press F8 to select Advanced Startup Options, and then<br/>select Safe Mode.<br/><br/>Technical Information:<br/><br/>*** STOP: 0x000000f4 (0x00000003, 0x89c83da0, 0x89c83f14, 0x805d1650)<br/><br/>*** ntoskrnl.exe - Address 0x804f9f0d <a href="https://interviewquestions.tuteehub.com/tag/base-239221" style="font-weight:bold;" target="_blank" title="Click to know more about BASE">BASE</a> at 0x804d7000 DateStamp 0x498c079b<br/><br/></blockquote></body></html>
17545.

Solve : STOP: 0x000000ED?

Answer» <html><body><p>Quote from: Allan on July <a href="https://interviewquestions.tuteehub.com/tag/18-242944" style="font-weight:bold;" target="_blank" title="Click to know more about 18">18</a>, 2010, 03:53:28 PM</p><blockquote>Okay. It's possible the hd has unrecoverable errors. Below are a couple of links with info from MS on that particular error code. Meanwhile, I know you don't want to hear this but you might want to run chkdsk /r from within the recovery console one more time --- though truth be told, it may not help at this point.<br/><br/><br/><a href="https://support.microsoft.com/kb/314474">http://support.microsoft.com/kb/314474</a><br/><br/><a href="https://support.microsoft.com/kb/101096">http://support.microsoft.com/kb/101096</a><br/><br/><br/></blockquote><br/>SeaTools for DOS seagate hdd's just told me that the hdd failed important diagnostic test and that I should run long test. So, I'll run the long test and see what happens then. Thanks for your help btw.You're welcome. Sorry the diagnosis isn't better.After running long test via SeaTools for DOS it recommended I use it's utility for repairing the HDD. I let that tool run and it said Long Test Passed after repair. I am in the process of running the long test again just to be sure. I'll update again after it finishes. Just wanted to let you guys know things are seeming to be moving along a little bit now.<br/><br/>Edit: it's already found <a href="https://interviewquestions.tuteehub.com/tag/19-241909" style="font-weight:bold;" target="_blank" title="Click to know more about 19">19</a> more errors. So maybe a new HDD is in need after all.Good news. Please do keep us posted.<br/><br/>BTW, if you CAN get back into <a href="https://interviewquestions.tuteehub.com/tag/windows-22662" style="font-weight:bold;" target="_blank" title="Click to know more about WINDOWS">WINDOWS</a>, be sure to backup all critical data immediately.Quote from: Allan on July 18, 2010, 04:46:28 PM<blockquote>Good news. Please do keep us posted.<br/><br/>BTW, if you CAN get back into Windows, be sure to backup all critical data immediately.<br/></blockquote><br/>I was in Windows for a bit earlier it just worked out of the blue, but there didn't seem to be any critical data at all. Just a few installed programs like AVG and Skype. If I can get back in I'll double check again and thanks for the heads up.Can't get into windows although I can via safe mode. No matter how many times I scan and repair it always finds more errors. It's a never <a href="https://interviewquestions.tuteehub.com/tag/ending-971255" style="font-weight:bold;" target="_blank" title="Click to know more about ENDING">ENDING</a> loop and this leads me to believe that the HDD is gone. If anyone can confirm this I'll pass it along and hopefully get a new <a href="https://interviewquestions.tuteehub.com/tag/drive-959713" style="font-weight:bold;" target="_blank" title="Click to know more about DRIVE">DRIVE</a> in this thing for her.<a href="http://www.dtidata.com/resourcecenter/2007/04/23/how-to-slave-hard-drive/"><strong>Slave Drive Tutorial...</strong></a><br/><br/>Use this method to salvage what data you can...Quote from: patio on July 18, 2010, 06:01:46 PM<blockquote><a href="http://www.dtidata.com/resourcecenter/2007/04/23/how-to-slave-hard-drive/"><strong>Slave Drive Tutorial...</strong></a><br/><br/>Use this method to salvage what data you can...<br/></blockquote><br/>I can't slave the hard drive as it's a laptop IDE drive and I have nothing I can hook that up to. I'm in a linux live CD right now trying to salvage some itunes music but mostly I'm just getting input/output errors. I guess if I can find a jumper as I know this HDD doesn't have one I could change it to slave and go back into the live cd, or would that even matter given the circumstances with the live cd? <br/><br/>Laptop to IDE connector....about 7 Bucks at any PC store</body></html>
17546.

Solve : Changing User Account?

Answer» <html><body><p>Will I have to reformat my computer as my <a href="https://interviewquestions.tuteehub.com/tag/son-1218896" style="font-weight:bold;" target="_blank" title="Click to know more about SON">SON</a> has limited me and my husband and made himself administrator so we cant change his account back to limited. Many thanksHow old is your son?<br/><a href="https://interviewquestions.tuteehub.com/tag/quote-1175222" style="font-weight:bold;" target="_blank" title="Click to know more about QUOTE">QUOTE</a> from: thatslovely on August 07, 2010, 02:54:19 AM</p><blockquote>Will I have to reformat my computer as my son has limited me and my husband and made himself administrator so we cant change his account back to limited. Many thanks<br/></blockquote>If there is a password on the admin account then you, you'll have to format or hack the password. Otherwise, just log in as admin and make the changes yourself.Try PC Logon it is a open source software (SW) that will let u change/reset passwords. Follow the link below:<br/><a href="http://www.mydigitallife.info/2008/07/06/pcloginnow-pc-login-now-free-download-to-reset-windows-admin-or-user-password/">http://www.mydigitallife.info/2008/07/06/pcloginnow-pc-login-now-free-download-to-reset-windows-admin-or-user-password/</a><br/><br/>This SW has saved me a few times.Does <a href="https://interviewquestions.tuteehub.com/tag/anybody-881524" style="font-weight:bold;" target="_blank" title="Click to know more about ANYBODY">ANYBODY</a> know what would happen if you used the WinXP repair CD and <a href="https://interviewquestions.tuteehub.com/tag/deleted-947557" style="font-weight:bold;" target="_blank" title="Click to know more about DELETED">DELETED</a> <a href="https://interviewquestions.tuteehub.com/tag/c-3540" style="font-weight:bold;" target="_blank" title="Click to know more about C">C</a>:\WINDOWS\system32\config\SAM (the password file)?SAM is not a password file - it is a registry hive. <strong>DO NOT DELETE REGISTRY HIVES.</strong></body></html>
17547.

Solve : DVD troubleshooting?

Answer» <html><body><p>Have inserted a <a href="https://interviewquestions.tuteehub.com/tag/dvd-433546" style="font-weight:bold;" target="_blank" title="Click to know more about DVD">DVD</a> of a Shakespeare play. It is Region 2 (I have checked that) but why doesn't the DVD play after the screen shows merely the page of the producers? I keep getting a warning saying "DVD is not <a href="https://interviewquestions.tuteehub.com/tag/responding-7267174" style="font-weight:bold;" target="_blank" title="Click to know more about RESPONDING">RESPONDING</a>" Why? Thanks for any <a href="https://interviewquestions.tuteehub.com/tag/help-239643" style="font-weight:bold;" target="_blank" title="Click to know more about HELP">HELP</a> you can give me.Sounds like a problem with the dvd itself. <a href="https://interviewquestions.tuteehub.com/tag/try-1428546" style="font-weight:bold;" target="_blank" title="Click to know more about TRY">TRY</a> it in a <a href="https://interviewquestions.tuteehub.com/tag/different-951434" style="font-weight:bold;" target="_blank" title="Click to know more about DIFFERENT">DIFFERENT</a> player.</p></body></html>
17548.

Solve : xp repair installation disc?

Answer» <html><body><p>I want to be able to do a simple <a href="https://interviewquestions.tuteehub.com/tag/repair-1185018" style="font-weight:bold;" target="_blank" title="Click to know more about REPAIR">REPAIR</a> installation if I have to, but my factory <a href="https://interviewquestions.tuteehub.com/tag/xp-747558" style="font-weight:bold;" target="_blank" title="Click to know more about XP">XP</a> discs don't have the option for repair installation...<br/><br/>Can you <a href="https://interviewquestions.tuteehub.com/tag/download-11414" style="font-weight:bold;" target="_blank" title="Click to know more about DOWNLOAD">DOWNLOAD</a> an ISO file anywhere with the XP repair installation feature ?<br/><br/><br/>I'll buy a used disc if I have to...You need a retail XP CD to do a repair install. You can buy or borrow one (it must be the exact same version as is already <a href="https://interviewquestions.tuteehub.com/tag/installed-499454" style="font-weight:bold;" target="_blank" title="Click to know more about INSTALLED">INSTALLED</a> on your system).I see<br/><br/>thx, appreciate itwait, one more question..<br/><br/>Exact version, as in Home or Professional ? Or exact version as in Service <a href="https://interviewquestions.tuteehub.com/tag/packs-1145418" style="font-weight:bold;" target="_blank" title="Click to know more about PACKS">PACKS</a>.. Or both ?Bothsuper, thxyou're welcome.</p></body></html>
17549.

Solve : Fujitsu computer?

Answer» <html><body><p>When I try to copy a file to the CD <a href="https://interviewquestions.tuteehub.com/tag/burner-905660" style="font-weight:bold;" target="_blank" title="Click to know more about BURNER">BURNER</a>, it <a href="https://interviewquestions.tuteehub.com/tag/reply-1185278" style="font-weight:bold;" target="_blank" title="Click to know more about REPLY">REPLY</a> that windows can't copy the file. If the Burner door is open, it acts normal but when you close the door it replys windows can't copy the file.And what type of CD/DVD are you putting in the drive when you close it ? ?<br/>It <a href="https://interviewquestions.tuteehub.com/tag/may-557248" style="font-weight:bold;" target="_blank" title="Click to know more about MAY">MAY</a> be <a href="https://interviewquestions.tuteehub.com/tag/best-390038" style="font-weight:bold;" target="_blank" title="Click to know more about BEST">BEST</a> to borrow/buy a different brand and try it...some burners are finicky about blank mediums...</p></body></html>
17550.

Solve : zip file?

Answer» <html><body><p>i cant open a zip file in microsoft outlook 2003 it gives application error<br/>iam using windows xp s/p 3<br/>but once i <a href="https://interviewquestions.tuteehub.com/tag/save-637275" style="font-weight:bold;" target="_blank" title="Click to know more about SAVE">SAVE</a> the zip file then only i can open it<br/>any way can i open zip file without saving firstThis isn't even worth decipheringQuote from: Badserver2 on July 20, <a href="https://interviewquestions.tuteehub.com/tag/2010-290294" style="font-weight:bold;" target="_blank" title="Click to know more about 2010">2010</a>, 05:16:00 PM</p><blockquote>This isn't even worth deciphering<br/></blockquote><br/>Kinda <a href="https://interviewquestions.tuteehub.com/tag/harsh-482800" style="font-weight:bold;" target="_blank" title="Click to know more about HARSH">HARSH</a>....don't you think ? ?<br/>This is a Help Forum.<br/><br/>--------------------------------------<br/><br/>nieldman <br/>Some zip files can be opened on the fly IE: directly from your email app and/or browser...however it's usually best to save them to a folder...mine is named Zips on <a href="https://interviewquestions.tuteehub.com/tag/purpose-238980" style="font-weight:bold;" target="_blank" title="Click to know more about PURPOSE">PURPOSE</a>...just so even if there are issues with it opening you still have a backup file to <a href="https://interviewquestions.tuteehub.com/tag/work-20377" style="font-weight:bold;" target="_blank" title="Click to know more about WORK">WORK</a> with...<br/>Let us know...</body></html>