Your best source of information and news about windows, Vista hardware and drivers on the internet

December 23rd, 2008

You are currently browsing the articles from MS Windows Vista Compatible Software written on December 23rd, 2008.

Put Back Network Connections & Display Settings Applets In Windows Vista Control Panel

After switching from XP to Windows Vista, you might have noticed that there are no Network Connection and Display Settings applets present in Vista Control Panel. Thought most of us use run commands to open Network Connections (ncpa.cpl) and also Display Settings (desk.cpl) it would be good to see both applets back in the Control Panel of Vista again.

You need to do a simple change to Windows registry to make this happen. Follow the below procedure:

1. Type regedit either in Start menu search box or in Run dialog box and hit enter to open Windows Registry editor.

2. Next browse to the following key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\don’t load

3. Here you need to delete two keys from the right-side pane: desk.cpl and ncpa.cpl

4. Close Windows Registry editor and open Control Panel to view new Network Connections and Display Settings applets.

Note: You can delete other items like firewall.cpl (adds Firewall applet) and appwiz.cpl (adds Add/remove applet) to get those icons back in Control Panel.[Via IntoWindows]

Related :
Fix Local Access and Unidentified Network Issue in Windows Vista
How to Speed up wireless WAN connections

Written by ShaDow on December 23rd, 2008 with no comments.
Read more articles on otherSoftware and Windows vista tips.

Remove Virus Remover 2008 - Virus Remover 2008 Removal Instructions

Virus Remover 2008 is latest counterfeit security tool, a clone of well known Antivirus 2008. Virus Remover 2008 is a type of software that cannot be removed through handy uninstall feature. It can easily re-install itself .
Virus Remover 2008 uses tupical methods to get onto your computer, usualy with help of Vundo Trojan or Virus. Once Virus Remover 2008 get in touch with your system it will flood your computer with fake security alarms, pop-ups. Also it can perform system scan, and list variety of threats detected on your pc. And the only way to remove all threats from your computer is to purchase licensed version of Virus Remover 2008. But remember Virus Remover 2008 is scam software , and licensed version will not remove any thrats, instead it can put in danger your data and privacy.
We strongly recommend to remove Virus Remover 2008 manualy or using -

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

Screenshot:

Virus Remover 2008 Automatical Removal Tool

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

The files to be deleted:

* %program_files%\virusremover2008\vrm2008.exe
* vrm_free.exe
* %common_programs%\virusremover2008\virusremover2008.lnk
* %desktopdirectory%\virusremover2008.lnk
* %profile%\application data\microsoft\internet explorer\quick launch\virusremover2008.lnk
* %program_files%\virusremover2008\vrm2008.exe
* vrm_free.exe
*%program_files%\virusremover2008


Remove registry entries:

* HKEY_CURRENT_USER\Software\VirusRemover2008
* HKEY_CURRENT_USER\Software\{5222008A-DD62-49c7-A735-7BD18ECC7350}
* HKEY_LOCAL_MACHINE\SOFTWARE\VirusRemover2008
* HKEY_LOCAL_MACHINE\SOFTWARE\{5222008A-DD62-49c7-A735-7BD18ECC7350}
* HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run "VirusRemover2008"
* HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusRemover2008
* Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\VirusRemover2008
* VirusRemover2008


Please be careful because manual removal of Virus Remover 2008 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. -="-?item=11719-8&.&linkid=mravirr8">-.

Written by admin on December 23rd, 2008 with no comments.
Read more articles on trojan horse and rogue antispyware and fake warnings and removal tool and vundo and AntiSpyware and spyware and otherSoftware and malware and Virus and 2008 and Adware and antivirus.

sudo: Running a Command with root Privileges

Classically a user gained root privileges by logging in as root or by giving an su (substitute user) command and providing the root password. When an ordinary user executed a privileged command in a graphical environment, the system would prompt for the root password. More recently the use of sudo (www.sudo.ws) has taken over these classic techniques of gaining root privileges.

As installed, Ubuntu locks the root account by not providing a root password. This setup prevents anyone from logging into the root account (except when you bring the system up in recovery mode). There is, however, a root account (a user with the username root—look at the first line in /etc/passwd). This account/user owns files (give the command ls –l /bin) and runs processes (give the command ps –ef and look at the left column of the output). The root account is critical to the functioning of an Ubuntu system. The sudo utility enables you to run a command as though it had been run by a user logged in as root.

Ubuntu strongly encourages the use of sudo. In fact, as shipped, Ubuntu locks the root account (there is no password) so you cannot use the classic techniques. There are many advantages of using sudo over using the root account for system administration:

• When you run sudo, it requests your password—not the root password— so you have to remember only one password.

• The sudo utility logs all commands it executes. This log can be useful for retracing your steps if you make a mistake and for system auditing.

• The sudo utility allows implementation of a finer-grained security policy than does the use of su and the root account. Using sudo, you can enable specific users to execute specific commands—something you cannot do with the classic root account setup.

