Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Get DOS 8.3 short name with VbScript

0.00/5 (No votes)
3 May 2010 1  
Create a new text file called shortname.vbs:Open in Notepad and paste the following code in it:set fso = CreateObject(Scripting.FileSystemObject) strLongName = Wscript.Arguments(0)strShortName = Invalid File/Folder - ( & strLongName & )Set fsoFile = NothingOn Error Resume...
Create a new text file called shortname.vbs:
Open in Notepad and paste the following code in it:

VBScript
set fso = CreateObject("Scripting.FileSystemObject") 

strLongName = Wscript.Arguments(0)
strShortName = "Invalid File/Folder - (" & strLongName & ")"
Set fsoFile = Nothing

On Error Resume Next

Set fsoFile = fso.GetFile(strLongName)

if Err.number <> 0 then
	Set fsoFile = fso.GetFolder(strLongName)
end if

if fsoFile is not nothing then
	strShortName = fsoFile.ShortPath
end if
Wscript.Echo strShortName


Run the script using cscript:

VBScript
cscript shortname.vbs "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe"

You will then get the following output:
VBScript
C:\PROGRA~1\Adobe\READER~1.0\Reader\AcroRd32.exe

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here