Windows Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOperating SystemsWindows Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #16  
Old July 3rd, 2005, 06:24 PM
eia_hunter eia_hunter is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Arky-Saw, USA
Posts: 27 eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 20 h 41 m 41 sec
Reputation Power: 0
Send a message via MSN to eia_hunter
Managing Windows Services

A service is a process (a running program) that runs from the time Windows boots up to the time Windows shuts down; in contrast, a user process runs from the time the user invokes a program to the time the user terminates the process or the user logs off. Services are useful when a system-wide execution makes more sense than a user-specific execution. For example, the Windows Firewall (ISC) service blocks unwanted network traffic while the operating system is running.

This post focuses on two, built-in tools used to manage the services: the Computer Management GUI and the sc command-line utility. The author of this post is running Windows XP Professional SP2.

Using Computer Management
To start this tool:
1) Right-click on My Computer.
2) Select Manage.

Here you will see a number of useful tools such as user and disk management. The tool of interest is Services and Applications->Services.

This tool will allow you to start/stop services, specify startup parameters, change startup and recovery behavior, edit services' credentials, enable/disable services for each hardware profile, and view dependencies. As an example, you can disable a service by right-clicking on the service and select stop. Wait a few seconds for the service to shutdown, then double-click on the service to bring up its properties dialog. There, change the startup type to disabled. Now, the service, although installed, will not run even after a reboot.

Using sc
To invoke this tool:
1) Click Start->Run.
2) Type cmd and click OK.
3) At the prompt, type sc and press ENTER to view a list of subcommands.

The sc tool provides more options than the Computer Management GUI such as creating/destroying services and changing the description. To create a service, type the following:
C:\> sc create MyService binPath= "c:\path\to\myservice.exe"

Best Practices
1) Only enable the services you need. As with any process, a service takes up resources. Also, more services usually means more administration and possibly less security.
2) Don't give every service administrative/system rights. This is especially important for server applications such as web servers. Change the Log on as property to a restricted user. This way, any security vunerabilities with the service will have less impact on your system.
3) Watch out for dependencies. When disabling or removing a service, check if there are any other services depending on the to-be-stopped service.
Comments on this post
Axweildr agrees: Welcome, and thanks for taking the time
oneMSBi agrees!
edwinbrains agrees!
aitken325i agrees!
Nilpo agrees: Nicely done. Keep up the good work.
Dictionary agrees!

Reply With Quote
  #17  
Old July 4th, 2005, 10:46 PM
0000's Avatar
0000 0000 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2005
Posts: 209 0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 9 h 4 m 52 sec
Reputation Power: 18
Task manager "mini" mode



If your task manager looks like that, most likely, it's not a problem, just double click anywhere in the cream colored area and it should return.

Last edited by oneMSBi : July 26th, 2005 at 02:03 PM. Reason: reduced picture size

Reply With Quote
  #18  
Old July 4th, 2005, 10:53 PM
0000's Avatar
0000 0000 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2005
Posts: 209 0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 9 h 4 m 52 sec
Reputation Power: 18
Hardware abstraction layer correction

If you install a new motherboard in your system, and go to use a Windows install that has already been installed, you may run into some problems. First, you may get a quick flashing blue screen right before the NTOSKRNL.exe loads (aka. the "Boot Screen") In order to fix such a problem, you cannot use a recovery console fix. All you simply have to do is proceed like a normal install. Do not format, select "leave current file system intact" and it will proceed like a normal install, yet leaving all of the installed software and files intact. NOTE: Backup important work/data, this is Windows, a lot can go wrong. The second problem you may run into is an activation issue. If this is the case, you may end up having to re-install, or you can backup the following files from the system32 directory "WPA.dbl, WPA.bak" And then replace them when you are done, this may not always do the trick. Note that this is legal, but if any moderators feel the need to remove it, please do so.


