The code (bottom) is from a powershell script where I am attempting to check for the existence of two different directories. If the directory exists its supposed to do a remove-item to delete all the files and folders underneath it.
However when I run the script I get the following output:
What if: Performing operation "Remove File" on Target "\server1\c$\windows\propatches\patches\WindowsServer2003-KB2621440.exe".
What if: Performing operation "Remove File" on Target "\server1\c$\windows\propatches\patches\WindowsServer2003-KB2641653.exe".
Remove-Item : An object at the specified path \server1\c$\winnt\propatches\patches does not exist. At C:\Documents and Settings\logonuser\desktop\GetPCNames.ps1:32 char:14 + Remove-Item <<<< $clearpath -recurse -whatif + CategoryInfo : ObjectNotFound: (\SEARCHMGT1\c$\winnt\propatches\patches:String) [Remove-Item], IOException + FullyQualifiedErrorId : ItemDoesNotExist,Microsoft.PowerShell.Commands.RemoveItemCommand
It seems like the first test-path is detecting that the directory exists and the remove-item correctly runs.
However the second test-path (which does not exist) still attempts to execute the remove-item command which craps out because the path doesn't exist.
I'm assuming my test-path if statement must be wrong but I'm pulling out my hair trying to figure out what I am doing wrong. Anyone have any idea why this is producing errors?
foreach ($objResult in $colResults)
{
$objComputer = $objResult.Properties;
$path1 = "\\" + $objComputer.name + "\c$\windows\propatches\patches\"
$path2 = "\\" + $objComputer.name + "\c$\winnt\propatches\patches\"
#check to see if it is missing
if ((Test-Path -path $path1))
{
$clearpath = $path1 + "*"
Remove-Item $clearpath -recurse -whatif
}
#check to see if it is missing
if ((Test-Path -path $path1))
{
$clearpath = $path2 + "*"
Remove-Item $clearpath -recurse -whatif
}