0 - WindowsFolder, containing the files installed by the operating system.1 - SystemFolder, containing fonts, libraries and device drivers required by the operating system.2 - TemporaryFolder, used to store temporary (.TMP) files.
Code:<% dim filesys, f Set filesys = CreateObject("Scripting.FileSystemObject") Set f = filesys.GetSpecialFolder(1) Response.Write ("The path to your System folder is '" & f & "'." ) %>