Moderator Note: I think that once you've upgraded your motherboard, there won't be any activation problems - it's the same computer, just with a new motherboard. If you need to activate again, I don't see how Microsoft can have any problems with it since this is a legitimate upgrade. -- Edwin
Comments on this post
oneMSBi agrees: when you change the mobo, there are activation issues. See post #8. I agree +23
Nilpo disagrees: It is not necessary to perform a Windows install when changing a motherboard. See post below.

Last edited by edwinbrains : July 5th, 2005 at 11:20 AM.

Reply With Quote
  #19  
Old July 5th, 2005, 05:30 PM
eia_hunter eia_hunter is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Arky-Saw, USA
Posts: 27 eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level)eia_hunter User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 20 h 41 m 41 sec
Reputation Power: 0
Send a message via MSN to eia_hunter
Windows Won't Boot. Now What?

The three most common reasons why Windows will not boot are mis-configured/mis-used BIOS settings, third-party bootloaders, and bad/missing system files.

Mis-Configured/Mis-Used BIOS Settings:
Most (if not all) BIOS configurations have options for controlling what devices to boot and in what order. One possible arrangement is to boot from floppy drive, then the CD drive, and finally the hard drive; as soon as a bootable device is found, BIOS passes control to that device. Another arrangement is to boot from the network only (read more).

A couple of possibilities of why BIOS is not booting to your local hard drive is BIOS not recognizing your hard drive (see the hardware forums) or it's booting to the wrong device (e.g. the boot CD is still in the drive).

Third-Party Bootloaders:
A third-party bootloader, when installed, will overwrite the MBR (Master Boot Record) stored on the local boot device (hard drive); this record stores a small program that reads the partition tables and transfers program control to a bootloader from the appropriate partition. The partition's bootloader then initiates and transfers control to an operating system. Windows, for example, has its own bootloader, which can either be loaded by the MBR or a third-party bootloader (read more about the boot process).

For Windows XP Professional, there are two commands that can be used to restore the MBR and the Windows bootloader: fixmbr and fixboot; for previous versions, there's FDISK. These commands are only available in the Recovery Console.

Bad/Missing System Files:
System files usually means drivers when it comes to Windows not booting. Either the drivers are corrupted or incompatible with the hardware. One scenario is moving everything from a hard drive from an old computer to a newer model. What may happen then is a blue screen will flash on the screen before rebooting.

There's no definite solution to this problem, just troubleshooting:
1) Try booting into Safe Mode by pressing F8.
2) If you cannot boot into Safe Mode, you'll need to go into the Recovery Console.
3) Recall what was the last software/driver installed and consult its documentation for system files involved (e.g. *.vxd files).
4) Check the boot.ini file located at 'C:\'. In Safe Mode, right-click 'My Computer' and select 'Properties'. In the dialog, select the 'Advanced' tab and click 'Startup and Recovery'->'Settings'. Click the 'Edit' button to bring up a notepad on boot.ini. The contents will typically look like this:
Code:
[boot loader]
timeout=3
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect /NoExecute=OptIn
5) At the Recovery Console, run chkdsk /r.
6) If all else fails, run a repair detailed in oneMSBi's post.

Reply With Quote
  #20  
Old July 17th, 2005, 01:27 PM
oneMSBi's Avatar
oneMSBi oneMSBi is offline
CAUTION: Loderator Moose
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Nov 2004
Location: some starry place (india)
Posts: 3,431 oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 4 Weeks 1 Day 21 h 34 m 19 sec
Reputation Power: 158
Using System Restore, when even safe mode boot fails, in Win XP

The following post assumes you have System Restore enabled (set on by default with a Windows Xp installation)

Sometimes when you install a program or driver, it might render XP unbootable.
If your computer won't boot into the operating system normally, you might be able to boot into Safe Mode and use System Restore to go back to a previous restore point to fix the problem.

If you can't even boot into safe mode Then you need to start the System Restore tool from the command line.
To do so, when booting your computer, press F8 to bring up a boot menu.
1) Select Safe Mode with Command Prompt

2) Select the operating system to start (if you have multiple operating systems installed)

3) Log on with an account that is a member of the administrators group

