Posted in General

How can I suppress the standard machine beep noise in Windows 2000 and later?

Even if you mute your system, certain events will still trigger the system beep. To suppress these system-level beeps, perform the following steps: Start a registry editor (e.g., regedit.exe). Navigate to the HKEY_CURRENT_USERControl PanelSound subkey. Double-click Beep, set the value to “no”, and click OK. Close the registry editor. Log off and log on for […]

How do I get ANSI support on the command line?

To get ANSI support, perform the following steps: Create a shortcut to command.com. Create a file called ansi.nt. Include the following lines in the ansi.nt file: dosonly device=%systemroot%system32ansi.sys device=%SystemRoot%system32himem.sys files=40 dos=high,umb Under Properties for the command.com shortcut, go to the Programs tab. In the Config Path field, enter the path to ansi.nt. Now when you […]

How can I install the Microsoft Java Virtual Machine (JVM) without having to restart the computer?

A typical JVM installation requires that you reboot your machine and alerts you to any problems the installer encountered. However, you can use the /q and /qq switches to control the reboot requirement and the reporting of any problems. To prevent the installation from rebooting the system but still have it notify you of any […]

Why can’t I use the CD command to change directories to a Universal Naming Convention (UNC) path in a command window?

When you attempt to use the CD command to change directories to a UNC path, you receive the following error: CMD does not support UNC paths as current directories. Although you can map a drive, use the CD command to change to the new drive, then disconnect after you’re done working in the UNC location, […]

How can I configure Notepad to remember Page Setup settings?

Notepad lets you configure document-specific settings (e.g., margins, page orientation, header and footer), which you access by selecting the Page Setup option from the File menu. However, Notepad reverts to using default Page Setup settings every time you restart the program. To configure Notepad to remember your Page Setup settings, perform the following steps: Start […]

How can I configure a services start-up type from the command line?

You typically use the Services GUI in Windows to configure a services start-up type, but you can also use the SC command to set the start-up type from the command line: “sc config [service name] start=[mode]” For example, sc config msexchangeimc start=auto automatically starts the exchangeIMC service when you boot the system.

How can I prevent Windows Media Player (WMP) 8.0 and later from maintaining a recent-files list?

The WMP File menu lists your most recently played files. If you don’t want WMP to maintain this list, perform the following steps: Start a registry editor (regedit.exe). Navigate to the HKEY_CURRENT_USERSoftwareMicrosoftMediaPlayerPreferences registry subkey. From the Edit menu, select New, Binary Value. Enter a name of AddToMRU, then press Enter. Double-click the new value, set […]

How can I disable the F3 key search capability for Windows Explorer and Microsoft Internet Explorer (IE)?

To disable the F3 key search capability, perform the following steps: Start a registry editor (e.g., regedit.exe). Navigate to the HKEY_CURRENT_USERSoftwarePoliciesMicrosoftInternet ExplorerRestrictions registry subkey. If this subkey doesn’t exist, open the Edit menu and select New, Key to create it. From the Edit menu, select New, DWORD Value. Enter the name NoFindFiles, then press Enter. […]

I have lost the ADMIN$ share.

A. A. If you have configured the system to not automatically create system shares at start-up time by setting the relevant registry entry AutoSharexxx then this share will not be created as that is what you are asking. If however you do not have this set and you have just lost the ADMIN$ share which […]

Is it possible to map a drive letter to a directory?

You can use the SUBST command to map a pseudo drive letter to drive/directory subst r: d:winntsystem32 would map the letter r to the directory winntsystem32 on the d: drive.