• Using sudo makes it harder for a malicious user to gain access to a system. When there is an unlocked root account, a malicious user knows the username of the account she wants to crack before she starts. When the root account is locked, the user has to determine the username and the password to break into a system.

Some users question whether sudo is less secure than su. Because both rely on passwords, they share the same strengths and weaknesses. If the password is compromised, the system is compromised. However, if the password of a user who is allowed by sudo to do one task is compromised, the entire system may not be at risk. Thus, if used properly, the finer granularity of sudo’s permissions structure can make it a more secure tool than su. Also, when sudo is used to invoke a single command, it is less likely that a user will be tempted to keep working with root privileges than if the user opens a root shell with su.

Using sudo may not always be the best, most secure way to set up a system. On a system used by a single user, there is not much difference between using sudo and carefully using su and a root password. In contrast, on a system with several users, and especially on a network of systems with central administration, sudo can be set up to be more secure than su. If you are a dyed-in-the-wool UNIX/Linux user who cannot get comfortable with sudo, it is easy enough to give the root account a password and use su.

When you install Ubuntu, the first user you set up is included in the admin group. As installed, sudo is configured to allow members of the admin group to run with root privileges. Because there is no root password, initially the only way to perform privileged administrative tasks from the command line is for the first user to run them using sudo. Graphical programs call other programs, such as gksud, which in turn call sudo for authentication.


Timestamp
By default, sudo asks for your password (not the root password) the first time you run it. At that time, sudo sets your timestamp. After you supply a password, sudo will not prompt you again for a password for 15 minutes, based on your timestamp.


sudo’s environment
The pwd builtin in the preceding example shows one aspect of the modified environment the –i option creates. This option spawns a root login shell (a shell with the same environment as a user logging in as root would have) and executes root’s startup files. Before issuing the sudo –i command, the pwd builtin shows /home/sam as Sam’s working directory; after the command it shows /root, root’s home directory, as the working directory. Use the –s option to spawn a root shell without modifying the environment. When you call sudo without an option, it runs the command you specify in an unmodified environment. To demonstrate, the following example has sudo run pwd without an option. The working directory of a command run in this manner does not change.


Redirecting output
The following command fails because, although the shell that sudo spawns executes ls with root privileges, the nonprivileged shell that the user is running redirects the output. The user’s shell does not have permission to write to /root. There are several ways around this problem. The easiest is to pass the whole command line to a shell running under sudo: The bash –c option spawns a shell that executes the string following the option and then terminates. The sudo utility runs the spawned shell with root privileges. You can quote the string to prevent the nonprivileged shell from interpreting special characters. You can also spawn a root shell with sudo –i, execute the command, and exit from the privileged shell.


Options
You can use command line options to control how sudo runs a command. Following is the syntax of an sudo command line:

sudo [options] [command]

where options is one or more options and command is the command you want to execute. Without the –u option, sudo runs command with root privileges. Some of the more common options follow; see the sudo man page for a complete list.

–b (background) Runs command in the background.

–i (initial login environment) Spawns the shell that is specified for root (or another user specified by –u) in /etc/passwd, running root’s (or the other user’s) startup files, with some exceptions (e.g., TERM is not changed). Does not take a command.

–k (kill) Resets the timestamp (page 491) of the user running the command, which means the user must enter a password the next time she runs sudo.

–L (list defaults) Lists the parameters that you can set on a Defaults line (page 497) in the sudoers file. Does not take a command.

–l (list commands) Lists the commands the user who is running sudo is allowed to run on the local system. Does not take a command.

–s (shell) Spawns a new root (or another user specified by –u) shell as specified in the /etc/passwd file. Similar to –i but does not change the environment. Does not take a command.

–u user Runs command with the privileges of user. Without this option sudo runs command with root privileges.

Source of Information : McGraw Hill Osborne Media How to Do Everything Ubuntu

Written by magakos on December 23rd, 2008 with no comments.
Read more articles on Ubuntu Linux and otherSoftware.

Pressure mounts for Microsoft to deliver with Windows 7

Nearly two years after introducing Vista, Microsoft (MSFT) is grappling with an unanticipated phenomenon: The latest version of its flagship Windows computer operating system remains a rarity in corporate settings. As a result, the software giant finds itself under acute pressure to stay on track with plans to replace Vista with the next version of Windows, code-named Windows 7, perhaps as soon as late 2009.

With the global economy stalling out — and with Apple Macs increasingly replacing Windows desktops and laptops in workplace settings — Microsoft can ill afford a repeat of the delays that beset the introduction of Vista. "They have to get Windows 7 right — and get it right the first time," says Laura DiDio, principal analyst at tech research firm ITIC

ITIC and Sunbelt Software surveyed 700 senior executives and found only 10% had deployed Vista in their organizations. Windows XP remained the primary desktop PC operating system for 88% of the respondents. Meanwhile, 77% reported some use of Macs, and 50% said they plan to permit wider use of Apple products, including the iPhone.

Monday, in a nod to those who don't want to switch to Vista now, Microsoft said it would continue letting smaller PC makers order XP through Jan. 31 for delivery through May.

