Your best source of information and news about BIOS, drivers and software on the internet

July 28th, 2009

You are currently browsing the articles from MS Windows Vista Compatible Software written on July 28th, 2009.

Manual Removal of W32/Magania.AWXU Trojan

Manual Removal of W32/Magania.AWXU Trojan
W32/Magania.AWXU is a trojan. The trojan will infect Windows systems.
This Trojan Copies its files to windows\system32/dllcache and Windows Root folder and windows root folder as hidden files or active non-hidden files.
This trojan information updated on July 8, 2009.
Other names of W32/Magania.AWXU Trojan:
This trojan is also known as Trojan-GameThief.Win32.Magania.awxu, WORM_ONLINEG.AT.

Damage Level : Medium/High
Distribution Level:
Medium
Download Registry, Taskmanager and Folder Options Repair Tool
W32/Magania.AWXU Trojan Manual Removal Instructions
Recommend Removal from Safe Mode:

How to Start in Safe mode:
Restart your Computer, Press F8 Repeatedly, when your Screen turns on, Select Safe mode, press enter.

The Infected Files Can be Seen in these folders and names also Running in Tasks
End the Following Active Process Before Removal
  • [ Kill the Process, Use Killbox if your Access Denied ]
Download W32/Magania.AWXU Trojan Known File Removal Tool

[In Windows Vista Run As Administrator, After Execution System Will Restart]

  • %Windows\System32\dllcache\cdaudio.sys
  • %Windows\System32\ierdfgh.exe
  • %Windows\System32\pytdfse0.dll
  • %Windows\System32\xvassdf.exe
  • %Windows\System32\4tddfwq0.dll
  • %Root of Windows Installed Drive\3hjs.exe
    [ No Exact Information about Files, search above related files in Program files Folder ]
    If you have any of these files in running process from task manger, end the process before removal.
    Note: if task manager is disabled, Download the following file, Click to Download - Enable Registry.reg [ Right Click - Save Target As/Linked Content As ]
    Open it with Regedit.exe [%system32\regedit.exe], then it Confirms Add to registry Yes or No, Confirm Yes, then click Ok.
W32/Magania.AWXU Trojan Entries Manual Removal From Registry
Click Start, Run,Type regedit,Click OK.

Note: If the registry editor fails to open the threat may have modified the registry to prevent access to the registry editor.
  • Download this UnHookExec.inf, [ Right Click - Save Target As/Linked Content As ]
    and then continue with the removal. Save it to your Windows desktop. Do not run it at this time, download it only.
  • After booting into the Safe Mode or VGA Mode
  • Right-click the UnHookExec.inf file and click Install. [This is a small file. It does not display any notice or boxes when you run it.]
  • Or Download Regfile to enable Registry editor
  • Download Registry Enabler [ Right click - Save Target As ]
  • Open it with Registry editor
W32/Magania.AWXU Trojan modifies registry at the following locations to ensure its automatic execution at every system startup:
Delete The Entries

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services
HKEY_USERS\S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXX-XXXX\Software\Microsoft\Windows\CurrentVersion\Run
Delete file entries from right side
Search Registry For W32/Magania.AWXU Trojan File Names listed above to remove completely,
Edit Menu - Find
, enter Keyword and remove all value that find in search.

Exit the Registry Editor,
Restart your Computer.

Recommended Removal Tools:
Kaspersky Antivirus or Internet Security (Shareware)
Spyware Doctor (Shareware)
AVG Antivirus (Freeware)
Killbox (Freeware)
Ultimate Links PC Tips

Written by FireFly on July 28th, 2009 with no comments.
Read more articles on W32/Magania.AWXU and manual removal and removal of trojan and otherSoftware and Windows.

Managing Windows 7 with DISM

This week I am proud to feature guest blogger Justin Rodino. He is a Microsoft Desktop Experience MVP and a member of our STEP (Springboard Technical Experts Panel) program. His own blog is available here. This weeks guest blogger topic is on the new DISM tool. A great way to make deploying and maintaining Windows 7 images easier.

