I need to delete a virtual directory using PowerShell v2.0 against IIS 6.0. The only way I have managed to do this successfully is to use the cscript command using the iisvdir.vbs /delete vbs script file. The problem is I need to call the PowerShell script using System Internals psexec tool and it gets stuck on the execution of the cscript.
I have tried the following without success or an error:
$path = [ADSI]"IIS://myserver/W3SVC/1/ROOT/MyDirectory"
$result = $path.Delete
$result = $path.Commit
And this WMI call also without success: How to update existing IIS 6 Web Site using PowerShell
$tempWebsite = gwmi -namespace "root\MicrosoftIISv2"
-class "IISWebServerSetting"
-filter "ServerComment like '%$name%'"
if (!($tempWebsite -eq $NULL)) {$tempWebsite.delete()}
I then changed:
IISWebServerSetting > IIsWebVirtualDirSetting
And
ServerComment > AppFriendlyName
Any help would be greatly appreciated!