4) At the command prompt, type
%systemroot%\system32\restore\rstrui.exe
Press Enter This will start the "Welcome to System Restore" screen.

5) Go through the steps of the Wizard that opens and follow the instructions to restore your system to a previous restore point.
Comments on this post
Nilpo agrees: Another nice contribution.
__________________
Nigel
..Seeking code free nirvana...
Nigel Fernandes Blog
Never argue with fools. They will bring you down to their level and beat you with experience.


Manchester United Forever

Reply With Quote
  #21  
Old July 17th, 2005, 02:04 PM
oneMSBi's Avatar
oneMSBi oneMSBi is offline
CAUTION: Loderator Moose
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Nov 2004
Location: some starry place (india)
Posts: 3,431 oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level)oneMSBi User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 4 Weeks 1 Day 21 h 34 m 19 sec
Reputation Power: 158
Reducing PC Slow Down after running a lot of programs

Windows has a DLL caching mechanism that keeps certain Dynamic Link Libraries (DLL files) loaded to help shorten the time it takes to open programs you use often. While this is a good idea in itself, it is only really useful when you use the same programs over and over and open and close them frequently. You'd think that closing a program would free up all resources it takes up when running, but that doesn't happen.

The following method will turn off the DLL Caching "feature" and allow the unloading of all program-related DLL files upon closing the program that loaded them. This can and does in fact free up resources used and can also help gain overall stability of the system, especially if the computer is going to be run for long periods of time without restarting.


For Win9x: Unload DLLs method

1) Go to Start - Run - type in "REGEDIT" without quotes and press enter. The Registry Editor should open up.

2) Now use the left-hand explorer pane to find this key:
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer"

3) In the Right-hand pane, right click in an empty space and choose "New" then "String Value" and name it: "AlwaysUnloadDll" (without quotes and capital letters are important). Give this new string a value of 1

4) close the Registry Editor, and reboot Windows.



For WinXP: Unload DLLs Method

1) Go to Start - Run - type in "REGEDIT" without quotes and press enter. The Registry Editor opens up.

2) Now use the left-hand explorer pane to find this key: "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer"

3) Still in the left-hand pane, right click on the Explorer folder and choose "New" then "KEY". Give it a name of "AlwaysUnloadDLL" (without quotes and capital letters are important). Inside that key change the default string to 1

4) Close regedit and reboot.

This tweak is good for low resource (memory) systems. The drawback of using this is a small slowdown in the initial opening of programs, but in my opinion the benefit of using this tweak far outweighs the drawback.

Reply With Quote
  #22  
Old July 17th, 2005, 02:07 PM
megumi amatuka megumi amatuka is offline
Contributing User
Dev Shed Demi-God (4500 - 4999 posts)
 
Join Date: Jun 2004
Posts: 4,869 megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 2 Months 6 Days 21 h 24 m 42 sec
Reputation Power: 334
How to edit or fiddle with "boot.ini" quite safely for fun!

First, format 2 floppies on XP.
Next, copy, ntldr / boot.ini / NTDETECT.COM ( bootsect.dos / bootfont.bin) to each floppies.

Make sure that you can boot from these floppies

It boots! <---(OO;?(Oh! It booted!)

Along the way, try to apply this floppy to another similar system (e.g. XP on 1st partition of Primary Master.) if available.

As you know now, you have only to edit the boot.ini on the floppy first as you like and apply it for experiment. If it works, then copy it or edit real? boot.ini.

As to actual items of boot.ini, consult the below or so:

http://support.microsoft.com/default.aspx?scid=kb;EN-US;q289022

Apply this floppy to boot any Multi Boot systems by editing boot.ini.
Comments on this post
oneMSBi agrees!
edwinbrains agrees!
aitken325i agrees!

Reply With Quote
  #23  
Old August 30th, 2005, 12:29 PM
aitken325i's Avatar
aitken325i aitken325i is offline
Providing fuel for space ships
Dev Shed God 19th Plane (14000 - 14499 posts)
 
Join Date: Mar 2004
Location: nr Edinburgh, Scotland
Posts: 14,052 aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)aitken325i User rank is General 33rd Grade (Above 100000 Reputation Level)  Folding Points: 10110 Folding Title: Novice Folder
Time spent in forums: 5 Months 3 Weeks 3 Days 11 h 11 m 38 sec
Reputation Power: 3179
How to have a logon like a network user on a home pc