What is DISM

DISM – the Deployment Imaging Servicing and Management Tool is a new part of Windows 7 that has been created to help you manage (and deploy) images with greater ease. Previous versions of Windows included tools such as:

  • ImageX – a tool which allowed you to mount offline images
  • Pkgmgr – A device driver and package manager
  • PEImg – A WindowsPE Utility to prepare images once edited with pkgmgr
  • Intlcfg – An International Settings Configuration Tool

All of the above tools have very specific feature sets, but using these makes modifying and changing the created images very cumbersome. The first problem naturally was which tool to use when.  Once you figured this out, you had to go through a series of steps in order to get the image mounted – of which you could only do “offline” – and when completed you had to recompile or re-make the new image you wished to deploy.  With DISM, all of these tools become one and even better – you can do certain things to an “online” or live image.  What we’re going to do is take a quick look at DISM, get some information about our current installation as well as service it, whilst using it.

Starting DISM

The first thing we need to do in order to run DISM is have an elevated command prompt open.  Simply going Start –> Run –> cmd –> Enter won’t do the trick as that runs with user privileges.  What we need to do is either do Start –> Run –> Cmd –> Shift+CTRL+Enter or Click on Start type cmd and when it appear in the search box, right click on it and choose “Run as Administrator”:

1 (2)

Once we’ve got the elevated command prompt open – we can check this by looking in the task bar and the title should be prefixed by “Administrator:

2 (2)

Now if we type “dism” we should get help about dism.  If you get the message:

Error: 740

Elevated permissions are required to run DISM.
Use an elevated command prompt to complete these tasks.

Then you didn’t successfully get a command prompt with elevated privileges open.

Finding Basic Information With DISM

Now that we’ve got our command prompt ready for action, we can find some basic information about the OS we’re currently running. At the prompt type:

dism /online /Get-CurrentEdition

This tells dism we want to use the current version (/online) and the command – similar to PowerShell – tells dism we want to get information about the current edition (/Get-CurrentEdition).  Proving successful the results should return something like:

Deployment Image Servicing and Management tool
Version: 6.1.7100.0

Image Version: 6.1.7100.0

Current edition is:

Current Edition : Ultimate

The operation completed successfully.

Now let’s take it one step further.  As there are different versions of Windows 7 available, we have the potential to upgrade.  If we run dism (referencing the online image - /online) with /Get-TargetEditions, it will tell us what versions we can upgrade to (if at all possible).  So, if I run

dism /online /Get-TargetEditions

against a machine that is already running Windows 7 Ultimate, DISM should return:

Deployment Image Servicing and Management tool
Version: 6.1.7100.0

Image Version: 6.1.7100.0

Editions that can be upgraded to:

(The current edition cannot be upgraded to any target editions.)

The operation completed successfully.

So, scripting the above can prove useful if we need to interrogate or find information about our existing machine or its capabilities.

Changing the System with DISM

As well as querying the system for information, one of the most powerful features of DISM is its capability to “service” an “online” or live image.  This allows us the capability to change the OS on the fly.  For example, Windows 7 ships with numerous games and features installed that we might not want as part of our corporate build.  Using the functionality built in to DISM – whilst the OS is running – we can remove these features.

First, let’s look at what is installed and what we can change.  To do this, at the prompt we need to type:

dism /online /Get-Features | more

Again, we reference the current version (/online) and we use the command /Get-Features to show us the currently installed features.  The “| more” simply paginates the output so we can see it without having to scroll.  If we look through the list some of the features we want to remove can be seen:

….

Feature Name : FreeCell
State : Enabled

Feature Name : Minesweeper
State : Enabled

Feature Name : PurblePlace
State : Enabled

….

As the state of these currently shows “Enabled” we want to remove or disable them.  Using DISM, we can easily do this.  At the prompt we can type:

