Straight conversion. Untested. Try it and see how far you get.

 Code:
$olFolderInbox = 6

$objOutlook = CreateObject("Outlook.Application")
$objNamespace = $objOutlook.GetNamespace("MAPI")
$objFolder = $objNamespace.GetDefaultFolder($olFolderInbox)

$strFolderName = $objFolder.Parent
$objMailbox = $objNamespace.Folders($strFolderName)

$objNewFolder = $objMailbox.Folders.Add("Employee Directory")
$objNewFolder.WebViewURL = "http://192.168.61.100/StaffView"
$objNewFolder.WebViewOn = not 0 ;True
_________________________
(... better days ahead)