FIND MORE STORIES IN: Microsoft | PCs | iPhone | Windows XP | Gartner | Windows Vista | Charles King | Apple Macintosh | Michael Silver | Laura DiDio | Sunbelt Software | Pund-IT
Even so, revenue from Microsoft's client division, which includes Vista, rose 13% to $16.9 billion in its 2008 fiscal year, ended June 30. Operating income rose 14% to $13.1 billion. That's partly because corporations paid Microsoft to access Vista but then chose not to use it.

Many tech managers remain wary of Vista's reputation for crashing programs. "Vista's main problem is lack of compatibility with other applications," says DiDio.

Shanen Boettcher, general manager of Windows product management, says Vista has been refined and now works well with most business applications. Today, "nearly nine of 10 people who actually run Windows Vista say they enjoy it and are favorable," he says.

Microsoft's big challenge: Get corporate buyers to embrace Windows 7. The economic slowdown won't make that any easier, says Charles King at tech research firm Pund-IT. "As money tightens and the recession deepens, both consumers and businesses will do everything they can to avoid purchases," says King.

Tech buyers who postpone replacing aging PCs risk cutting themselves off from newer software designed for Windows 7, says Michael Silver, Gartner tech industry analyst. "You could end up with too much Windows XP, too late in its life," he says.

"There is a very good probability of Windows 7 shipping early, in time for holiday sales in 2009," Silver says. "Strong sales of new PCs will allow Windows 7 to get off to a good start."

Written by Sekhy! on December 23rd, 2008 with no comments.
Read more articles on otherSoftware and windows 7 and release and Microsoft.

Windows 7 - The Linux Killer

Microsoft has long been worried about Linux competition in the server market. When it came to ordinary PCs and laptops, however, it knew it had little to fear.

But that was then. Now Microsoft may fear Linux on the desktop as much as it does the Mac. It's finally taking Linux seriously as a desktop operating system, and it has designed Windows 7 to kill it.

The threat to Windows comes entirely from "netbooks" -- lightweight, inexpensive laptops that typically use Intel's low-powered Atom processor and don't come with substantial amounts of RAM or powerful graphics processors. They're designed mainly for browsing the Web, handling e-mail, writing memos, and taking care of simple word-processing or spreadsheet chores.

Netbooks will account for about a third of all PC growth this year, according to Citigroup. Shipments will rise at an annual average rate of 60% to reach 29 million netbooks in 2010, compared with 18% growth for standard notebooks, says a September BNP Paribas report.

Clearly, the future is in netbooks. And that has Microsoft worried. Netbooks can't handle Vista's hardware demands, so XP is the only Microsoft operating system that runs on them. But Linux is ideally suited for lower-powered netbooks.

The result? Acer and Asustek, which account for 90% of the netbook market, are using Linux on about 30% of their low-cost notebooks, according to Bloomberg. Making matters worse, if Linux is used on those netbooks, it means that Microsoft Office isn't. So Microsoft takes a double hit every time someone buys a Linux netbook.

Microsoft isn't just worried about ceding 30% of the netbook market to Linux. It's also worried that if people get used to running Linux on netbooks, they'll consider buying Linux on desktop PCs as well. Here's what Dickie Chang, an analyst at IDC in Taipei, told Bloomberg: "It's a real threat to Microsoft. It gives users a chance to see and try something new, showing them there is an alternative."

Microsoft may fear Linux on the desktop as much as it does the Mac. Microsoft, though, has a not-so-secret weapon against Linux: Windows 7. Its new operating system, slated to be introduced sometime next year, is designed to work fine on netbooks. In fact, at Microsoft's recent Professional Developers Conference, where the pre-beta of Windows 7 was unveiled, Windows Senior Vice President Steve Sinofsky showed off Windows 7 on his Lenovo S10 and said it used less than half of the netbook's 1GB of RAM.

When Windows 7 ships, expect a massive marketing blitz pushing it on netbooks with special deals, and netbook hardware taking advantage of Windows 7 capabilities, including touch screens.

Despite Microsoft's killer instincts, I don't think Linux netbook sales will stop dead. There will always be a niche for them. But within a year of the Windows 7 launch, Linux market share will drop. The high point for Linux netbook sales will be from now until the launch of Windows 7. After that will come the inevitable decline.

Written by Sekhy! on December 23rd, 2008 with no comments.
Read more articles on LINUX killer and otherSoftware and windows 7.

Windows 7 build 7004

Windows 7 Build 7004



A screenshot of Windows 7 build 7004 appeared on the Internet. It was uploaded by Scott Wylie, NZ Director of Developer & Platform Strategy. He mentioned that he installed this pre-beta release of Windows 7 and started playing around with it. Now this interesting tidbit could either mean that the planned beta release will have a build number higher than 7004 or that Scott got it confused and was already working with a post-beta 1 build.

Written by Sekhy! on December 23rd, 2008 with 1 comment.
Read more articles on windows 7 screenshots and windows 7 build 7004 and windows 7 news and windows 7 BETA and otherSoftware and windows 7.

« Older articles

No newer articles