dism /online /Disable-Feature /FeatureName:<NAME GOES HERE>

Where we simply replace <NAME GOES HERE> with the feature from the list of results we got using /Get-Features.  NOTE: The features are CaSe SEnSItivE.  As an example, if we wanted to remove PurblePlace, we could simply enter:

dism /online /Disable-Feature /FeatureName:PurblePlace

at which time DISM will kick in and should return results like the following:

Deployment Image Servicing and Management tool
Version: 6.1.7100.0

Image Version: 6.1.7100.0

Disabling feature(s)
[==========================100.0%==========================]
The operation completed successfully.

Let’s now check to see if it was disabled:

dism /online /Get-FeatureInfo /FeatureName:PurblePlace

Deployment Image Servicing and Management tool
Version: 6.1.7100.0

Image Version: 6.1.7100.0

Feature Information:

Feature Name : PurblePlace
Display Name : Purble Place
Description : Purble Place
Restart Required : Possible
State : Disabled

Custom Properties:

(No custom properties found)

The operation completed successfully.

As we can see “State : Disabled” means we’ve disabled it.  Should we want to re-enable it, we can simply type:

dism /online /Enable-Feature /FeatureName:PurblePlace

At which time DISM will put the feature back on the machine in a similar way it removed it:

Deployment Image Servicing and Management tool
Version: 6.1.7100.0

Image Version: 6.1.7100.0

Enabling feature(s)
[==========================100.0%==========================]
The operation completed successfully.

Conclusion

As you can see DISM is a very powerful tool and the introduction of online/live servicing makes it even more useful to the IT professional.  To get more information about DISM or any of its functions or capabilities, use the /? flag when you get stuck.  Some examples include:

  • “dism /?” – which will tell you about the root level capabilities
  • “dism /online /?” – which will tell you about the online image servicing capabilities
  • “dism /online /Get-Features /?” – which will tell you about the Get-Features function

And from there, the sky’s the limit.  Happy DISM’ing.

Written by Stephen L Rose on July 28th, 2009 with no comments.
Read more articles on otherSoftware.

Windows 7 Taskbar Dynamic Overlay Icons and Progress Bars

We covered the basics of the Windows 7 Taskbar in Developing for the Windows 7 Taskbar – Application ID, and how you can create a Jump List for your application in Developing for the Windows 7 Taskbar – Jump into Jump Lists – Part 1, Part 2, and Part 3). In this post, we will explore how you can leverage the cool Taskbar functionality of dynamic overlay icons and multi-state progress bars.

A central Windows 7 tenet is that the "User Is in Control"; that is, we empower users to take ownership of their desktop looks and functionality. From little things, like allowing users to arrange their Taskbar icons as they see fit, to enabling users to control the number of icons on the Taskbar. Windows 7 “removed” the System Tray Icon area. By default, almost all the tray icons are concealed. Consequently, it is safe to assume that large number of the notification balloons will also not be visible and most users will not see them. You can read more about the updates to the Notification Area here. To compensate for this lack of notification, Windows 7 Taskbar offers Overlay Icons and Progress Bars. By using overlay icons and progress bars, your application can provide contextual status information to the user in spite of the lack of a System Tray Icon area and even if the application’s window does not display. The user doesn’t even have to look at the thumbnail or the live preview of your app – the Taskbar button itself can reveal whether you have any interesting status updates. This functionality is part of our commitment to provide users with easily accessible information about an application's status without any extra clicking.

Overlay Icons

The ITaskbarList4 interface, specifically its SetOverlayIcon function, exposes the native overlay functionality. The function takes a window handle, an icon handle, and optional description text, as you can see in the following code snippet.

HICON hIcon = NULL; // for IDM_OVERLAY_CLEAR
hIcon = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_OVERLAY1));
// Set the window's overlay icon, possibly NULL value
g_pTaskbarList->SetOverlayIcon(hWnd, hIcon, NULL);
if (hIcon) {
// need to clean up the icon as we no longer need it
DestroyIcon(hIcon);
}