If you would rather replace your Windows 'Welcome' screen when you boot, to a logon screen where you have to press 'Ctrl+Alt+Del' to logon, like you do on a network then this should be what you are looking for ! :

Very first thing you need to do is to turn off your current logon type (Welcome Screen)

1. Click Start
2. Click Control Panel
3. In the Classic View of the Control Panel, double click on User Accounts.
4. Click Change the way users log on or off. If you get a pop-up about "Fast Switching," just click cancel.
5. Uncheck Use Fast User Switching and Use the Welcome Screen
6. Click Apply Options
7. Click on the Guest account
8. Click Turn OFF the Guest Account
9. Close out of the User Accounts windows by clicking the little X.


Now that you have turned off your old logon, now you have to configure your new logon (Ctrl+Alt+Del)

1. Right Click on the TaskBar
2. Click Properties
3. Click the Start Menu tab
4. Click the Radio Button option Start Menu
5. Then click Customize
6. Click the Advanced tab
7. Scroll down and click the Radio Button option under "System Administrative Tools," labeled Display on the All Programs menu and the Start Menu.
8. Click Ok, then click Ok.
9. Now you have to adjust our "preferences." You should be viewing your desktop.
10. Click Start
11. Click Administrative Tools while the rollover menu is still there, click Local Security Policy
12. On the left side of the screen click the + so its a - on the Local Policies menu.
13. Then click on Security Options
14. Then make sure the following is changed to or is the option in bold.
1. Interactive logon: Do not display last user name. Change it to Enabled
2. Interactive logon: Do not require CTRL+ALT+DEL. Change it to Disabled
3. Interactive logon: Message text for users attempting to log on. Change it to anything you want e.g. : "Welcome ! By using this computer you are agreeing to the EULA. Thank you. If you need an account please contact the administrator."
4. Interactive logon: Message title for users attempting to log on: Change it to anything you want, e.g. : Welcome !"
5. System cryptography: User FIPS compliant algorithms for encryption, hashing, and signing. Enabled
6. System objects: Strengthen default permissions of internal system objects (e.g. Symbolic Links) Enabled

Reboot and you should now require to press Ctrl+Alt+Del to logon.
Comments on this post
oneMSBi agrees: excellent
__________________
The No Ma'am commandments:

1.) It is O.K. to call hooters 'knockers' and sometimes snack trays
2.) It is wrong to be French
3.) It is O.K. to put all bad people in a giant meat grinder
4.) Lawyers, see rule 3
5.) It is O.K. to drive a gas guzzler if it helps you get babes
6.) Everyone should car pool but me
7.) Bring back the word 'stewardesses'
8.) Synchronized swimming is not a sport
9.) Mud wrestling is a sport

Reply With Quote
  #24  
Old August 30th, 2005, 01:22 PM
juniperr juniperr is offline
network dude
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Dec 2003
Posts: 1,698 juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level)juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level)juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level)juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level)juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level)juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level)juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level)juniperr User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 2 Weeks 4 h 54 m 26 sec
Reputation Power: 109
Locking XP
actualy in windows XP just hit windowskey and L key at the same time.

view CMD buffer history and scroll through comands
open comand window and hit F7

To image an XP install to multiple machines run sysprep before imaging so new SIDs are created and the XP hardware discovery will re-run at startup. (This is also nice when replacing like a motherboard so it detects the new hardware at reboot.)

Quote:
2. Interactive logon: Do not require CTRL+ALT+DEL. Change it to Disabled

actualy all you have to do is change this to enabled for interactive login

Quote:
Interactive logon: Do not display last user name. Change it to Enabled

