Converting the FileSystemObject's RootFolder Property

Definition: Returns the root folder of the specified drive.

RootFolder

In this example we’re using the Get-PSDrive cmdlet to retrieve a reference to the drive we want to find, in this case C. After retrieving the drive, we check the Root property to find the root folder of that drive:

(Get-PSDrive c).root

See conversions of other FileSystemObject methods and properties.
Return to the VBScript to Windows PowerShell home page