Make sure you obtain ITaskbarList3 *g_pTaskbarList = NULL;as we did before, and CoCreate it:

CoCreateInstance(
CLSID_TaskbarList,
NULL,
CLSCTX_INPROC_SERVER,
IID_PPV_ARGS(&g_pTaskbarList));
When running the above code in the proper context (you can download the application) the result looks like the following pictures. On the left, you see the application without any overlay icons, and on the right you can see the application with a red icon overlay.

image The managed wrapper for this feature resides in the Taskbar class that is part of the Windows API Code Pack for the .NET Framework. All that you need to do is use the OverlayImage property (Taskbar.OverlayImage). Simply call:

Taskbar.OverlayImage = 
new OverlayImage(TaskbarDemo.Properties.Resources.Red, "Red");

Doing so allows you to provide an OverlayImage for the taskbar button. The TaskbarDemo project is a WinForms demo, and you can find the above code in the TaskbarDemoMainForm.cs.

It’s equally easy to provide an extension method that does this to a WPF Window. Note that the only thing that you need to do is get the right icon, which is easy using .NET resources.

Progress Bars

If you already use a standard progress bar in your application’s top level window, the DMW will pick it up and, by default, display its progress as an overlay on top of your application. However, you can programmatically control the progress bar behavior on your application’s icon.

The native functionality is again found in the ITaskbarList3 interface, this time in the SetProgressState and SetProgressValue functions. The functions are quite self-explanatory. You can set the progress bar’s state (SetProgressState) to, for example, indeterminate or error, and use SetProgressValue to set the progress value. The following code snippet illustrates how to use these functions:

case WM_TIMER:
g_nProgress++;
if (g_nProgress == 1)
{
// First time through, so we'll set our progress state
// to be indeterminate - this simulates a background
// computation to figure out how much progress we'll need.
g_pTaskbarList->SetProgressState(hWnd, TBPF_INDETERMINATE);
}
else if (g_nProgress == MAX_PROGRESS_IND)
{
// Now set the progress state to indicate we have some
// normal progress to show.
g_pTaskbarList->SetProgressValue(hWnd, 0, MAX_PROGRESS_NORMAL);
g_pTaskbarList->SetProgressState(hWnd, TBPF_NORMAL);
}
else if (g_nProgress > MAX_PROGRESS_IND)
{
if (g_nProgress - MAX_PROGRESS_IND <= MAX_PROGRESS_NORMAL)
{
// Now show normal progress to simulate a background
// operation
g_pTaskbarList->SetProgressValue(
hWnd,
g_nProgress - MAX_PROGRESS_IND,
MAX_PROGRESS_NORMAL);
}
else
{
// Progress is done, stop the timer and reset progress
// state
KillTimer(hWnd, g_nTimerId);
g_nTimerId = 0;
g_pTaskbarList->SetProgressState(hWnd, TBPF_NOPROGRESS);
MessageBox(hWnd, L"Done!", L"Progress Complete", MB_OK);
}
}
break;

Note that on the first timer tick, we set the progress bar to TBPF_INDETERMINATE, and only after that did we set it to TBPF_NORMAL, which set the progress indicator to grow in size from left to right in proportion to the estimated amount of the operation completed.

For managed code, we use the Windows Code Pack API. Much like the native progress bar, the managed code Taskbar class includes a progress bar property (it is in its own a class), which allows you to set current value, max value, and statethe progress bar state. The progress bar states (found in the TaskbarButtonProgressState class) are:

  • NoProgress –equal to the TBPF_NOPROGRESS native state
  • Indeterminate –equal to the TBPF_INDETERMINATE native state
  • Normal –equal to the TBPF_NORMAL native state
  • Error –equal to the TBPF_ERROR native state
  • Paused –equal to the TBPF_PAUSED native state

You can find a WinForms demo in the TaskbarDemo project and in the TaskbarDemoMainForm.cs, you can find the UpdateProgressBar function that is called by a timer to update the progress bar.