This just makes it so last username is not automagicly entered, when enable the username is blank



Make windows login to a domain as a domain user automagicly at bootup..(usefull for public computers so a domain policy can be enforced)
set this setting
Interactive logon: Do not display last user name. Change it to Enabled
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"AutoAdminLogon" = "1"
'DefaultUserName' value username.
'DefaultPassword' password for the user entered above.
add a new string value named 'DefaultDomainName' and set this to the domain of the user. value is name of domain

To make it so user cant bypass auto login name

Value Name: IgnoreShiftOverride
Data Type: REG_SZ (String Value)
Value Data: (1 = Ignore Shift)

Adding registry values to computers in login scipts or just an exacutable...

create batch file that runs a .reg file at login

.reg file example

autologin.reg
Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"AutoAdminLogon"	= "1"
"DefaultUserName"	= "username"
"DefaultPassword"	= "password"
"DefaultDomainName"= "domain"
"ForceAutoLogon"	= "0"          

forceautologin =1 will make it so even when they log out it will log back in as that user
Comments on this post
oneMSBi agrees: Excellent

Last edited by oneMSBi : October 1st, 2005 at 01:38 PM.

Reply With Quote
  #25  
Old October 3rd, 2005, 08:25 PM
0000's Avatar
0000 0000 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2005
Posts: 209 0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level)0000 User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 9 h 4 m 52 sec
Reputation Power: 18
CD-ROM access is missing error Code 31, Code 32, Code 19, Code 39, or Code 41

After you install/remove some CD/Dvd Recording, emmulaton, or service software, your CD rom drives may dissapear from the "My Computer" area, and will be innoperable. The problem is known to specifically be caused by the removal of

InCD,
Roxio,
Daemon Tools,
CDburnerXp,
Direct CD


• In My Computer, there is no access to your CD-ROMs.
• In Device Manager, the following error message appears in connection with any CD-ROM device that is part of your computer system:
The device is not working properly because Windows cannot load the drivers required for this device (Code 31).
• Device Manager displays the following error message:
A driver for this device was not required, and has been disabled (Code 32 or Code 31).
You may also receive an error Code 39 message that indicates that the driver is corrupted.


• Device Manager displays the following error Code 19 message, which means that the registry returned some unknown result:
Your registry might be corrupted. (Code 19)
• You may also receive the following error message:
Windows successfully loaded the device driver for this hardware but cannot find the hardware device. (Code 41)



Solution


1. Start Registry Editor (Regedt32.exe).
2. Locate the UpperFilters value under the following key in the registry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
3. On the Edit menu, click Delete, and then click OK.
4. Locate the LowerFilters value under the same key in the registry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
5. On the Edit menu, click Delete, and then click OK.
6. Quit Registry Editor.NOTE: After you remove the Upperfilters value and the Lowerfilters value, if you notice lost functionality in a particular program, such as CD recording software, you may need to reinstall that software. If the problem recurs, consult with the software vendor for assistance.


7. Restart your computer.



There may be other third-party CD-writing software products that exhibit similar behavior. Some or all of the troubleshooting steps in this article might apply if such a product also adds entries under the UpperFilters or LowerFilters value in the registry, either by adding its own filter drivers or by removing the registry keys and values outlined in this article that begin with:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
Comments on this post
aitken325i agrees: Excellent
oneMSBi agrees: Thankyou mate. This is good info.
PhilCollins99 agrees: Here is the rep I promised some time back!

Reply With Quote
  #26  
Old October 19th, 2005, 05:16 AM
megumi amatuka megumi amatuka is offline
Contributing User
Dev Shed Demi-God (4500 - 4999 posts)
 
Join Date: Jun 2004
Posts: 4,869 megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level)megumi amatuka User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 2 Months 6 Days 21 h 24 m 42 sec
Reputation Power: 334
How to reinstall IE and its Initialization

How to reinstall IE and its Initialization

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed

Components\{89820200-ECBD-11cf-8B85-00AA005B4383}

