Showing posts with label Desktop. Show all posts
Showing posts with label Desktop. Show all posts

Sunday, March 2, 2014

Computer Protection Basics

The same advice parents might deliver to young drivers on their first solo journey applies to everyone who wants to navigate safely online. The basics are the following:
  • "Don't drive in bad neighborhoods."
  • "If you don't lock your car, it's vulnerable; if you don't secure your computer, it's vulnerable."
  • "Reduce your vulnerability, and you reduce the threat."

Below are some key steps to protecting your computer from intrusion:


Keep Your Firewall Turned On



A firewall helps protect your computer from hackers who might try to gain access to crash it, delete information, or even steal passwords or other sensitive information. Software firewalls are widely recommended for single computers. The software is prepackaged on some operating systems or can be purchased for individual computers. For multiple networked computers, hardware routers typically provide firewall protection.


Install or Update Your Antivirus Software



Antivirus software is designed to prevent malicious software programs from embedding on your computer. If it detects malicious code, like a virus or a worm, it works to disarm or remove it. Viruses can infect computers without users' knowledge. Most types of antivirus software can be set up to update automatically.


Install or Update Your Anti-Spyware / Anti-Malware Technology



Spyware is just what it sounds like—software that is surreptitiously installed on your computer to let others peer into your activities on the computer. Some spyware collects information about you without your consent or produces unwanted pop-up ads on your web browser. Some operating systems offer free spyware protection, and inexpensive software is readily available for download on the Internet or at your local computer store. Be wary of ads on the Internet offering downloadable antispyware—in some cases these products may be fake and may actually contain spyware or other malicious code. It's like buying groceries—shop where you trust.


Keep Your Operating System Up to Date



Computer operating systems are periodically updated to stay in tune with technology requirements and to fix security holes. Be sure to install the updates to ensure your computer has the latest protection.


Be Careful What You Download



Carelessly downloading e-mail attachments can circumvent even the most vigilant anti-virus software. Never open an e-mail attachment from someone you don't know, and be wary of forwarded attachments from people you do know. They may have unwittingly advanced malicious code.


Turn Off Your Computer



With the growth of high-speed Internet connections, many opt to leave their computers on and ready for action. The downside is that being "always on" renders computers more susceptible. Beyond firewall protection, which is designed to fend off unwanted attacks, turning the computer off effectively severs an attacker's connection—be it spyware or a botnet that employs your computer's resources to reach out to other unwitting users.


Wednesday, February 12, 2014

desktop.ini

Problem:

After you turn on your computer the desktop loads and...


Notepad Starts With "[.ShellClassInfo] LocalizedResourceName=@%SystemRoot%\System32\Shell32.dll,-21787" When You Start Your Computer

Solution:
  

1. Open Windows Explorer, then click on Organize -> Folder and Search Options.
2. Go to View tab.
3. Under “Hidden files and folders” tree, select Show hidden files, folders and drives.
4. Uncheck Hide protected operating system files in order to be able to view the hidden desktop.ini file.
5.Click OK when done.
6. Navigate to C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup folder, or alternatively, just type shell:common startup in Start Search and hit Enter.
7. Delete desktop.ini file inside the folder.
8. Navigate to C:\Users\USERNAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup folder, or alternatively, just type shell:startup in Start Search and hit Enter.
9. Delete desktop.ini file inside the folder.
10. The bug has been fixed, and no Notepad window with desktop.ini will appear on reboot or startup anymore.

Windows 7 Desktop Goes Crazy

Problem:
Computer works fine only that when you click the desktop icons like My Computer, Documents...
the windows are opened MINIMIZED. The opened windows won't MAXIMIZE.

Even running Windows Explorer and regedit still loads MINIMIZED 


Solution:


1. Create a batch file with the following lines:


@echo off
cls
:: To reset all folders to default folder views
Reg Delete "HKCU\Software\Microsoft\Windows\Shell\BagMRU" /F
Reg Delete "HKCU\Software\Microsoft\Windows\Shell\Bags" /F

Reg Delete "HKCU\Software\Microsoft\Windows\ShellNoRoam\Bags" /F

Reg Delete "HKCU\Software\Microsoft\Windows\ShellNoRoam\BagMRU" /F

Reg Delete "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F

Reg Delete "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

Reg Delete "HKCU\Software\Classes\Wow6432Node\Local Settings\Software\Microsoft\Windows\Shell\Bags" /F

Reg Delete "HKCU\Software\Classes\Wow6432Node\Local Settings\Software\Microsoft\Windows\Shell\BagMRU" /F
:: To kill and restart explorer
taskkill /f /im explorer.exe
start explorer.exe

2. Save the file and name it like: 'resetmydesktop.bat'


3. Run the batch file.