Taskbar.ProgressBar.State = 
(TaskbarButtonProgressState)Enum.Parse(
typeof(TaskbarButtonProgressState),
(string)comboBoxProgressBarStates.SelectedItem);

if (Taskbar.ProgressBar.State != TaskbarButtonProgressState.Indeterminate)
Taskbar.ProgressBar.CurrentValue = progressBar1.Value;

As you can see, the code enables you to choose the state of the progress bar. Changing it to the error state turns the color of the progress bar on the Taskbar Icon to red.

The icing on the Taskbar progress bar "cake" is that you get this functionality FOR FREE if you use the standard progress dialog for file operations. (As we advance in this series, you’ll see that you get lots of functionality for free if you follow the standard guidelines of Windows programming.) For example, if you invoke a file operation using the SHFileOperation API or IFileOperation interface, the Taskbar button progress bar automatically displays the progress information (including errors) of that operation. This is what Windows Explorer does with great success.

Original post from Sasha Goldstein


Written by Yochay Kiriaty on July 28th, 2009 with no comments.
Read more articles on otherSoftware and Source Code and windows 7 and taskbar and Developers and .Net.

Green Electronics Council Founder Talks Green PCs

Recently, I had the chance to sit down with Jeff Omelchuk, founder and executive director of the Green Electronics Council (GEC), to talk about the work that he, Microsoft, and the PC industry are doing to make sure that customers have easy access to green PC hardware. Jeff gave a lot of insight into GEC and their efforts to educate consumers, enterprises, government agencies and technology companies about why “going green” is so important. The full interview is below, and when you’re done, be sure to hit www.epeat.net to find yourself the perfect green PC!

Brandon: What is the GEC? What is your mission?

Jeff: I founded the GEC In 2005, in recognition of the need to redefine society’s relationship with electronics. The motivation was that stakeholders in the chain of electronics all have important roles to play in reducing the environmental impact of certain products. Designers, users, manufacturers, purchasers, all need to work together to reduce the impact of electronic products. We recognize that electronic products and the communications they enable, they are a key to future sustainability. Yet, pound for pound and ounce for ounce they are the most environmentally impactful products on the planet. They have the capacity for good and improving communications and social efficiency but they are also very environmentally taxing. It’s an interesting case to dig into.

Brandon: That is very cool. I really like that you take a holistic view of how electronics work and take a look at the big picture. That being said, with such a great vision and mission, what is the goal and what kind of programs are you running right now to accomplish those goals?

Jeff: The Long-term goal is to get a consistent vision and definition of what sustainable electronics looks like and develop mechanisms and systems to move our global society toward accomplishing that goal, so we can get the benefits of electronics without the environment being saddled with so much of a burden.

GEC’s biggest program is called EPEAT, which is a green purchasing program for electronics that currently covers laptops, desktops and monitors. Another program of GEC is a partnership with Yale University for a forum for defining sustainable information and communications technology - we want to figure out a definition and a model of what that might be.

We’re also launching an international green electronics awards programs with Yale and other national, very high-profile stakeholders. The great thing about that awards program is that there are multiple diverse stakeholders, and we’re very committed to not bashing anyone; rather, we’re working cooperatively with all stakeholders to move the whole ecosystem forward. It’s very indicative of how we work across the board.

Brandon: That’s great. It’s interesting, the breadth of the programs you’re undertaking. You started to talk about EPEAT, which I think is probably most relevant to our readers. We covered what EPEAT is, so now I’d like to dig into how you came up with the idea for the EPEAT rating system and why its so important to consumers?