Then, make the value of "IsInstalled" to "0"

If you want to install OE only,( or another any programs), the same principle may be applied:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed

Components\{44BBA840-CC51-11CF-AAFA-00AA00B6015C}

General Initialization of I.E. for Trouble Shooting

1. General Tab

Cookies Delete > OK
File Delete > Choice
Settings > Set to 10Mb
Clear History > 7
History > delete

2. Security

Push "Default Level"

3. Privacy

Push "Defaultl"<--(^^;?(Can you push?)

4. Content

AutoComplete > push "Clear Form" and "Clear Passwords"

5. Connections

6. Programs

push "Reset Web Settings"

7. Advanced

push "Restore Defaults"

(^^;?(Roughly speaking, done. Defragment recommended. Dedicated to The Calgary Mystery.)

How to clear DNS cache and stop caching

ipconfig /flushdns

net stop dnscache

http://support.microsoft.com/kb/318803/EN-US/

Alicia and Jeff: The Strange Coincidence Mystery Online at Calgary.

http://forums.devshed.com/t296825/s.html
Comments on this post
Axweildr agrees: Ahh, The calgary mystery, the soup thickens ...
aitken325i agrees!

Last edited by megumi amatuka : October 19th, 2005 at 10:26 PM.

Reply With Quote
  #27  
Old October 24th, 2005, 11:19 PM
Dictionary's Avatar
Dictionary Dictionary is offline
Registered User
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Nov 2004
Location: Ottawa, ON
Posts: 2,059 Dictionary User rank is Sergeant Major (2000 - 5000 Reputation Level)Dictionary User rank is Sergeant Major (2000 - 5000 Reputation Level)Dictionary User rank is Sergeant Major (2000 - 5000 Reputation Level)Dictionary User rank is Sergeant Major (2000 - 5000 Reputation Level)Dictionary User rank is Sergeant Major (2000 - 5000 Reputation Level)Dictionary User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 2 Weeks 1 Day 10 h 50 m 52 sec
Reputation Power: 45
How to change the background if you are not given a direct access to the registry editor nor the "desktop>right click>etc..." (from restricted because of novell... thread)

OK, I do not take any responsibility to the possible damages done by the following commands... So use it responsibly.
This would only work if the admins did not block the command prompt. Even then, they might have blocked the reg function. But if both works out for you, good for you.

First, convert the image you want to use as a background to
.bmp (simple...)
Then open the Command Prompt. If you don't have a shortcut, go to
C:\<Windows directory>\System32\cmd.exe
Just check out what's the current background by entering:
reg query "HKCU\Control Panel\Desktop" /v Wallpaper
Then if you're ready, type in
reg add "HKCU\Control Panel\Desktop" /v Wallpaper /t reg_sz /d <directory of the image you want to put>
It will ask you whether you want to overwrite. Type Y and press enter.

Voila! Probably one of the only useful contributions I will make...
Comments on this post
oneMSBi agrees: dang.. did not even see this post till now. good stuff..!
aitken325i agrees!
WaqasQ agrees!

Reply With Quote
  #28  
Old November 16th, 2005, 02:02 AM
Nilpo's Avatar
Nilpo Nilpo is offline
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jan 2004
Location: Salem, OH
Posts: 523 Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)  Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Days 14 h 1 m 20 sec
Reputation Power: 419
Send a message via ICQ to Nilpo Send a message via AIM to Nilpo Send a message via MSN to Nilpo Send a message via Yahoo to Nilpo Send a message via Google Talk to Nilpo Send a message via Skype to Nilpo Send a message via XFire to Nilpo
Facebook MySpace Orkut
Ten Commandments for Your Computer Sanity

Ten Commandments for Your Computer Sanity
  1. Dont assume anything. Make some time to learn about securing your system.
  2. Acquire and use a reliable antivirus program. Select an antivirus that has a consistent track record. Checkmark, AV-Test.org and TuV are among the most respected independent testers of antivirus software.
  3. Acquire and use a reliable firewall solution. Again, independent reviewers are your best bet for reasonable choices. Some operating systems come with a firewall which only filters incoming traffic. Use a firewall that can control both incoming and outgoing Internet traffic.
  4. Do not open e-mails coming from unknown or distrusted sources. Many viruses spread via e-mail messages so please ask for a confirmation from the sender if you are in any doubt.
  5. Do not open the attachments of messages with a suspicious or unexpected subject. If you want to open them, first save them to your hard disk and scan them with an updated antivirus program.
  6. Delete any chain e-mails or unwanted messages. Do not forward them or reply to their senders. This kind of messages is considered spam, because it is undesired and unsolicited and it overloads the Internet traffic.
  7. Avoid installing services and applications which are not needed in day-by-day operations in a desktop role, such as file transfer and file sharing servers, remote desktop servers and the like. Such programs are potential hazards, and should not be installed if not absolutely necessary.
  8. Update your system and applications as often as possible. Some operating systems and applications can be set to update automatically. Make full use of this facility. Failure to patch your system often enough may leave it vulnerable to threats for which fixes already exist.
  9. Do not copy any file if you don't know or don't trust its source. Check the source (provenance) of files you download and make sure that an antivirus program has already verified the files at their source.
  10. Make backups of important personal files (correspondence, documents, pictures and such) on a regular basis. Store these copies on removable media such as CD or DVD. Keep your archive in a different location than the one your computer is in.

* Taken from BitDefender.com.
Comments on this post
aitken325i agrees!
__________________
Don't like me? Click it.

Scripting problems? Windows questions? Ask the Windows Guru!

Stay up to date with all of my latest content. Follow me on Twitter!

Help us help you! Post your exact error message with these easy tips!

Reply With Quote
  #29  
Old November 16th, 2005, 02:04 AM
Nilpo's Avatar
Nilpo Nilpo is offline
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jan 2004
Location: Salem, OH
Posts: 523 Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)  Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Days 14 h 1 m 20 sec
Reputation Power: 419
Send a message via ICQ to Nilpo Send a message via AIM to Nilpo Send a message via MSN to Nilpo Send a message via Yahoo to Nilpo Send a message via Google Talk to Nilpo Send a message via Skype to Nilpo Send a message via XFire to Nilpo
Facebook MySpace Orkut
Disable AU Restart Reminder

