

InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
1. |
Solve : windows 7 prof 64 bit.? |
Answer» Just found this... If i missed it i apologise but where is thei Ver. of Win7 from ? ? Never answered...there are documented cases of this happening from a certain Vendor which is why i asked...all the parts are bought from tigerdirect.com the Windows i Have happens to be a OEM From Where ? ?the software was bought off of tigerdirect.com (i know dumb to order off line) When you say OEM do you mean it shipped with a system ? ? You also need to determine if it was originally from Digital River...i didnt know what OEM was till today. a friend told me that its the same as windows but not supported by microsoft. dont fully understand yet. and how do i tell where it was originally from only thing i can find on the case is printed in canada on the box i just noticed it says 'OEM sysem builder Pack intended for System builders only" www.microsoft.com/oem/ dont know if that makes a diffrence or not Nite, I'm currently in the same situation as you right now. I came up with a possible PSU myself. I also turned to Windows Vista AND Windows 7 when things went downhill. I think that all stemmed from the flood of reports from so many MS consumers. I honestly thought my system was a waste also. I understand your frustration. I was also frustrated to such a point that i wanted to through the computer right out the second story window. What i did is put the computer on the side burner for awhile before the computer's issues consumed my life. I am not BACK trying to solve my PC's issues. Hopefully i get things sorted out myself. Best of luck to you in your pursuit to fix your machine. P.S.- After stepping back and reflection upon my less then perfect situation i realized that the same guys that are here helping you out now taught me so much about the steps that are necessary to diagnose an issues within a computer. Their trying to teach us both the basic lessons of computer hardware for FREE!thank you for your sharing your experience NATE. i did a Few final test and concluded that the software and HDD and power supply are all in working order. as BOOZU stated in a previous message it may be a Faulty motherboard so I sent the Motherboard back with the CPU and i will find out in 2 days if that was the issue... This is by far the best computer help forum ive been on. Thank you everyone for all your helpJust to add a bit of info, I use an OEM version. So do many people. With OEM versions you only get the version of Windows you choose, i.e. 32 or 64 bit, but with the normal version you get both 32 and 64 bit.thats good to know, as i didnt even know what OEM was. As for my PC i replaces the Motherboard and processor and the PC has been on for 22 hours with out restarting. it appears my issue was fixed. thank you all again.itis very niceI guess Windows 7 Professional will suit you perfectly. I will use this exact OS on my next PC Build (If I choose to build a PC). To make preformance smoother, add 2GB extra of RAM. |
|
2. |
Solve : multiple pages per sheet print blank in MS Word? |
Answer» All right......Sorry but problem SOLVED? Didn't QUITE make that clear. Sorry, Yes the problem is now RESOLVED.. All right. Congrats! |
|
3. |
Solve : Word & Excel Problems? |
Answer» I am afraid it came with the computer, there was no disc.How old is the computer? Mainfracture? Model? This WOULD not "bring up the virus again." I don't know how to do that?? Quote from: Rustys on February 05, 2012, 01:28:41 PM How old is the computer? Mainfracture Manufacturer? Model?I gave it to you prevoiusly. Tochiba Satellite L655-S5153 Had it for lest than a year.http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/modelContent.jsp?ct=SB&os=&category=&moid=2861813&rpn=PSK2CU&modelFilter=L655-S5153&selCategory=2756709&selFamily=1073768663 Select user guide Go to page #61http://www.fixya.com/support/t9833529-delete_everything Keep in mind this would erase the HARD drive and reinstall the OS and other software that was on the computer when it was new. So, any IMPORTANT files not backed up before doing this would be lost. However, I believe the posts in this discussion up to this point do not clearly indicate taking this action is necessary. You still have not posted an up-close screen print to clearly show the problem you're having, or thing you have, with Word and Excel. I tried sending a printscreen but it won't take it. it is .jpg and under 200K |
|
4. |
Solve : find files on 1 drive that are not on another? |
Answer» This problem can be solved. Either with batch files or other tools. Gee, are we giving up on this? This seems like it ought to be simple. It's simply like the opposite of a duplicate finder application. If it was all that simple you would have coded it yourself in the more than 1 month since you first asked. You are asking for a script to be written, and this means asking someone to do work for you for free, very often for no thanks or a lot of abuse, or several pages of "it doesn't work" type posts. Having said that, this simple script will search all folders and sub folders on a drive for files, and for each file, check if a file of that name exists on another drive, and if it does not, write the whole path to a report file. Code: [Select]echo off setlocal enabledelayedexpansion set Drive1=D set Drive2=F set FileMask=*.avi set ShowNamesOnScreen=yes set reportfile=D:\Report.txt if exist "%reportfile%" del "%reportfile%" Echo Looking for files which are on drive %Drive1% but not on drive %Drive2% for /f "delims=" %%A in ('dir /b /s /a-d /tc %Drive1%:\%FileMask%') do ( set fname=%%~nxA for /f "delims=" %%B in ('dir /b /s "%drive2%:\!fname!" 2^>^&1 ^>nul') do ( if "%%B" == "File Not Found" ( ECHO %%~dpnxA >> "%reportfile%" if "%ShowNamesOnScreen%"=="yes" echo %%~dpnxA ) ) ) Echo Finished searching drive %drive1% Pause This script will read the report file and either copy or move (edit set filemode=) the files to a destination folder. In both scripts, you will need to do some editing. Code: [Select]echo off setlocal enabledelayedexpansion set filemode=Copy set DestFolder=F:\FileFolder set reportfile=D:\Report.txt for /f "delims=" %%A in ('type "%reportfile%"') do ( %filemode% "%%~dpnxA" "%Destfolder%" ) Pause Salmon Trout, that is great! But is the OP going to give you anything in return for your work?I probably misunderstood the question, but could xcopy be MADE to do this? xcopy has the ability to not copy files, and instead list files that it would copy. it doesn't provide a way to say that it should only copy files that do not exist in the new location, but you can say the opposite, and tell it to copy only files that ALREADY exist in the destination. Then, you can use the /EXCLUDE switch to exclude those files, and just list the files that would be copied. Code: [Select]xcopy /s /l /u E:\ F:\ > existingfiles.txt xcopy /s /l E:\ F:\ /EXCLUDE:existingfiles.txt >> unique.txt Assuming I thought it out properly, the result should be that the files listed the second time will be all the files, excluding the files that exist in both places. Note that this will only find files on the source drive that do not exist on the target drive, and not files that exist on the target but not on the source. You could do both and MERGE the results, though: Code: [Select]xcopy /s /l /u E:\ F:\ > existingfiles.txt xcopy /s /l E:\ F:\ /EXCLUDE:existingfiles.txt > unique.txt xcopy /s /l /u F:\ E:\ > existingfiles2.txt xcopy /s /l /EXCLUDE:existingfiles2.txt > unique2.txt copy unique.txt+unique2.txt results.txt Don't have access to Windows at the moment so not able to properly test my assumptions. That looks good, BC. There is always another way to kin a cat. Yea, I can't try it either. I am on Ubuntu on a USB flash. Earlier I mentioned getting a Terra byte eternal drive. Thee is an option in MS SyncToy to contribute from a USB to a large hard drive, Or any two drives,. You would just keep contributing from each USB drive until you had DONE them all. But there is a catch. You have to move the files out of the directories first. By default, to identical files in different directories are not the same file. I understand the OP wants to change that rule and find duplicates even in other directories. I think that rather than copying or moving files, one would make shortcuts to all files on all USB sticks and then just parse the shortcuts looking for duplicates and build a database(s). Visual Basic could do it. Maybe with a SOL server. I thought he said he has 50,000 MP3 files. Still, the choice to use batch was that of the OP. He must enjoy the work. Or he has too much spare time on his hands. Quote from: Geek-9pm on April 05, 2012, 02:35:01 PM I understand the OP wants to change that rule and find duplicates even in other directories.Oh... well in that case the XCOPY method will not work. |
|
5. |
Solve : Hardware monitor showing impossable readings.? |
Answer» Quote from: BC_Programmer on May 23, 2012, 03:04:14 AM according to speedfan my +12V RAIL is only 1.09V ,my -12V rail is -16V, and my -5V is -8V. Each of these is well outside the tolerance of a PWR_GOOD signal, and if they were accurate I doubt it would have RUN for the last four years with these readings.It's all in the software as BC_P states. I no longer use or trust SpeedFan anymore, e.g. +12V = 2.82-3.01V It may be accurate for an older computer or motherboard, but it's rarely UPDATED more than once a year. This computer is about 2-3 years old. www.hwinfo.com is now the best and is continuously being updated. (Speedfan) Quote from: Computer_Commando on May 30, 2012, 06:54:20 AM It may be accurate for an older computer or motherboard, Works fine on my brand new Shuttle SZ68R5. All voltages seem accurate, fan control is working OK and temperatures match readings of other apps. Quote but it's rarely updated more than once a year. 4.47 is still in BETA (Beta 2 May 5, 2012) regular releases 4.46 March 27, 2012 4.45 November 3, 2011 4.44 July 13, 2011 4.43 March 17, 2011 4.42 November 3, 2010 4.41 July 24, 2010 4.40 November 28, 2009 4.39 August 09, 2009 4.38 April 22, 2009 4.37 November 21, 2008 the pattern is consistent further back |
|
6. |
Solve : Restriction Warning? |
Answer» Interesting. Interesting. Hi Broni. This happened at the end of Aug. I downloaded a couple of YouTube files, transferred them to a Flash Drive and shut down the drive and the PC with no apparent problems. First thing the next morning (before booting up) I disconnected an auxillary fan, fooled around with the PSU wiring after receiving the aforementioned messages and have been in this predicament ever since. And I've checked all of my updates( which run automatically) but do not see that one. I'll attempt to find and download it. overthehill PS Is there any chance whatsoever that this could be a wiring concern?I doubt, it's a wiring problem, but I MAY be wrong. Do you have any restore point from before the end of August? Your computer had some infection, which was removed by Combofix in malware forum, so if you use restore point, you'll have to rescan.No unfortunately I'm unable to restore any earlier than Sept.8. When you had asked this question previously I had attempted to do just that. It would let me select an earlier date , the PC would reboot and then tell me that the system restore was unsuccessful. After trying this a number of times unsuccessfully I decided to turn off system restore. I then turned it back on, but now it will not let me go back further that Sept. 8. overthehill PS The update that you referred to is not necessary (as I'm told) because my service pack is newer than the file.Couple more tries... 1. Start- Run- type in - gpedit.msc Click - Computer configuration - Administrative Templates - System - Removable Storage Access See, if there are any restrictions there. 2. Try to create new admin account and see, if same issue is there.Broni. I followed your instructions but I don't see "Removable Storage Access" under System. overthehillTry second OPTION. I'll be out for couple of hours, so I'll check on you later. Quote from: Broni on September 11, 2010, 06:29:25 PM 2. Try to create new admin account and see, if same issue is there.Hi again Broni. I don't know quite where to start but the problem that we've been having is not the wiring. I created a new account like you suggested and as far as the "Storage Drives", things have improved immensely. You've definitely got me on the right track. The drives under the new account no longer have the grey circle with the red strike through. Don't know exactly how to describe what the icons look like (but quite common I'm sure) but don't think that they're as they looked previously. But no matter. As long as the drives are functional. So; 1) tried a CD and was able to view the pictures. 2) plugged in my external drive and appeared to work OK. 3) this is where I have a problem. It doesn't recognize any files on my Flash Drive.? It doesn't open as before which would give me many options when plugged in. Could this be Auto Run or such? I have a second Flash Drive but I'm a little afraid to plug it in. This is the Flash Drive that I copied the downloaded files to which I'm wondering whether or not possibly created the problem in the first place??. What would you suggest about this? How does one deal with an infected storage drive anyway? I didn't stay logged on as the new user because everything that I'm used to has been changed and many programs etc.,etc. will have to be reconfigured and some sites copied to my desktop( my wife would never find them) . This is the first time that I have logged on as a new user so I was quite SURPRISED at what greeted me. I couldn't believe my desktop ! And, I'm sure that this could all be worked out but I'm still concerned about the Flash Drives. I have no idea at this time whether or not I'll be able to get the drives to function properly either, in regards to copying etc. Time will tell. Any suggestions that you have on the "flash drives "(or other matters that I should be dealing with concerning this whole fiasco)would be very much appreciated. overthehill OK, some good news then It looks like your previous profile got corrupted somewhere. Your best option, at this moment, would be to transfer all data from old account to new account and delete old profile. Quote It doesn't open as before which would give me many options when plugged in. Could this be Auto Run or such?Yes. There may be several sources of the issue, including your AV program. In today's dangerous world, having autoruns disabled is a safer solution In your case, you have this registry setting: Quote O6 - HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer: NoDriveAutoRun = 6710879967108799 value means, autorun is disabled on all drives. If you insist, we can change this. Now, to safely scan any USB device, install his on your computer.... Download, and run Flash Disinfector, and save it to your desktop. *Please disable any AV / ScriptBlockers as they might detect Flash Disinfector to be malicious and block it. Hence, the failure in executing. You can enable them back after the cleaning process*
I can't express in words how much I appreciate all you've done for me . You've been most helpful and have stuck with me. The bad news for you is you may have not heard the last of me. Thank You. overthehillYou're very welcome I hope, you won't have any more problems, but if anything...I'll be around |
|
7. |
Solve : C ++ help? |
Answer» OK thank I can make PC GAMES with C ++ Quote from: nymph4 on September 09, 2010, 10:55:31 AM OK thank I can make PC Games with C ++ That should be INTERESTING, GIVEN your ability to use HTML and CSS. |
|
8. |
Solve : Firefox/Chrome Issues in Windows 8? |
Answer» Yes. You might reduce the problem my fusing the DNS cache. Should this be done in my profile or in any profile? Quote from: patio on May 14, 2014, 05:12:05 PM Go back to a command prompt and type in the following::Should this be done in my profile or any profile?It can be done in any profile... but you need to be connected at the time... In your REPORT from when you tried it says "media DISCONNECTED" which means you weren't connected.I just tried again, this time in the other USER's profile under admin command prompt and it still tells me I am disconnected. I don't know why, I am connected to the internet.How are you connected ? ?...wired or wireless ? ? Do you have more than 1 Network connection set up on this PC ? ? Quote from: patio on May 19, 2014, 08:20:02 AM How are you connected ? ?...wired or wireless ? ?I am connected by Ethernet (Limited only) and wireless (full access).But in NETWORKS there is only 1 setup for the PC...correct ? ?There is Wi-Fi and Ethernet. I am not sure what you are asking? Can you specify?Open Networks and Sharing from Control Panel.Of NOTE, when I use yahoo or google as my search box, I get the error. When I use bing, it is fine. However, when I typed gmail into the bing search box, I got results but when I clicked on gmail, I got the error. Really weird. Quote from: patio on May 19, 2014, 09:35:23 AM Open Networks and Sharing from Control Panel. Is this what you wanted? [recovering disk space, attachment deleted by admin]Any suggestions?Unbelievable. So I deleted my profile, and created a new one. It worked perfect for two weeks, suddenly today though I got the same problem, "an untrusted connection" and it can't open. *censored*? |
|
9. |
Solve : Can I install windows xp? |
Answer» You'll NEED to move that DLoad to a working machine to properly BURN a bootable install CD... I've already done that. Now i'm trying to get it to download to my other computer and work. Nontheless, I recieved the actual ubuntu cd in the mail today. I downloaded the alternate just in CASE that's what I needed and got the same thing about kernel panic. .-----?EITHER the RAM and/or the hard drive on that system has issues... |
|
10. |
Solve : Need to clone a hard disk? |
Answer» For reference: You can not clone to a internal drive. That is false...i've done it a thousand TIMES with a 2nd or 3rd HDD connected. It can also be done in his situation INSIDE a working Desktop with both the laptop HDD and the destination HDD hooked up as slaves.... All he has to do is remember to set the destination HDD as Active. |
|
11. |
Solve : USB 2 system behaves as if it's USB 1.1? |
Answer» Due to a suggestion by BC_Programmer I appear to have discovered the cause of the problem, and the simple, if inconvenient, solution follows directly from this. (I didn't have do anything remotely difficult or that was likely to be irreversible, thankfully) (1) Short for Peripheral Component Interconnect, a local bus standard developed by Intel Corporation. Most modern PCs include a PCI bus in addition to a more general ISA expansion bus. PCI is also used on some versions of the Macintosh computer. PCI is a 64-bit bus, though it is usually implemented as a 32-bit bus. It can run at clock speeds of 33 or 66 MHz. At 32 bits and 33 MHz, it yields a THROUGHPUT rate of 133 MBps. Although it was developed by Intel, PCI is not tied to any particular family of microprocessors. ..http://www.webopedia.com/TERM/P/PCI.html From the above, it is a set of standards and does not mean the device is actually plugged into a slot. Here is my theory on why the keyboard/mouse may be affecting it. "USB Legacy" settings. These settings, when enabled, will let you use the (USB) keyboard during boot-up to manipulate the BIOS. The setting essentially serves as an "adapter" that will make the USB keyboard cause the same interrupts as a standard keyboard, whereas normally the interrupts triggered would be the USB device interrupts that won't be handled by anything. (essentially the BIOS sets up a handler for those interrupts and translates keyboard-class device input to keyboard interrupts). Now the problem (again, just a theory) could be that in doing so it locks the root hub to operate only in USB 1.1 mode. To better explain this we really have three "modes" of USB. There is Low-speed (1.5MBit/s, Full Speed(12Mbit/s), and high-speed (480 Mbit/s) 1.1 had Low-speed and Full Speed, and High-speed was added by 2.0. Thus a keyboard or mouse, which will undoubtedly use the 1.5MBit/s Low speed bus, will operate the same on any USB hub. What I'm thinking is that if the USB legacy option is enabled it may, at least for that machine, somehow prevent the USB 2.0 driver from initializing properly, since the BUS is already being used for the keyboard; so the 480 Mbit transfer speed is unavailable. That's just a spit-balled theory though so I don't know how true it is. I can say for certain that keyboards/mice almost ALWAYS use the 1.5Mbit low speed option, however. Quote Also, I don't know if it is coincidental that the PCI connected USB Controllers in Dev Mngr have gone away.They haven't gone away, they have been properly identified. the "PCI Class USB 2.0 Enhanced Host Controller" is basically Window's Device identification being able to determine that it is attached via PCI and appears to be a USB 2.0 host controller, but for whatever reason not being able to find out much else about it. In the "fixed" screenshot, that same device is now properly identified as a Intel USB 2.0 Enhanced host controller. My suggestion at this point would be to see if there is a "Legacy USB" option, and see if disabling it will allow you to use the system with the USB keyboard/mouse without forcing everything to work at Full Speed (USB 1.1). ->BC_Programmer Your hypothesis sounds very plausible. There is one part of it that does not fit though. When I was looking in the BIOS set up for an option for 'set USB mode to 2.0', which apparently is present in some BIOS set-ups, I did see a 'USB Legacy' option. This was one of the first things I tried. To remind people of a section in my long and unmemorable first post in this thread: Quote from: Dumb_Question on February 27, 2014, 06:04:24 PM ...I have looked in BIOS setup, and I did not find anything about USB except legacy, set to auto/enable/disable. I tried all of these without any change..... Originally, before I tried all the settings, it was set to 'auto'. It is my opinion that the system should permit simultaneous USB 1.1 and 2.0 operation, but maybe this just not possible in Hardware. I have a wireless keyboard and a wireless mouse which connect over an RF radio link (2.4GHz ?) to the transceiver which in turn is connected to the PC by a wired USB link (i.e. both keyboard and mouse share the same transceiver). I can't remember if I installed drivers for this manually from a CD, or whether I simply connected it and it worked. That sub-system is a PCLine PCL-K350: I couldn't find any spec for it on the internet except that it was 'USB connected' - I was unable to determine its compatibility wrt 1.1 or 2.0. Also checked in manual (WRITTEN in four languages). If anyone reading this can determine that spec, it might help. Dumb_Question 2.March.2014 Compaq Presario S5160UK DT261A under XP/SP3 Motherboard - MSI MS-6577 v2.1Actually, I just read back on something I Missed as well: Quote I measured the transfer rate from my HD to an external one for 490498944 bytes; it took 8 mins 16 secs, a transfer rate of ~7.9Mb/s, good for USB 1.1, pretty poor for USB 2.0 USB 1.1, Full Speed, tops out at 12 megabits per second. a transfer rate of 7.9 Megabytes per second is around 80 Megabits per second, which is far in excess of anything USB 1.1 is capable of, which means it is in fact operating via USB 2.0. I don't know why you would be getting the message. However I would suspect in this case that one of the two devices (keyboard/mouse) may have a error in their implementation that is causing devices to be recognized incorrectly, but still be used properly. I was looking through the USB spec and it looks like identification commands are sent to all devices via a broadcast, and basically it says "Device 4, identify yourself!" when you plug it in. What could be happening is that the device you had (keyboard/mouse) was responding to everything you plugged in and giving the USB driver false information to go on, that made it think the port was 1.1. That's all I can really think of, But it makes sense, assuming I Interpreted the specifications document correctly. However so far it is clear that the devices you were using were in fact using the USB 2.0 High Speed interface since otherwise they would have topped out at less than around 1.5 megabytes a second.-> BC_Programmer I meant 1b = 1 bit, 1B = 1Byte so by 7.9Mb/s I meant 7.9 x 1E6 bits per second (~(490498944 x 8 )/{(8 x 60 + 16) x 1E6)} which is less than 12 megabits per second. I realise that this is only approximate as does not include error bits, stop&start bits, etc, the time is approximate to a couple of seconds. I apologise for not having made myself clear on this point. Dumb_Question 2.March.2014 Compaq Presario S5160UK DT261A under XP/SP3 Motherboard - MSI MS-6577 v2.1 So, a little more experimentation: starting with the configuration shown in ScrSh_HWM_USB_S5160UK_PS2_010314.JPG, (but without the Mass Storage Device), with only my PS/2 mouse and kb plugged in: I connected the USB mouse/kb receiever to a USB port. The bubbles APPEARED which said 'New Hardware Found' and 'Your new hardware is installed and ready to use' etc. The Device Manager now showed an additional composite device. The wireless mouse/kb functioned properly it seemed. I removed the PS/2 mouse and kb, there was no obvious change to DeviceManager. I now connected a WD MyPassport external HD to a USB port. There was no 'This device can perform faster...' message, the Device Manager changed to add 'Mass Storage Device' under the (only) USB Controllers category. I inspected the power tabs on the Root Hubs. One said "one port 500 mA required, 5 ports available", another two said "Two ports available", the third said "one port 100mA required, 1 port available" [my digests of the content of the power tabs]. From what I had seen previously, the Root Hubs with 2 ports each belong to USB 1.1, and this is consistent with the USB wireless kb/mouse being a USB 1.1 sub-system. Now for the acid test: reboot without PS/2 mouse/kb, only the USB sub-system. I ejected the MyPassport and restarted....the PC at this point decided it would fail to restart (another issue). I left it switched off to try again later. Later, I turned on the PC. After waiting for it to start up properly, I opened Device Manager, and it looked like I described it earlier, one USB 2.0 Enhanced Host Controller 24CD entry, three Universal Host Controller entries (24C2, 24C4, 24C7), the composite device entry, 3 Root Hub entries each capable of supporting 2 devices, and finally another Root Hub entry, capable of supporting 6 devices. The second category for USB Controllers (where the PCI related entries had been) was absent. As a last test I connected the external HD to a USB port, and did not get the message 'This device can perform faster...'. I have yet to measure the transfer speed, or restart n times, but it seems the problem has gone away, somehow the PC was reminded of what it should do by connecting the PS/2mouse and kb. Dumb_Question 3.March.2014 Compaq Presario S5160UK DT261A under XP/SP3 Motherboard - MSI MS-6577 v2.1Thank you for the report. This information can be helpful later. That fact is that you did an extensive effort to resolve an issue and found that the answers did not follow a consistent pattern. I still think the problem goes away when you either: A) Use and older version of Windows. OR B ) Install the PCI USB card, which has silicon from another maker. Here is yet another resource: http://www.usbman.com/WinME%20USB%20Guide.htm Windows XP -USB Guide Quote A USB device that is connected to a USB 2.0 hub is not detected in Windows XP Service Pack 2, Windows Server 2003 Service Pack 1, or Windows Server 2003 x64 versions |
|
12. |
Solve : A program for maximising internet priority to only one selected application? |
Answer» I don´t know, I can only SEE this. :/ |
|
13. |
Solve : Firefox Freeze, Force Minimize, and Restore? |
Answer» To me it doesn't actually sound like a memory-related issue, 400MB of RAM usage isn't that much for a browser these days, certainly not enough to cause it to hang or unexpectedly close down. |
|
14. |
Solve : Live Messenger Issue? |
Answer» This is getting on my nerves! I am having issues adding contacts to Live Messenger, but only on one machine. I can go to ANOTHER machine with WLM installed and add just fine, but then they do not show up on the problem system. |
|
15. |
Solve : Macromedia Dreamweaver? |
Answer» How to use that software? i need to LEARN about it... ITZ confusing... Can u please teach me how?!....plzzzzz...Are there not any tutorials on Macromedia's site? |
|
16. |
Solve : Importing text files? |
Answer» I fixed my Outlook 98 problem, now I am trying to import TEXT files from Notepad to outlook 98 contacts. This text is contacts that I moved there when I had outlook 97. I go into "Import from another program","tab separated (windows),Browse for the file, click on Contacts (location to import to). I get a box that has "Import contacts.txt into contact folder, when I click on that option it gives me a warning box that says The requested fields listed below were not detected in the file you are importing. Please add the fields to the first ROW of your file and import again. There is nothing listed below? What am I doing wrong? Can I sync my contacts in my Palm back to Outlook 98 without loosing them on my Palm. I am a new Palm owner. I started my New Year with the resolution to get organized, and I keep running into brick walls. Maybe I'll go on a diet instead, it may be easier!You never POSTED a reply to my last post in your other thread on the problem of installing Outlook 98. And, now I know you did get it INSTALLED. How about posting a reply there explaining how you resolved that? We like feedback in here. Did my comments in that thread help resolve the problem or did you discover some other way? |
|
17. |
Solve : outlook 98? |
Answer» I have windows XP with the latest version of IE. I have office 97 installed, and currently purchased outlook 98 to be compatable with my Palm. When I try to install outlook 98 I get "could not create Microsoft outlook internet settings profile". Can anyone help? Thank youDid you have Outlook 97 installed with Office 97? Did you use Outlook 97 for EMAIL? Did you go ahead and install Outlook 98? Yes it was intalled with office 97. My email is with Outlook Express. I did install 98. Quote Did you use Outlook 97 for email?Again, did you have an Internet connection setup in Outlook 97? After installing Outlook 98, did you try to set up an Internet connection, i.e., email account, in it? Oh, wait. You said you use OE for email. So, you really don't need to set up an email account in Outlook 98, right? So, what is your issue now with Outlook 98?It INSTALLS, I did not set it up as my email since I use Outlook Express. After installation when I open the program, it shows a startup screen in Outlook, but a window pops up that says "could not create microsoft outlook internet settings profile" I can't do anything on it. The Outlook 98 software has IE 4.1 version with it, if this has anything to do with the problemDid IE 4.1 get installed? It should not have. The installation procedure should have recognized that a later version of IE is installed and, therefore, not have installed IE 4.1. I think you should Create a new e-mail profile in Outlook 98; it may resolve the issue. This suggestion is consistent with what I see here: How to troubleshoot error messages that you receive when try to send and receive e-mail in Outlook and in Outlook ExpressIt won't allow me to do anything in outlook 98. Can't use the tool menu. I tried going into control panel in mail to change profiles, but that didn't work.I'm suggesting this. Uninstall Outlook 98 and Office 97. Download CCleaner and run it's Windows scan, Applications scan, and Issues scan. Remove the stuff it finds. When you start the Issues scan, it will prompt you to backup the Registry. Do so. Then, install Outlook 98 and see whether works right. If so, then install Office 97, excluding Outlook 97. If you really do not want to uninstall all of Office 97 because you'll lose custom settings in Word, etc., then at least run the Office 97 Setup and select Outlook 97 to be removed. Soybean, I did as you suggested. I had ccleaner on my computer already. I removed 97 and 98 and ran the cleaner, then reinstalled 98 and I STILL get the same outcome.What did you glean from the link I provided in a previous post? Did you read the part about firewall? Did you read the part about anti-virus software? Was your anti-virus software running when you installed Outlook 98? Did your Internet Explorer get changed when you installed Outlook 98? What version of IE do you have? I know you said the latest. That means version 7, right? Are you using that computer on the Internet now and using IE on the Internet? Is Outlook Express working fine?I loaded outlook under corporate option and that did it. |
|
18. |
Solve : WINDOWS INSTALLER STARTS BY ITSELF ! HELP STOP IT!? |
Answer» There is an Installation always popping up on my pc , and I hit cancel and it pops up again, after a while, I NEED to delete this how do I do it , Thank you!!!nleite...... What is it thats trying to INSTALL itself? |
|
19. |
Solve : excel 2000 slow to open file? |
Answer» I have an excel spreadsheet that is 1.6mb and when i try to open it, it takes over 3 minutes to open. I don't know what the problem with this file is as i am able to open files in excel that are bigger then this one. Has anyone ever seen this and does anyone know of a fix. I am opening it from local drive and am running win2k with 512mb 80gb p4 3.0. Excel 2000 sp-3. |
|
20. |
Solve : Ping Spiking + Timing out? |
Answer» Ok IVE been having trouble with my internet with games and websites. |
|
21. |
Solve : UTorrent (Port Fowarding).? |
Answer» Hello everyone, |
|
22. |
Solve : AVI Videos Not Playing...? |
Answer» I have some videos that are in AVI format, and when I try to play them in Winamp or in Windows Media Player, I get audio playback, but no video. Winamp says that it is using an AVI splitter filter, and i THOUGHT that might be why, but that was a DEAD end. Any suggestions? midnightfire....... try using VLC player and see if that player will play it ok ..... it worked.....thanks a bunch. oh btw, do you know of any program (that isn't laden with viruses) that will make it so AVI videos can be played on the iPod video? What site/s are you getting these virus riddled programs from ? dl65 |
|
23. |
Solve : Moving Outlook data to new computer? |
Answer» I just purchased a Lenovo T60 laptop with Windows XP and have loaded it with Office XP PRO (Outlook 2002). I've copied my Outlook folder (containing three files extend.dat, mailbox.pst and outlook.pst) from my old computer to my new computer, and placed the Outlook folder in My Documents (a tip I read somewhere for easier BACKUP of Outlook). |
|
24. |
Solve : Microsoft Word Backgrounds? |
Answer» Ive been trying to print a document in word with the background fill effect - i can do this but it DOESNT appear as the print preview suggests. I intend to have a single fill effect ranging ACROSS a single page - but INSTEAD i get a single page tiled with the fill effect over and over RUINING its effect. This is for my Job resame so is very IMPORTANT. Thanks for all comments. |
|
25. |
Solve : Plagued by frankenstein's calender (Outlook)? |
Answer» I inadvertantly happened to be pretending to be FLASH and help a COLLEAGUE change her font in outlook and somehow her month by month calender in outlook has now BECOME enormous. I attach a picture. |
|
26. |
Solve : Problem with writing files on CD? |
Answer» I had wrote an video file on CD but when i tried to add other video file the program ASK me to insert empty disc .The same happen when i tried to add AUDIO file on Audio Disc.What to do to write more then one file on disc ( to add files).I have USING Nero 7Don't finalise the disk if you want to add more to it. |
|
27. |
Solve : A free equivalent to ClearType for Windows 2000? |
Answer» As an experiment I installed Windows 2000 Pro on my old hard drive, and I really like it. I'm thinking of installing it on my main drive, but the only problem i have with it is the lack of ClearType. The BUILT in font-smoothing doesn't do me any GOOD. Is there a free equivalent to ClearType for Windows 2k? Thanks! |
|
28. |
Solve : Data Recovery Company Recommendations? |
Answer» Can anyone recommend a data Recovery Company? Like anyone who's had a hard drive crash, I don't want to trust the recovery of my image files to an inexperienced outfit. I have/had a LaCie d2 Big Disk 500GB with about 400GB of files on it. Evidently, the problem is most likely electronic, as there is a small hole BURNED on the control card. Some of the files are backed up, but not all, and they are all important to me. |
|
29. |
Solve : windows media player - get rid of it? |
Answer» I run W-XP and had WM 9 INSTALLED - lovely. I then installed 10 and was Ok. I then tried to install 11 and it refused to validate (I am legal by the way)! I now cannot get rid of it to re-install 9. I have tried: |
|
30. |
Solve : Winamp Problem??? |
Answer» Hey guys just got a PROBLEM with WINAMP...everytime I click on it this MESSAGE appears :-?....So far it's been working great until TODAY and also recently I've download a plug-ins for it...could that be a problem? |
|
31. |
Solve : Outlook 2002 Email Can't Attach Files? |
Answer» I routinely attach files to outgoing email messages sent from Outlook 2002 (Outlook in Office XP). Sometime around last spring I found I was not able to attach certain files but was able to attach others of the same type and from the same directory. |
|
32. |
Solve : Norton e-mail scanning gone haywire? |
Answer» For a while now, ever since I got the 2006 version of Norton Anti virus, the e-mail scanning hasn't worked. Norton tells me every time I start up that there is an error regarding the e-mail scanning, and I was wondering if anyone would know some possible solutions. Its really annoying.So, the error MESSAGE appears when you start your computer, right? Once you get beyond that point, does Norton scan you incoming mail and, if set for this, your outgoing mail? Can you run a full HARD drive scan with Norton? I also posted it in your thread about his machine...i've been everywhere and back today.Lol. Public service announcement, brought to you by patio the guru. Quote So, the error message appears when you start your computer, right? Once you get beyond that point, does Norton scan you incoming mail and, if set for this, your outgoing mail? Can you run a full hard drive scan with Norton?I don't know if it scans my mail or not, but I assume that it isn't since it constantly tells me there is an error when I open it. After I start up my computer, the error message doesn't pop up again but it always tells me when I open the home page of the program. And yes I can do a full system scan with it. I have had it for maybe 3 months now, I think, and I don't think the mail scanning has ever worked correctly. I have reinstalling it and searched for info on their website but nada. Sometimes I wonder if it actually is working right but thinks there is an error for some reason. Quote Can't solve your issue but as a public service i'll post this for future reference as it may come in handy someday....This is the "family computer" and my parents want Norton on it so I'm not gonna worry about getting rid of it. I'll have my own laptop by next year without Norton If they want Norton on it then that is their decision. Family wins in any situation. So let's try and fix it as is. What are they using for e-mail and when is the last time Norton did it's updates ? ? Also does that package from Norton's include a firewall ? ? And is Windows firewall running as well ? ?We use yahoo for e-mail and it is updated regularly. This package does include a firewall so I turned off windows firewall. Sorry it took a while to respond, now this thread is kinda old. But the problem remains! |
|
33. |
Solve : SigmaTel VOIP Teamspeak Trouble? |
Answer» Hey guys, I have a SigmaTel High Definition Audio soundcard and I believe it may be incompatible with the VOIP for Battlefield 2142. Everytime I start up a game or enter the audio options my computer crashes and reboots itself. I recently encountered the same error with Teamspeak. Can anyone please confirm if this is true and if so, what do I need to do to fix the problem and get this game up and running. Thanks.Please list as much information about the hardware installed on your computer and the operating system as well, no detail is too small. |
|
34. |
Solve : Outlook contact issue? |
Answer» oi, here is the thing. i maintain contacts for my Motorola Q USING Outlook 2003, i want (and for most it WORKS) this format displayed: |
|
35. |
Solve : Nero slide show problem? |
Answer» I love using Nero to make slide shows to music and used to be able to preview the slide show as I was going ALONG to see how it looked. But now it wont PLAY back the pictures or music at all and I have to wait until I've burnt the whole thing before I can even see it. How do I fix it? It was working fine before. :-?elliemayne..... LOL ...would this have anything to do with your other issues ? |
|
36. |
Solve : windows 'host' file and 'activation' wizard? |
Answer» 2 simple questions: |
|
37. |
Solve : MP4 file convertor? |
Answer» Hi. |
|
38. |
Solve : MS Word and page numbering when printing? |
Answer» I have some reports that have footers with page numbering. The page numbers are correct when viewing the document on the screen, but when I print it out, the page numbers are all wrong. Anybody know what might be wrong? |
|
39. |
Solve : word 2002 - making me crazy? |
Answer» can anyone help me tame word 2002? lots of crazy things keep happening: |
|
40. |
Solve : Quicktime Video? |
Answer» I saved a video clip saved on to the computer that plays using Quicktime. The problem is the video is so dark, it's hard to see whats going on. Is there any WAY of BRIGHTENING the video footage? If you have Windows Xp, Windows Movie maker is a great program for stuff like that. I have moivie maker, but it's not letting me OPEN the clips as they aren't .avi, .mpg. M1V, etc. Hmmm. |
|
41. |
Solve : Adobe Macromedia Flash Player? |
Answer» I used this site a few days ago and you guys were very helpful, so who better to turn to in a time of crisis (well, not really crisis, but...) |
|
42. |
Solve : Microsoft Outlook Email disapperaing? |
Answer» HI there, I am having a problem with Outlook 2003 Standard version. When I open am email and read, then exit and go back into outlook the emails that are read have DISAPPEARED. THey are not in Junk, DELETED, or SPAM. PLEASE help me with this... thanks, Oroe1 First off, try a repair INSTALLATION of Outlook. Do you have any filters running? |
|
43. |
Solve : Different Sorting Order of pictures? |
Answer» I come across this while trying to PLAY pictures in a slide show or burn pictures to a DVD. I renamed the picture in the order I would like to see them to 1, 2, 3,...200 etc. They will only be PLAYED in a slide show in the correct order with Windows Picture and FAX Viewer. Other softwares like Irfan view or Nero will show them in a DIFFERENT order, like 1, 10, 100, 2, or some wierd order. Any insight or solution to this problem from anyone?Alphabetically, 10, comes before 2 - because 1 is before 2 in the ASCII character set. The latest versions of Windows FUDGE this a little by trying to figure out what you mean when filenames contain numbers. If you want it to work everywhere, pad your numbers with zeroes like this: |
|
44. |
Solve : Outlook 2002 - Cannot stop "Find Feature"? |
Answer» Hey people... |
|
45. |
Solve : Best way to back up 3 gigs of music? |
Answer» I have exactly 2.94GB worth of music in my My Music folder, and I need back it all up because I'm doing a format/reinstall of Windows XP (it's getting slow and I'm almost out of hard drive space), and I'm going to have to back them up to CD-R... Is there a more convienient way of backing them up besides drag and drop? I.E. something automatic, or at least semi-automatic? Thanks! I have Windows Media Player 11 btw. So, you may need about 5 CDs to backup all your music files, right? I wouldn't think this would take all day.I TEND to exaggerate (just a little) Thanks for all the suggestions and I think i'll start now. -JohnYou were right; exactly 5 CDs. Boy that wasn't as painful as I thought it was going to be. I'm burning the last one now. Thanks! -John EDIT: I've gotten this weird error twice (here's what nero says): Code: [Select]4:48:15 PM MATSHITA UJDA770 DVD/CDRW Buffer underrun protection activated 4:48:38 PM Caching of files started 4:48:38 PM Caching of files completed 4:48:49 PM Track following error D: MATSHITA UJDA770 DVD/CDRW 4:48:51 PM Logical unit not ready, operation in progress D: MATSHITA UJDA770 DVD/CDRW 4:48:51 PM Could not perform EndSession 4:48:51 PM Burn PROCESS failed at 24x (3,600 KB/s) EDIT: I feel dumb... I didn't even bother restarting. It went away after I restarted.Too late, BUT: 1-4GB USB pen drives are reasonably cheap on Amazon right now. |
|
46. |
Solve : Purchase Orders? |
Answer» I have a question... |
|
47. |
Solve : My IP Adress Traces To The Wrong Country? |
Answer» I live in the uk but a program that can only be used in the uk SAYS IM not, so i ran a TRACE on my ip address Whitch i got from http://whatismyipaddress.com/, but it says i live i the usWhat program and ISP. We are not mindreaders.sorry, |
|
48. |
Solve : Possible to 'split up' a PDF file page by page?? |
Answer» Is it? Like take out a specific page. |
|
49. |
Solve : copied cd but can't run it!...? |
Answer» Downloaded a long game (navigator) that is usually on 4 cd's. So now I can look at all TH efiles an dopen them individually but I can't load the game as I dont SEE a obvious SETUP bit!!! I thought i was being clever but I guess not!! I fI had the cds i could put them in th emachine and the prompt would tell me what to do RIGHT!? |
|
50. |
Solve : NTUSER.DAT? |
Answer» I posted this in the Hardware section, and wasn't sure if it would be better answered here: |
|