Jeff: Great question. EPEAT is a green rating system for electronics and to be honest (Laughs), I didn’t come up with the idea of it, or how it works! That was developed from over 100 stakeholders from all different sectors – advocacy organizations, PC manufacturers, institutional purchasers of electronics, recyclers, government agencies – all working together to solve a common problem, namely that it’s really difficult to specify green in a sound way, and difficult to know what products would meet that definition. There’s a problem because from a manufacturer’s perspective, different customers define green differently. To design a PC that meets everyone’s differing specs for green was a challenge, so there was a real need to create one definition that gives a consistent design target. Out of that common need, EPEAT defined the rating system, which is giving a definition of green that is quantified in a standard, published by IEEE, which defines green by 51 criteria and a certification program to identify what products meet the standards.

Brandon: What’s the incentive for a PC manufacturer to get their products registered, certified and tested? Is there something in it for them other than trying to ride the “Green Wave”?

Jeff: The simple answer is that we have been successful in getting purchasers of electronics to only buy those products that are green certified by EPEAT. The 800 pound gorilla is the US federal government – they require that nearly all PCs that the government buys must be EPEAT certified, which has created a market of over $60 billion for green computers. The simple reason the manufacturers participate, and we have participation by all the leading PC companies on the planet, is that they want a piece of that $60 billion!

Brandon: Very cool! Is EPEAT only in the United States or has this moved internationally?

Jeff: EPEAT was born in the USA and developed primarily by and for US and Canadian stakeholders, but since EPEAT launched in 2006, its use has grown dramatically. It effectively solves the same problems for purchasers in Brazil and Mexico, UK, Australia, New Zealand, and throughout EU and Asia that it has here. We see manufacturers all over the world registering with EPEAT, and purchasers like HSBC and Marriott International, large government and public purchasers, all looking for EPEAT certified hardware.

Brandon: Do I have to spend a lot of money or can I go green at any price point and any form factor?

Jeff: There is no evidence that we can see that green PCs cost more. There are more than 1200 laptops, desktops and monitors that are EPEAT certified today, so there’s something for everyone. I don’t think there is a discernable price difference, meaning that there are PCs all over the spectrum of performance and form factors and style that are EPEAT registered. When I travel, I carry the Toshiba Portege R500; it’s one of the greenest PCs out there. It is a slim, sleek laptop and weighs about 2.2 pounds. Going small isn’t the only way to go green though.

Brandon: What are the different ratings EPEAT certifies? What tools are there to help me buy the greenest computer? I’m out looking for a green PC – what should I be looking for and what tips and tricks are there to make sure I’m buying the best green computer?

Jeff: First, EPEAT rates products as bronze, silver or gold, sort of like green, greener and greenest. It is not a subjective rating system where we think about it and decide what’s greenest; it is based 51 criteria quantified in an IEEE standard. 23 criteria are defined as required – all EPEAT registered products must meet all 23 - and then some meet the 28 optional criteria,

Products that meet these requirements are listed on the website, www.epeat.net. It’s an easy way to identify EPEAT registered products – sort of the “green electronics bible”. That database is maintained by each manufacturer, so it’s always up to date. It’s literally refreshed every few seconds.

The best way today for a consumer to identify green computers is to go to the EPEAT website; the cool thing it’s a fully searchable database. Click on anything and explore which of the criteria any product meets. It’s a deep database with complex search capabilities so you can look for a specific product. At that point, having done your research, you can go online or in stores. You won’t see EPEAT-registered products identified with stickers or labels in most brick and mortar stories yet, but they are often identified online. CDW, Best Buy and Office Depot and others identify EPEAT registered products, either as part of the technical specs or with an EPEAT logo. More and more you’re seeing the EPEAT specified rating in the online performance technical sheet.

Brandon: Let’s say I’ve done my research, I’ve gone out bought my green PC. How can I make my computer greener to own? Are there ways I can conserve power to maximize its greenness?

Jeff: There are three primary decisions purchasers have to make about a PC: First is what to buy second is how to use it and third is what to do when they are done using it. Each has environmental aspects. EPEAT is intended to answer the first question – what to buy. When you buy, you help create an incentive for manufacturers to keep designing greener products.