So you have Automatic Updates turned because want to stay up to the minute on the latest security releases by Microsoft. It's a good practice, but every now and then your computer automatically downloads and installs and update the requires a system reboot.

Now your system pops up the Restart dialog box to which you choose Restart Later.

A few minutes later another box comes up to remind you to shutdown. Only this one has a countdown timer that will do it for you if you don't stop it. At this point, I'm pretty sure you know that you need to restart, but maybe your knee-deep in work that should've been done hours ago or you're running an app that can't be shutdown at the moment.

How can you stop that pesky little reminder from bothering you?

Some people have suggested running net stop wuauserv from the Run... dialog or Command Prompt. This effectively shuts down the Windows Update service which eliminates that annoying reminder for the rest of your Windows session.

But, is disabling WU altogether a good idea? Probably not. So, here's a better way.
  1. Click Start > Run... and type regedit <enter> to open the Registry Editor.
  2. In the left pane, navigate to the following key:

    HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU

    (Create any keys in the path above that don't exist!)
  3. In the right pane, right-click and choose New > DWORD Value.
  4. Rename it NoAutoRebootWithLoggedOnUsers.
  5. Double-click it and change the Value Data to 1.

Not comfortable playing in the registry? Download and run DisableAUReminder.reg to do it for you!

Presto! Now you're updates will install as usual. You'll be asked to restart, but if you choose to wait, you won't be bothered with it anymore.

NOTE: This registry change doesn't take affect until your computer is restarted, so if you're already receiving the remnider it won't stop it. But it will work for all future updates.

WARNING: Not restarting after updating system files can cause system instability due to version conflicts with running processes. You shouldn't run your system for prolonged periods of time without restarting after an update.

You can view the original thread here on Nilpo.com

Reply With Quote
  #30  
Old November 16th, 2005, 02:08 AM
Nilpo's Avatar
Nilpo Nilpo is offline
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jan 2004
Location: Salem, OH
Posts: 523 Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Nilpo User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)  Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1Folding Points: 214558 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Days 14 h 1 m 20 sec
Reputation Power: 419
Send a message via ICQ to Nilpo Send a message via AIM to Nilpo Send a message via MSN to Nilpo Send a message via Yahoo to Nilpo Send a message via Google Talk to Nilpo Send a message via Skype to Nilpo Send a message via XFire to Nilpo
Facebook MySpace Orkut
Virus Removal Primer

