icon

Feb 1, 2010

Computer Restarts at Windows XP Loading Screen

Computer Restarts at Windows XP Loading स्क्रीन

Computer restarting at the windows loading screen. Now this was a unique problem since I couldn’t tweak any of the windows settings without first getting into it, and in this case, this was impossible. After a few hours of research I concluded that the trouble is caused by damaged kernel32.dll file, so I simply extracted a new copy of kernel32.dll from the windows xp cd to my friend’s laptop and it started working fine again. Here’s a step by step procedure to do the same-
1. Start the recovery ronsole from the windows boot options menu. If you don’t have the recovery console installed, then start the recovery console from windows xp cd, like this,
a. Insert the windows xp cd into the cd drive and restart the computer to boot from this cd.
b. Follow all the prompts during the text based part of the windows xp setup. Choose recover or repair option by pressing R.
c. Type the administrator’s password when prompted.
2. Now you will be at command prompt. Type cd system32 and press enter
3. Then type ren kernel32.dll kernel32.old and press enter
4. Now type map and then press enter.
5. Now note the drive letter that is assigned to assigned to the cd drive that contains the windows xp cd. It will be displayed in a format similar to this,
D:\Device\CdRom0
6. Type
Expand D:\i386\kernel32.dl_
where D is the drive letter of the cd drive that contains the windows xp cd. This may be different for your computer. See the output of step 5 to find out what is the drive letter for your computer. (Also, note the underscore character after the “l” in kernel32.dl_)
The following message will be displayed after the above command,
Kernel32.dll, 1 file(s) expanded.
7. Type exit to restart the computer.
Hopefully this will solve the problem of computer restarting at the loading screen. If not, then use comments below to post your special case.

Attrib Command

Microsoft Windows 95, 98, and ME syntax

Displays or changes file attributes.

ATTRIB [+R | -R] [+A | -A] [+S | -S] [+H | -H] [[drive:][path]filename] [/S]

+Sets an attribute.
-Clears an attribute.
RRead-only file attribute.
AArchive file attribute.
SSystem file attribute.
HHidden file attribute.
/SProcesses files in all directories in the specified path.

Microsoft Windows 2000 and Windows XP syntax

Displays or changes file attributes.

ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [[drive:] [path] filename] [/S [/D]]

+Sets an attribute.
-Clears an attribute.
RRead-only file attribute.
AArchive file attribute.
SSystem file attribute.
HHidden file attribute.
/SProcesses files in all directories in the specified path.
/DProcess folders as well.

Microsoft Windows 2000 and Windows XP recovery console syntax

Note: The below options are the available options in the Windows recovery console.

Changes attributes on one file or directory.

ATTRIB -R | +R | -S | +S | -H | +H | -C | +C filename

+Sets an attribute.
-Clears an attribute.
RRead-only file attribute.
SSystem file attribute.
HHidden file attribute.
CCompressed file attribute.

Examples

attrib

Typing attrib by itself will display all files in the current directory and each of their attributes. If any file is hidden it will also display those files.

attrib +r autoexec.bat

Add the read-only attribute to the autoexec.bat file so it cannot be modified until the read only attribute is taken off. This is helpful for important system files or any other file that you do not want to have mistakenly edited or changed by another program.

attrib +h config.sys

Add the hidden attribute to the config.sys file causing it to be not be seen by the average user.

attrib -h config.sys

This command will do the opposite of the above command. Instead of hiding the file it will unhide the file if hidden.

Jan 25, 2010

Windows Script Host Settings

Please follow the below steps-
START-->RUN-->REGEDIT---->OK
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Script Host\Settings]

Enable (REG_DWORD): '0' - disabled; '1' - enabled;
Remote (REG_DWORD): '0' - disables remote scripts; '1' - enables remote scripts;
DisplayLogo (REG_SZ): '0' - no logo; '1' - display logo;

Jan 13, 2010

Windows XP-based network computer: "You might not have permission to use this network resource"

To resolve this issue, set the value of the restrictanonymous registry entry to 0. To do this, follow these steps:

1. Click Start, click Run, type regedit, and then click OK.
2. Locate and then double-click the following registry subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
3. On the right side, double-click restrictanonymous.
4. Make sure that the value in the Value data box is set to 0, and then click OK.
5. Close Registry Editor.
6. Restart the computer.