What are my recommendations to optimize a PC’s greenness? The first and most important aspect is to enable power management features of leading operating systems like Windows. Windows has very good energy management features, [Note: click here to learn about Windows 7 power management] and your best bet is to let the PC manage its own power. It does quite well on its own. It’s sort of an old wives tale from the dark days of legacy computing that computers don’t like to be turned off. That’s totally not true anymore - if you’re not using it turn it off!

I put most of my office electronics on a plug strip. After I shut down my computer and turn it off, I turn off the strip, because a little known fact is that computers and other electronics still draw power even when the device is in an off state. Just by unplugging, you can save a ton of energy.

The third thing I mentioned is how to dispose of your PC when you’re done with it. It takes a lot out of our planet to manufacture electronic products, so trying to get the most use out of products is important. The idea of buying a new product that’s greener to replace an old product seems intuitive but in reality, its not a very green idea because it takes so many natural resources to manufacture that new device. If you want or need new, the best thing you can do is extend the life of the original machine. Do what you can to use them as long as possible. When you’re done using it, try to find someone who can make use of it.

When it’s really at the end of its useful life, recycle it appropriately and be careful to recycle with a responsible recycler. That last part is particularly important, because sometimes it’s difficult to identify responsible recyclers. There was a great article that came out the other day from a group called the Basil Action Network, who followed a batch of PCs that the recycler had said were going to be recycled responsibly, and it turns out they weren’t recycled at all! There have been numerous cases of irresponsible recycling where machines are exported to countries in Africa or to China where they are “recycled” under the most terrible conditions, or at best are tossed in a landfill and left to be a public health hazard. It’s a serious failure of policy and legal control, both in the US and the receiving countries and we can avert that by making sure our recyclers are responsible.

Brandon: Is there anything else you want readers to know about EPEAT, about green PCs?

Jeff: I guess the one thought would be, when you go into a retail store or online, or interact with people about electronic products, ask salespeople if there are any sound ways to determine a computer’s greenness and if they don’t know, point them to the EPEAT website. It is a tool that can be used by salespeople in stores, and you can help spread the word!

Additional Links:

Whitepapers:

Written by Brandon LeBlanc on July 28th, 2009 with no comments.
Read more articles on EPEAT and Green PCs and GEC and Green Electronics Council and Electronics and Environmental Impact and Power Management and windows 7 and Environment and green and otherSoftware and Power Consumption and Windows.

IronPython

IronPython is an implementation of Python that runs on the .NET framework as well as on Mono. The current version of IronPython is compatible with Python 2.5, and an alpha release of a Python 2.6-compatible version also is available. IronPython is written entirely in C#, and the current version is built on top of the Dynamic Language Runtime (DLR). IronPython features an interactive console that does full dynamic compilation of Python code to .NET. It provides full access to all .NET libraries while maintaining compatibility with the Python language. There also is a Visual Studio plugin called IronPython Studio that supports the creation of Python-based GUI applications. In addition to IronPython, there are “Iron” versions of Ruby and Scheme (LISP). If you like Python but crave static typing, check out BOO for .NET/Mono. IronPython is licensed under the terms of the “Microsoft Public License”, which was approved by the Open Source Initiative (OSI) in October 2007. The license allows redistribution of compiled code for either commercial or noncommercial use (similar to a BSD license). For this reason, although it is recognized as a “free” software license by the Free Software Foundation, it is considered incompatible with the GPL. And, if getting too close to Microsoft makes you nervous, be aware that the IronPython Project is hosted on a Microsoft-controlled site: codeplex.com.—MITCH FRAZIER

Source of Information : Linux Journal Issue 183 July 2009

Written by magakos on July 28th, 2009 with no comments.
Read more articles on otherSoftware and software.

Remove Windows Antivirus Pro - WindowsAntivirus Pro Removal Information