There have been important updates to this primer. Please view the maintained thread at the link below.

Quote:
Originally Posted by Nilpo
Okay, Class, Welcome to Virus Removal 101.

Got a nasty bug you can't get rid of? (The computer kind, I mean, lol) Here's the quickest, easiest way to rid yourself of these headaches. These are general directions regardless of which version of Windows you are using.
  1. Disable System Restore.
  2. Download any removal tools and patches (and my batch file below) and then kill your internet connection. If you are on a high speed connect don't just disable the connection -- actually, physically pull the plug.
  3. Remove any known registry keys. Specifically any found here:
    HKLM\Software\Microsoft\Windows\CurrentVersion\Run
    HKLM\Software\Microsoft\Windows\CurrentVersion\RunServices
    HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce
    HKLM\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce
    HKLM\Software\Microsoft\Windows\CurrentVersion\ShellServiceObjectDelayLoad

    HKLM\Software\Microsoft\Windows\CurrentVersion\Run
    HKLM\Software\Microsoft\Windows\CurrentVersion\RunServices
    HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce
    HKLM\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce
  4. Edit following files as needed (run Sysedit !!!):
    C:\Autoexec.bat
    C:\Windows\Win.ini (Look for strange entries in the [Windows] section)
    C:\Windows\System.ini (Look for strange entries in the [Boot] section)
    C:\Windows\Config.sys (Look for unusual lines beginning with device=)
    C:\Windows\Wininit.ini (you can usually just delete this one)
  5. Disable any screensavers by selecting none.
  6. Be sure the SfcScan DWORD value is set to 0 under
    HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
  7. Be sure the Shell STRING value set to explorer.exe without any trailing characters under
    HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
  8. Be sure the Userinit STRING value set to C:\Windows\System32\Userinit.exe, without any trailing characters under
    HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon
    Don't forget the trailing comma. This path should be adjusted to match your system directory.
  9. Delete unusual links from the Startup folder under Programs (or All Programs) on the Start Menu.
  10. End any unneeded processes in Windows Task Manager (including AV services which can sometimes lock deleting files).
  11. Run Windows Cleanup Wizard with all items checked (except Compress Files) and delete everything.
  12. Reboot into Safe Mode as Administrator
  13. Run my SysClean.vbs (right-click and Save As...) or SysClean.exe batch file.
  14. Run any removal tools and/or delete the virus process files cleaning infected files whenever possible.
  15. Install any patches or hotfixes.
  16. Run "sfc /scannow" to check the integrity of your system files.
  17. Reboot in Normal Mode
  18. Re-enable System Restore.
  19. Install or enable a good firewall
  20. Reconnect to the internet and run Windows Update.
  21. Create a Restore Point if using System Restore.

My downloads are provided as freeware with no warranty expressed or implied. Please don't hold me responsible for any damages. They are provided as a means of automation for your convenience only. I have tested them without any problems.


Please check the original thread on DevH Forums for updates.
Comments on this post
oneMSBi agrees: excellent
edwinbrains agrees!
Axweildr agrees!

Last edited by nilpo : December 3rd, 2005 at 04:50 AM. Reason: Important Updates

Reply With Quote
Reply

Viewing: Dev Shed ForumsOperating SystemsWindows Help > Useful Windows Information


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek