Everything posted by AWS
-
Does Microsoft call people unannouced to tell them they have a virus and will help to get rid of it?
I just got a phone call telling me that he was from Microsoft detected that I had a virus on my computer. Asked if I was sitting at my computer. I told him NO and that I did not believe him and hung up. Does Microsoft do such a thing? I have never heard of anyone being called by a so called Microsoft Tech. Especially one that did not speak very good English. I don't want to be scammed. View this thread
-
problem with adobe reader x, will not open downloaded files, indicates read error
have been through windows support system who removed then downloaded another acrobat program. program worked initially with support technician on line, but when prompted later to download a standard file from internet site it came up with the usual error message. View this thread
-
Receiver's receiving Multiple copies of e-mails from sender when a single email is sent
Original title: Multiple E-MailsAfter receiving an e-mail from a friend, I have forwarded these to others in the same interest group. When they get them, some have asked why I sent 9 copies of the same e-mail, which I didn't of course. Then when some have tried to open them, they get gibberish or a "file too large" error message. So, 1. Whats happening that they get multiples?2. Why do they get file too large errors?How do I correct this, as I send these weekly. View this thread
-
Windows Explorer Keep on Crashing.
Good day. My Windows explorer keep on crashing after using the " right click " button on any files. ANY files. So anyone can help me how to fix this ? really don't know what to do. BTW after right clicking a file there will be a prompt saying " windows explorer has encountered bla bla bla " you know the rest i think. Thanks for the answer asap :) View this thread
-
new install problem
Hard drive crashed so had to reinstall whs 2003. Got it installed but now I can't install computers to whs. From the remote install disk it says looking for server which it finds, then download software but then it can't find the software and stops. This is how I installed all 5 remotes before but now no go on any of the computers. I will add that I can ping the server from the remote and ping the remote from the server. Any help is great appreciated. Marion View this thread
-
Recommended type of scan.
Hi, I was researching on the difference between a quick scan and a full scan and to my knowledge what I understand is that a quick scan will scan a hard drive in all areas that malware is known to store itself where a full scan will scan all areas of the hard drive, so it is recommended to just run a quick scan. My question is if today or tomorrow someone creates a virus which stores itself on the hard drive where no other malware stores itself, wouldn't a quick scan not detect it and a full scan will? So then wouldn't it be best to do a full scan ? View this thread
-
Can't activate windows vista business on my refurbished computer.
I bought a refurbished computer from a school auction complete with Windows Vista Business installed on it and working. After 2 months it started to give me an error msg. stating the volume had expired or something like that. Now Windows will not work and all my attempts to reactivate it have failed. The product key on the unit only gives me a a new error code 0x8007267C and tells me I need a business key to activate it. I'm using another laptop to convey this as the new one is unuseable. Any suggestions? View this thread
-
Being productive in the background background tasks
In my previous post (Introduction[/size] Background task triggers are designed for varied scenarios and applications, and so have different requirements and resource management constraints. Some background task triggers are designed for apps that always need to stay up to date (e.g. email, VOIP) while others are designed for more opportunistic scenarios (e.g. running a maintenance task on AC or when certain system conditions change). The apps that always need to stay up to date need to be on the lock screen, this is limited to 7 apps more on this later in the post. In contrast, if you want to do opportunistic work, any app can use the maintenance trigger which runs on AC or certain system triggers. To use these triggers the app doesn’t need to be on the lock screen. Apps on the lock screen have more relaxed resource management constraints because they need to run more frequently (that’s why we limit the number and put the user in control!). I will talk about these details later. You don’t have to use background tasks if you simply want to keep your app fresh with content. You can always use live tiles or scheduled notifications as we explained in the post [url=http://blogs.msdn.com/b/windowsappdev/archive/2012/04/16/creating-a-great-tile-experience-part-1.aspx" target="_blank">Create a great tile experience. With this introduction, let’s dive into the code! Doing work in the background when the device is on AC power As we’ve seen in my previous post, sometimes your app needs its own code to provide functionality in the background. For example, let’s say you want to add all the photos in the Pictures Library to your app database or process them in some way (e.g. generate thumbnails). You can do this when your app is running in the foreground and interacting with the user, or you can use background tasks with a maintenance trigger which runs in the background only when the device is on AC power. The maintenance trigger is available to everyone and your app doesn’t need to be on the lock screen. The advantage of using a maintenance trigger background task is that it is guaranteed to not interfere with the user’s activity and, runs only on AC power. So you don’t need to worry about excessive battery usage. This code example shows the maintenance background task calls ProcessPictures class to process the files when the task runs. The task runs every 8 hours to look for new files to process. The background task also registers for a cancel handler because maintenance background tasks are cancelled when the device transitions to battery power. In the cancel handler, the processing of files is cancelled. If you don’t return from the cancel handler within 5 seconds, Windows will terminate the app. Note these code examples assume knowledge of the background task and the trigger classes. For more info about these classes, see the Windows.ApplicationModel.Background namespace documentation on [url=http://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.background(v=VS.85).aspx" target="_blank">Dev Center. C# JavaScript This code example shows how to register the maintenance background task from the main app. This background task launches every 8 hours to process any pictures in the Pictures Documents Library. If you don’t need to do this work anymore, you can unregister the background task using the Unregister method of the IBackgroundTaskRegistration class. C# JavaScript You must declare Background tasks in your app manifest. Start by opening your app’s manifest in Visual Studio and from the Declarations tab add the Background Tasks declarations from the drop down menu. Choose the appropriate task type and specify your Entry point (class name of the background task) or Start page if you are using a JavaScript background task. [url=http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-31-metablogapi/0726.background2_5F00_img1_5F00_0A19D954.jpg">http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-31-metablogapi/4011.background2_5F00_img1_5F00_thumb_5F00_77D11291.jpg Figure 1 - Background task manifest declarations You can view the contents of the manifest by right clicking it and selecting View Code. Be aware that the maintenance task can run only in the system-provided host (backgroundTaskHost.exe or wwahost.exe for JavaScript) and therefore you can’t specify any Executable attribute. The task type of Maintenance trigger is systemEvent as you can see in the manifest snippet here. In JavaScript EntryPoint is replaced by a StartPage attribute. For more info on using background tasks, see the whitepaper [url=http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=27411" target="_blank">Introduction to background tasks and the [url=http://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.background.aspx" target="_blank">Dev Center for API usage. Download POP mail every 15 minutes In this example, we need the app to run predictably and frequently in the background. You can get this by placing your app on the lock screen. Because an app uses background tasks to always stay up-to-date even when the user isn’t using their Windows 8 device, the way a user controls what apps can use these background tasks is by granting them permission to appear on the lock screen. This is a natural fit because the lock screen is designed to provide users info about their apps without the need for them to unlock their Windows 8 device. This relationship is a two-way street: your app can use these types of background tasks only if it is on the lock screen and, likewise, your app can appear on the lock screen only if it requests to use these types of background tasks. [url=http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-31-metablogapi/7230.background2_5F00_img2_5F00_5364589B.jpg">http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-31-metablogapi/3581.background2_5F00_img2_5F00_thumb_5F00_2100851C.jpg Figure 2 - Lock screen personalization UI and lock screen capable apps Because a relatively small number of apps can be placed on the lock screen, it is important for your app to provide a good lock screen experience. If it doesn’t, users will likely remove it to make room for something else. Examples of apps that fit this mold are communication apps e.g. a mail app that shows a count of unread email messages, a calendar app that shows upcoming appointments in the detailed status slot, or a messaging app that shows how many messages a user has missed. More information about the lock screen, including more details on what makes an app a good candidate for appearing on it, is available on [url=http://msdn.microsoft.com/en-us/library/windows/apps/Hh779720.aspx" target="_blank">Dev Center. Using time trigger to download mail every 15 minutes This example code shows how to register a time trigger background task that runs every 15 minutes if the Internet is available using the BackgroundTaskBuilder class. If the Internet is not available then your background task doesn’t run. Instead, it waits for the Internet to be available and then automatically runs. This is another useful feature of background tasks that prevents unnecessary work from happening and preserving device battery life. Without the condition, app code would have to run and then detect that there is no network connectivity and then error out because it couldn’t download the mail. The mail will be downloaded regardless of whether the app is in the foreground or not. It will also download if the device is in [url=http://blogs.msdn.com/b/b8/archive/2012/02/07/improving-power-efficiency-for-applications.aspx" target="_blank">Connected Standby. C# JavaScript The time trigger is available only to apps on the lock screen, as described previously. To programmatically request placement on the lock screen, you have to use the BackgroundExecutionManager class. If the user doesn’t put your app on the lock screen then your background tasks won’t run. If so, you may have to fall back to using a background task which doesn’t require lock screen or perform the work when the user uses your app. So that users don’t get asked over and over, the system prompts the user once. If they say no and want to add it later, they can do so manually. C# JavaScript This code example shows the main background task that downloads email every 15 minutes. It doesn’t go into detail describing how to update the tile and badges of your app as that was previously covered in the blog post [url=http://blogs.msdn.com/b/windowsappdev/archive/2012/04/16/creating-a-great-tile-experience-part-1.aspx" target="_blank">Creating a great tile experience. C# JavaScript To add your app to the lock screen , it needs to specify the lock screen notifications type available in the Application UI tab of the manifest. [url=http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-31-metablogapi/7242.background2_5F00_img3_5F00_62735D29.jpg">http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-51-31-metablogapi/6574.background2_5F00_img3_5F00_thumb_5F00_5B5420B1.jpg Figure 3 - Background task manifest declarations This is a code snippet of the manifest (generated by the wizard) of an app that needs to be on the lock screen and displays badges and toasts on the lock screen. The time trigger task can run only in the system provided host (backgroundTaskHost.exe or wwahost.exe for JavaScript) and therefore you can’t specify any Executable attribute. The task type is timer as you can see from the manifest. In JavaScript EntryPoint is replaced by a StartPage attribute. Advanced scenarios You can build more advanced VOIP, instant messaging or push email apps using other background task triggers such as Control Channel or Push Notification. Their usage is beyond the scope of this post and more info about them is provided in the [url=http://www.microsoft.com/download/en/details.aspx?id=28999" target="_blank">Background networking whitepaper. Resource management for background tasks As already mentioned, background tasks were designed with power efficiency in mind and hence have CPU and network resource usage constraints applied to them. This prevents an app in the background from depleting the device’s battery without the user being aware. If an app is active and the user is interacting with it in the foreground, then no CPU or network resource constraints are applied to the app’s background tasks. CPU resource constraints Each app on the lock screen receives 2 seconds of CPU time every 15 minutes, which can be used by all of the background tasks of the app. At the end of 15 minutes, each app on the lock screen receives another 2 seconds of CPU time for use by its background tasks. Any unused CPU time in the 15-minute interval is lost and the app can’t accumulate it. Each app not on the lock screen receives 1 second of CPU time every 2 hours. If the app uses all of its available CPU time, its background tasks are suspended until the app’s CPU quota is replenished at the next generation for CPU quota updates. CPU usage time refers to the actual amount of CPU used by the app and not the wall clock time of the background task. For example, if the background task is waiting in its code for the remote server to respond, and it is not actually using CPU, and this wait time is not counted against the CPU quota. CPU resource constraints on background tasks CPU resource quota Refresh period Lock screen capable app 2 CPU seconds 15 minutes Non-lock screen capable app 1 CPU second 2 hours Network resource constraints Network usage can represent a significant drain on a device battery, and so it is also constrained during background task execution. But if a device is running on AC power then background tasks are not network-constrained. CPU usage for a background task is always resource constrained even if the device is running on AC power. This table characterizes network data throughput, for a resource constrained WiFi network, assuming minimal interference. Average throughput of the network interface Data throughput, in megabytes (MB) for lock screen capable apps Data throughput, in MB, for non-lock screen capable apps[/b] Every 15 minutes[/b] Per day[/b] Per day[/b] 10 Mbps 1.875 180 30 Global pool Even with the assigned quota for each app, sometimes these fixed resource constraints may not be enough. For those situations, there is a shared global pool from which applications can request CPU and network resources. Details about background tasks, the global pool, its resource management constraints, and best practices are available in the [url=http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=27411" target="_blank">Introduction to background tasks whitepaper. It also includes a [url=http://code.msdn.microsoft.com/windowsapps/Background-Task-Sample-9209ade9" target="_blank">sample project with source. Summary So the answer to the question, “can my app perform work when it is not on screen”, is a resounding yes. The background model in Windows 8 allows your app to accomplish key end-user scenarios, like file downloads, playing audio, updating e-mail in the background or performing maintenance tasks when the device is on AC power. And because the platform closely monitors these activities, your background work will have minimal impact on the foreground app’s responsiveness or the battery life of your device. For more detailed technical info on the background model in Windows 8 go to the Dev Center and check out the various whitepapers. If you have any questions feel free to post them here in the comments and we’ll try to respond as best we can. -- Hari Pulapaka, Program Manager, Windows. Thanks to Jake Sabulsky, Johnny Bregar, Kyle Beck and Suhail Khalid for their contributions and many others for their valuable feedback including Alexander Corradini, Arun Kishan, Ben Srour, Ian LeGrow, Jamie Schwartz, and John Sheehan. Resources Link Type Highlights [url=http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=27411" target="_blank">Introduction to background tasks Whitepaper Introduces background tasks [url=http://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.background(v=VS.85).aspx" target="_blank">Background Model API namespace Docs Background model API namespace [url=http://code.msdn.microsoft.com/windowsapps/Background-Task-Sample-9209ade9" target="_blank">Background tasks sample project Sample project Demonstrates usage of background tasks [url=http://msdn.microsoft.com/en-us/library/windows/apps/Hh779720.aspx" target="_blank">Lock screen overview Conceptual documentation Explains the lock screen and its best practices [url=http://www.microsoft.com/en-us/download/details.aspx?id=28999" target="_blank">Background networking Whitepaper Shows how to develop advanced apps like VOIP, instant messaging using background tasks. [url=http://blogs.msdn.com/b/windowsappdev/archive/2012/04/16/creating-a-great-tile-experience-part-1.aspx" target="_blank">Creating a great tile experience Blog post Shows how to create a great tile experience View the full article
-
System Hanging up when adding a hard drive to a Windows Home Server.
I have an HP Smartmedia 487 server. I am getting errors that one of my drives is starting to fail. So I backed up all of my files, and am trying to add another drive. I purchased a 1 TB WD Caviar Black Drive that has 32 MB of Cache. Per everything I have read, I placed a jumper on pins 7&8. I have placed the drive into an open slot on my server. The system recognizes it, but when I go to the console and add it, it goes through the formatting process fine, then when it says "Adding Hard Drive" it locks up my server. I can no longer connect to it, the only way I can get a response is to power it down and power it back up. Now I am getting a message that says my trial of Home server is over. Not sure what that means. I have been working on this for over a week and I really have not had any luck getting and help, so any help would be appreciated. Am I doing something wrong? Do I need to just remove the bad drive and then try to add the good drive? Do I need to do an entire system reset? View this thread
-
laptop loses battery power after update
what update would turn off the ability to recarge the battery or to allow the laptop to not work on 110 power? Vista View this thread
-
Visual Studio LightSwitch: Will it emerge from sleeper status?
The first version of Microsoft’s Visual Studio LightSwitch dev tool has achieved only modest traction in the market. Here’s a set of recommendations from an ardent supporter of the product. Source: All About Microsoft
-
Issues with HP LaserJet 1100 in windows 7(64) Printer Print printing
I have an HP 1100 LaserJet and I have bougt the printer cable USB/Minicent and reconnected the PC in a Windows 7 (64) operating system, Theplug and play did not recognize the PC and try to install it the way is suggested in HP site but all I got was going in circles throuught the pahges without succes. Finally I found a diver and it installled it but I hav an issue: In the Pinters loaded appears and HP 950 IEEE1284 Controller and the HP Laserjet 1100 I tried to remove that HP 950aand can't be done I looked at the HP1100 printer installed and I saw all my documents in the Que...I removed most of ten except one a test page and cant be move and does not alow the printer to print properly. I have gone to other site and gave mme the driver and I have installed it and now the printer shoewn are the HP1100 LaseJet and the HP1100 LaserJet (MS) . Again in the Default printer the HP 100 when the test page was sent is still stuck in QUe and can'tdelete it or print. I have made the HP 1100 LaserJet (MS) the default and sent a test page and print it. The question is which printer do I leave as defauly the HP 1100 or the (remove or leave it) or tthe HP LS 1100 (MS) ???? HAve anyone have this issue before? ANy comments suggestion s I do appreciate them. Thanks View the thread
-
IE10 Will Have Native Flash Integration in Windows 8
Posted on View the full article
-
Get Error Code 800736B3 when trying to install Security Update for Windows 7 (KB2536276) (KB2560656)
I cant get thes updates to install. I have used the fixit tool. It said it repared the problem and everything is ok. I have also tryed to install them one by one manualy with no sucess. View the thread
-
Hotmail wants me to send new/old password to verify that it's actually me: do I follow through?
Recently, I got an email from the Hotmail Support Staff.and they said this (down below) --> So should I actually send them my password or is this fake?It appears as though your account has undergone numerous password change as well as a security answer change attempts in the last 24-72 hours . As a precautionary procedure, we would like you to change your password and reply to this email with your old and new password like the example below:Old Password:New Password: This will help verify that you are the correct user of this account. If the information provided does not match our system or if this email is not replied to then we will be forced to close this account for security purposes within a monitored time frame.Windows Live Hotmail Password Support Staff View this thread
-
al escribir la licencia de mi producto windowds 7 home premmium me dice no valida, como puedo activa
buenas tardes deseo asesoria para activar mi licencia de windows 7 home premium , por k ya lo instale y me manda una leyenda de que no esta activa, ya use el 01800-527-2000, no hubo contestacion por parte de microsoft, por lo que si instalo de nuevo me va seguir mandando la leyenda de activar windows. Atte: Alfredo Perez Velazquez View the thread
-
WOULD JUST SECURITY ESSENTIALS BE GOOD ENOUGH WITHOUT ANY OTHER PROGRAM SUCH AS MCAFEE
JUST WANTED TO KNOW IS ADDING ANOTHER SECURITY PROGRAM WILL INTERFERE WITH SECURITY ESSENTIALS, DOES ANYONE HAVE ANY SUGGESTIONS FOR A GOOD PROGRAM THAT DOES NOT COST A LOT, I AM A SENIOR CITIZEN WITH VERY LITTLE FUNDS, ANY HELP WILL BE GREATLY APPRECIATED. THANKS RON ANDERSON View this thread
-
Win auto update says it is not running when task manager says it is running
Win7-64bit SP1 i5-2500, 16MB RAM IE9 and Firefox12 Windows activation OK. Have been running another computer for the past 28 days and this computer has been off line for that time. Went back online with this computer and now: Been running this for 6 months and no problem updating, Action center/maintenance says update does not require any action. In Task Mgr. under services tab: wuauserv 536 Windows update running netsvcs. Under Process: svchost.exe SYSTEM 00 17,212k Host process for Win Services highlighted. Back to services and click on services button: go to windows update: Status=Started, Startup Type=Automatic (delayed start), Log on As=Local System. Go to Start menu, all programs, windows update. Windows update opens (window is red), click on update windows and get: Windows Update cannot currently check for updates because the service is not running. You may need to restart your computer. Have update service set to Auto update. After repeating this a dozen times here I am. Just Updated Java, Firefox, Norton Comcast Security Suit, and then tried Windows Update and no go on the Windows update. View the thread
-
como ativo o bluetooth?
Tenho um vaio com windows 7, e o bluetooth não é compatível, mas veio de fábrica, como faço para ativar o bluetooth? View the thread
-
which security is better for anti virus. winders defender or microsoft essentals
i need a secrity thats best for removing anti virus. whuch is better. windows defender, or mirosoft security essentail View this thread
-
When I open an email, it fills my monitor's screen and I can't make it smaller.
When I open an email, it fills the monitor's screen and I can't make it smaller. When I click on the maximize/restore down button, nothing changes. When I go to the edges of my screen, I can't get the horizontal arrows in order to make it smaller. When I first open my email, the screen with the list of emails is fine and responds to the maximize button, but upon opening any email, it fills the screen! View the thread
-
Keep getting error code Oxc8000247 when installing .net Framework 4
Hello, I keep trying to install .net Framework 4 and it keeps coming up with the following message: .NET Framework 4 has not been installed because: HRESULT 0xc8000247 I have tried numerous times with the same result. I also am unable to get windows update to update my machine at all. I ran the Microsoft Genuine Advantage Diagnostic Tool and came up with the following result: Diagnostic Report (1.9.0027.0): ----------------------------------------- Windows Validation Data--> Validation Code: 0 Cached Online Validation Code: N/A, hr = 0xc004f012 Windows Product Key: *****-*****-HFPYD-TP34V-8B9XJ Windows Product Key Hash: vgPvnP5nDzfzIrOpi8Xg2HMw3oc= Windows Product ID: 00359-OEM-9801872-19348 Windows Product ID Type: 8 Windows License Type: COA SLP Windows OS version: 6.1.7600.2.00010300.0.0.003 ID: {FAF28C1A-A27E-495A-8858-EF07F8783EE4}(3) Is Admin: Yes TestCab: 0x0 LegitcheckControl ActiveX: N/A, hr = 0x80070002 Signed By: N/A, hr = 0x80070002 Product Name: Windows 7 Home Premium Architecture: 0x00000009 Build lab: 7600.win7_rtm.090713-1255 TTS Error: Validation Diagnostic: Resolution Status: N/A Vista WgaER Data--> ThreatID(s): N/A, hr = 0x80070002 Version: N/A, hr = 0x80070002 Windows XP Notifications Data--> Cached Result: N/A, hr = 0x80070002 File Exists: No Version: N/A, hr = 0x80070002 WgaTray.exe Signed By: N/A, hr = 0x80070002 WgaLogon.dll Signed By: N/A, hr = 0x80070002 OGA Notifications Data--> Cached Result: N/A, hr = 0x80070002 Version: N/A, hr = 0x80070002 OGAExec.exe Signed By: N/A, hr = 0x80070002 OGAAddin.dll Signed By: N/A, hr = 0x80070002 OGA Data--> Office Status: 100 Genuine Microsoft Office Professional Plus 2007 - 100 Genuine OGA Version: N/A, 0x80070002 Signed By: N/A, hr = 0x80070002 Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3 Browser Data--> Proxy settings: N/A User Agent: Mozilla/4.0 (compatible MSIE 8.0 Win32) Default Browser: C:Program Files (x86)Mozilla Firefoxfirefox.exe Download signed ActiveX controls: Prompt Download unsigned ActiveX controls: Disabled Run ActiveX controls and plug-ins: Allowed Initialize and script ActiveX controls not marked as safe: Disabled Allow scripting of Internet Explorer Webbrowser control: Disabled Active scripting: Allowed Script ActiveX controls marked as safe for scripting: Allowed File Scan Data--> File Mismatch: C:Windowssystem32watwatadminsvc.exe[Hr = 0x80070003] File Mismatch: C:Windowssystem32watnpwatweb.dll[Hr = 0x80070003] File Mismatch: C:Windowssystem32watwatux.exe[Hr = 0x80070003] File Mismatch: C:Windowssystem32watwatweb.dll[Hr = 0x80070003] File Mismatch: C:Windowssystem32sppobjs.dll[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32sppc.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppcext.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppwinob.dll[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32slc.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32slcext.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppuinotify.dll[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32slui.exe[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32sppcomapi.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppcommdlg.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppsvc.exe[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32driversspsys.sys[6.1.7127.0], Hr = 0x80092003 File Mismatch: C:Windowssystem32driversspldr.sys[6.1.7127.0], Hr = 0x80092003 File Mismatch: C:Windowssystem32systemcpl.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32user32.dll[6.1.7600.16385], Hr = 0x800b0100 Other data--> Office Details: {FAF28C1A-A27E-495A-8858-EF07F8783EE4}1.9.0027.06.1.7600.2.00010300.0.0.003x64*****-*****-*****-*****-8B9XJ00359-OEM-9801872-193488S-1-5-21-612330498-3168683927-2105089579GatewayDX4831American Megatrends Inc.P01-A020091117000000.000000+0001AB83607018400FC04090409Pacific Standard Time(GMT-08:00)03ACRSYSACRPRDCT100100Microsoft Office Professional Plus 20071252211DF14E7ED86eI5GFGia3PJbsVdMYxU1aBMqiKU=89409-707-1191745-6506214 Spsys.log Content: 0x80070002 Licensing Data--> Software licensing service version: 6.1.7600.16385 Name: Windows® 7, HomePremium edition Description: Windows Operating System - Windows® 7, OEM_COA_SLP channel Activation ID: 5e017a8a-f3f9-4167-b1bd-ba3e236a4d8f Application ID: 55c92734-d682-4d71-983e-d6ec3f16059f Extended PID: 00359-00196-018-719348-02-1033-7600.0000-2702011 Installation ID: 021326147440756046311422222402909180533503050062964256 Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338 Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339 Use License URL: http://go.microsoft.com/fwlink/?LinkID=88341 Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340 Partial Product Key: 8B9XJ License Status: Licensed Remaining Windows rearm count: 3 Trusted time: 5/23/2012 12:53:04 PM Windows Activation Technologies--> HrOffline: 0x00000000 HrOnline: N/A HealthStatus: 0x0000000000000000 Event Time Stamp: N/A ActiveX: Not Registered - 0x80040154 Admin Service: Not Registered - 0x80040154 HealthStatus Bitmask Output: HWID Data--> HWID Hash Current: MAAAAAEAAwABAAEAAAACAAAAAQABAAEAonZ6gSB1CIX4c0LI+PkAa6TABNbYtVxd OEM Activation 1.0 Data--> N/A OEM Activation 2.0 Data--> BIOS valid for OA 2.0: yes Windows marker version: 0x20001 OEMID and OEMTableID Consistent: yes BIOS Information: ACPI Table Name OEMID Value OEMTableID Value APIC ACRSYS APIC1654 FACP ACRSYS FACP1654 HPET ACRSYS OEMHPET MCFG ACRSYS OEMMCFG SLIC ACRSYS ACRPRDCT OEMB ACRSYS OEMB1654 GSCI ACRSYS GMCHSCI AWMI ACRSYS OEMB1654 SSDT DpgPmm CpuPm I am unsure of where to go from here, and am needing to install .NET Framework 4 for a program I need to run. Thank you, and i look forward to your responses View the thread
-
Keep getting error code Oxc8000247 when installing .net Framework 4
Hello, I keep trying to install .net Framework 4 and it keeps coming up with the following message: .NET Framework 4 has not been installed because: HRESULT 0xc8000247 I have tried numerous times with the same result. I also am unable to get windows update to update my machine at all. I ran the Microsoft Genuine Advantage Diagnostic Tool and came up with the following result: Diagnostic Report (1.9.0027.0): ----------------------------------------- Windows Validation Data--> Validation Code: 0 Cached Online Validation Code: N/A, hr = 0xc004f012 Windows Product Key: *****-*****-HFPYD-TP34V-8B9XJ Windows Product Key Hash: vgPvnP5nDzfzIrOpi8Xg2HMw3oc= Windows Product ID: 00359-OEM-9801872-19348 Windows Product ID Type: 8 Windows License Type: COA SLP Windows OS version: 6.1.7600.2.00010300.0.0.003 ID: {FAF28C1A-A27E-495A-8858-EF07F8783EE4}(3) Is Admin: Yes TestCab: 0x0 LegitcheckControl ActiveX: N/A, hr = 0x80070002 Signed By: N/A, hr = 0x80070002 Product Name: Windows 7 Home Premium Architecture: 0x00000009 Build lab: 7600.win7_rtm.090713-1255 TTS Error: Validation Diagnostic: Resolution Status: N/A Vista WgaER Data--> ThreatID(s): N/A, hr = 0x80070002 Version: N/A, hr = 0x80070002 Windows XP Notifications Data--> Cached Result: N/A, hr = 0x80070002 File Exists: No Version: N/A, hr = 0x80070002 WgaTray.exe Signed By: N/A, hr = 0x80070002 WgaLogon.dll Signed By: N/A, hr = 0x80070002 OGA Notifications Data--> Cached Result: N/A, hr = 0x80070002 Version: N/A, hr = 0x80070002 OGAExec.exe Signed By: N/A, hr = 0x80070002 OGAAddin.dll Signed By: N/A, hr = 0x80070002 OGA Data--> Office Status: 100 Genuine Microsoft Office Professional Plus 2007 - 100 Genuine OGA Version: N/A, 0x80070002 Signed By: N/A, hr = 0x80070002 Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3 Browser Data--> Proxy settings: N/A User Agent: Mozilla/4.0 (compatible MSIE 8.0 Win32) Default Browser: C:Program Files (x86)Mozilla Firefoxfirefox.exe Download signed ActiveX controls: Prompt Download unsigned ActiveX controls: Disabled Run ActiveX controls and plug-ins: Allowed Initialize and script ActiveX controls not marked as safe: Disabled Allow scripting of Internet Explorer Webbrowser control: Disabled Active scripting: Allowed Script ActiveX controls marked as safe for scripting: Allowed File Scan Data--> File Mismatch: C:Windowssystem32watwatadminsvc.exe[Hr = 0x80070003] File Mismatch: C:Windowssystem32watnpwatweb.dll[Hr = 0x80070003] File Mismatch: C:Windowssystem32watwatux.exe[Hr = 0x80070003] File Mismatch: C:Windowssystem32watwatweb.dll[Hr = 0x80070003] File Mismatch: C:Windowssystem32sppobjs.dll[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32sppc.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppcext.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppwinob.dll[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32slc.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32slcext.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppuinotify.dll[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32slui.exe[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32sppcomapi.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppcommdlg.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32sppsvc.exe[6.1.7600.16385], Hr = 0x80092003 File Mismatch: C:Windowssystem32driversspsys.sys[6.1.7127.0], Hr = 0x80092003 File Mismatch: C:Windowssystem32driversspldr.sys[6.1.7127.0], Hr = 0x80092003 File Mismatch: C:Windowssystem32systemcpl.dll[6.1.7600.16385], Hr = 0x800b0100 File Mismatch: C:Windowssystem32user32.dll[6.1.7600.16385], Hr = 0x800b0100 Other data--> Office Details: {FAF28C1A-A27E-495A-8858-EF07F8783EE4}1.9.0027.06.1.7600.2.00010300.0.0.003x64*****-*****-*****-*****-8B9XJ00359-OEM-9801872-193488S-1-5-21-612330498-3168683927-2105089579GatewayDX4831American Megatrends Inc.P01-A020091117000000.000000+0001AB83607018400FC04090409Pacific Standard Time(GMT-08:00)03ACRSYSACRPRDCT100100Microsoft Office Professional Plus 20071252211DF14E7ED86eI5GFGia3PJbsVdMYxU1aBMqiKU=89409-707-1191745-6506214 Spsys.log Content: 0x80070002 Licensing Data--> Software licensing service version: 6.1.7600.16385 Name: Windows® 7, HomePremium edition Description: Windows Operating System - Windows® 7, OEM_COA_SLP channel Activation ID: 5e017a8a-f3f9-4167-b1bd-ba3e236a4d8f Application ID: 55c92734-d682-4d71-983e-d6ec3f16059f Extended PID: 00359-00196-018-719348-02-1033-7600.0000-2702011 Installation ID: 021326147440756046311422222402909180533503050062964256 Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338 Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339 Use License URL: http://go.microsoft.com/fwlink/?LinkID=88341 Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340 Partial Product Key: 8B9XJ License Status: Licensed Remaining Windows rearm count: 3 Trusted time: 5/23/2012 12:53:04 PM Windows Activation Technologies--> HrOffline: 0x00000000 HrOnline: N/A HealthStatus: 0x0000000000000000 Event Time Stamp: N/A ActiveX: Not Registered - 0x80040154 Admin Service: Not Registered - 0x80040154 HealthStatus Bitmask Output: HWID Data--> HWID Hash Current: MAAAAAEAAwABAAEAAAACAAAAAQABAAEAonZ6gSB1CIX4c0LI+PkAa6TABNbYtVxd OEM Activation 1.0 Data--> N/A OEM Activation 2.0 Data--> BIOS valid for OA 2.0: yes Windows marker version: 0x20001 OEMID and OEMTableID Consistent: yes BIOS Information: ACPI Table Name OEMID Value OEMTableID Value APIC ACRSYS APIC1654 FACP ACRSYS FACP1654 HPET ACRSYS OEMHPET MCFG ACRSYS OEMMCFG SLIC ACRSYS ACRPRDCT OEMB ACRSYS OEMB1654 GSCI ACRSYS GMCHSCI AWMI ACRSYS OEMB1654 SSDT DpgPmm CpuPm I am unsure of where to go from here, and am needing to install .NET Framework 4 for a program I need to run. Thank you, and i look forward to your responses View the thread
-
Fake tech support with an emergency fix?
Guy called me and said he was tech support for MS Windows. Said to open run and type something in or my operating system or it would crash. I said no I don't trust him then he said f^%$ you so I hung up. Never had that happen before. Guess my computer is going to explode now from what he said. Anyone else have this happen? View the thread
-
I cannot uninstall RegCleanPro.
Unstalling programsam trying to uninstall RegCleanPro....just wont do it... View this thread