Windows Antivirus Pro is a new rogue antispyware program designed to trick you into thinking that your computer is seriously infected, but in reality application itself is infection. Parasite is promoted via Trojan horses, fake online antimalware scanners and other malware. Once inside and active Windows Antivirus Pro will configure itself to start automatically every boot up. While running Windows Antivirus Pro will perform full system scans and list you variety of infections that cannot be removed until you first purchase licensed version. Also Windows Antivirus Pro will flood your system with numerous fake security alerts informing that your computer is seriously infected. These are examples of alerts:
Security Warning
Your computer continues to be infected with harmful viruses. In order to prevent permanent loss of your information and credit card data theft please activate your antivirus software. Click here to enable protection.

Warning: Infection is Detected
Windows has found spyware infection on your computer!
Click here to update your Windows antivirus software

Type: Rogue Anti-Spyware
Malware Author: Unknown
Threat Level: Critical
Screenshot:

Windows Antivirus Pro Automatical Removal Tool

How to remove Windows Antivirus Pro manually:
It's possible to remove Windows Antivirus Pro manually, but you have to be very experienced in dealing with registry entries, program files and .dll files.

The files to be deleted:

%UserProfile%\Desktop\Windows Antivirus Pro.lnk
%UserProfile%\Start Menu\Programs\Windows Antivirus Pro
%UserProfile%\Start Menu\Programs\Windows Antivirus Pro\Windows Antivirus Pro.lnk
c:\Program Files\Windows Antivirus Pro\
c:\Program Files\Windows Antivirus Pro\ANTI_files.exe
c:\Program Files\Windows Antivirus Pro\msvcm80.dll
c:\Program Files\Windows Antivirus Pro\msvcp80.dll
c:\Program Files\Windows Antivirus Pro\msvcr80.dll
c:\Program Files\Windows Antivirus Pro\Windows Antivirus Pro.exe
C:\Program Files\Windows Antivirus Pro\tmp\
C:\Program Files\Windows Antivirus Pro\tmp\dbsinit.exe
C:\Program Files\Windows Antivirus Pro\tmp\wispex.html
C:\Program Files\Windows Antivirus Pro\tmp\images\
C:\Program Files\Windows Antivirus Pro\tmp\images\i1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\i2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\i3.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\j1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\j2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\j3.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\jj1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\jj2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\jj3.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\l1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\l2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\l3.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\pix.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\t1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\t2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\up1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\up2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\w1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\w11.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\w2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\w3.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\w3.jpg
C:\Program Files\Windows Antivirus Pro\tmp\images\wt1.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\wt2.gif
C:\Program Files\Windows Antivirus Pro\tmp\images\wt3.gif
c:\WINDOWS\ppp3.dat
c:\WINDOWS\ppp4.dat
c:\WINDOWS\svchast.exe
c:\WINDOWS\system32\bennuar.old
c:\WINDOWS\system32\dddesot.dll
c:\WINDOWS\system32\desot.exe
c:\WINDOWS\system32\sysnet.dat


Remove registry entries:

HKEY_CURRENT_USER\Software\Softimer
HKEY_CURRENT_USER\Software\Windows Antivirus Pro
HKEY_CLASSES_ROOT\CLSID\{425882B0-B0BF-11CE-B59F-00AA006CB37D}
HKEY_CLASSES_ROOT\CLSID\{F54AF7DE-6038-4026-8433-CC30E3F17212}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{F54AF7DE-6038-4026-8433-CC30E3F17212}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Win Antivirus Pro
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\AntipPro2009_12
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AntipPro2009_12


Please be careful because manual removal of Windows Antivirus Pro may seriously damage operational system and sensitive data. Also there is a big possibility of incomplete removal, because some files could be hidden and program could re-install itself after you delete files and registry entries. So we strongly recommend you to use automatical removal tool.

Written by admin on July 28th, 2009 with no comments.
Read more articles on trojan horse and rogue antispyware and fake warnings and removal tool and commander and hdrivesweeper and AntiSpyware and spyware and antivirus and Privacy and malware and otherSoftware and Adware and system and Security.

« Older articles

No newer articles