Environment.SystemDirectory Property gets the fully qualified path of the system directory.
Imports System Class Sample Public Shared Sub Main() Console.WriteLine("SystemDirectory: {0}", Environment.SystemDirectory) End Sub 'Main End Class 'Sample