To be backword compatible with 16-bit FAT partitions, both the VFAT and the NTFS file systems create two names for each file, the long filename and a short filename compatible with the FAT file system.
Welcome to Bucaro TecHelp!

Welcome to Bucaro TecHelp!
Maintain Your Computer and Use it More Effectively
to Design a Web Site and Make Money on the Web

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact Advertise on Bucaro TecHelp Advertise Here RSS News Feeds News Feeds


Computer Repair with Diagnostic Flowcharts

Troubleshoot PC Hardware Problems With Flowcharts

This manual for troubleshooting PC hardware problems creates a visual expert system for diagnosing component failure and identifying conflicts.

The seventeen diagnostic flowcharts at the core of this book are intended for the intermediate to advanced hobbyist, or the beginning technician.

Click Here

Disable Long Filenames to Improve Window's Performance

Starting with Windows 95, Microsoft introduced the Virtual File Allocation Table (VFAT). VFAT provided 32-bit disk access and long filenames (up to 255 characters). A long filename can include characters that are illegal in an MS-DOS compatible 8.3 file name, like spaces and dots.

To be backword compatible with 16-bit FAT partitions, both the VFAT and the NTFS file systems create two names for each file, the long filename and a short filename compatible with the FAT file system.

Note: The MS-DOS compatible 8.3 file name is created by taking the first six characters of the long filename (ignoring spaces), add "~1 (or higher number) and then using the first three letters after the last period as the file extension.

If you have no legacy 16-bit programs or hardware devices installed on your computer, the 8.3 file names are not neccessary. Disabling 8.3 file name creation can increase the performance of NTFS partitions. Below is a simple script you can use to check and configure the registry key NtfsDisable8dot3NameCreation.

Dim wshShell, RegKey
Set wshShell = Wscript.CreateObject("Wscript.Shell")

RegKey = "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem"

If wshShell.RegRead(RegKey & "NtfsDisable8dot3NameCreation") Then
If MsgBox("NtfsDisable8dot3NameCreation = 1, Set to 0?", vbQuestion + vbYesNo, "NtfsDisable8dot3NameCreation") = vbYes Then
wshShell.regWrite RegKey & "NtfsDisable8dot3NameCreation", 00000000, "REG_DWORD"
End If
Else
If MsgBox("NtfsDisable8dot3NameCreation = 0, Set to 1?", vbQuestion + vbYesNo, "NtfsDisable8dot3NameCreation") = vbYes Then
wshShell.regWrite RegKey & "NtfsDisable8dot3NameCreation", 00000001, "REG_DWORD"
End If
End If

Paste this script into Windows Notepad and save the file with the name dis8dot3.vbs. Double click on the file name to execute it and a popup message box will display the value of the NtfsDisable8dot3NameCreation key on your computer and ask if you want to change it. If the NtfsDisable8dot3NameCreation key is set to one, clicking on the Yes button will change it to zero. If it's set to zero, clicking on the Yes button will change it to one.

When you restart Windows, the new configuration will take effect.

To learn more, download the free ebook Use the Windows Scripting Host to Master Your Computer.

Note: The script in this article is provided AS IS without warranty of any kind. Bucaro TecHelp disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use of the script remains with you. To be safe, you should make a backup copy of your computers registry before using this script. In no event shall Bucaro TecHelp be liable for any damages whatsoever arising out of the use of or inability to use this script.

RSS Feed RSS Feed



Computer Sections

Windows

Here's the information you need to not only prepare for the MCITP certification exams as a Windows 7 desktop support technician or administrator, but also to excel in your job.

From successfully troubleshooting individual desktops to planning and configuring Windows 7 desktop infrastructures on a broad scale, this reference explores the real-world tasks and scenarios you'll face on the job and shows you step by step how to handle them.

Reader Bill Talbott says, "The author has an innate ability to break out complex and often boring topics and make them interesting to the end reader. His writing style, combined with the exercises throughout this text, ensure complete understanding of each topic...

Click here for more information.


TigerDirect
[Site User Agreement] [Advertise on This site] [Search This Site] [Contact Form]
Copyright©2001-2011 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268