I've been receiving errors when running the script. It will access the drive and write the filenames to my log as specified, but will not remove the files on the share drive due to a permissions error. I'm logged in as the Administrator and have re-wrote permissions to the whole drive, but still do not have access.

Here is the code:

$servers = Get-content "D:\Scripts\servers.txt"
$logpath = "d$\Documents"
$logFile = "D:\Scripts\log.txt"
$Date = Get-Date
$error.clear()

foreach($server in $servers){

$fail =" $Date - Failed.  $server did not respond to a ping command.  No files have been deletedfrom $server."
$notpresent = "$Date - Failed.  The specified log folder doesn't seem to be present on $server."
$nologs = "There are no log files to be deleted on $server."

$UNCpath = "\\" +$server+ "\" +$logpath
#Ping server to validate the server is online and accessible
If ($server|?{ (gwmi Win32_PingStatus -Filter "Address='$_'").StatusCode -eq 0 }){

    # The server IS pingable, but the folder does not exist.
    If (!(Test-Path $UNCpath)){Write-output $notpresent `r`n | Out-File $logFile -append}

    # The server IS pingable, and the folder does exist
    else{
        $files = (dir -r $UNCpath -include *.doc,*.pdf,*.docx,*.xls,*.xlsx | where {$_.lastwritetime -le (get-date).adddays(-90) -and !$_.psiscontainer})
        foreach ($file in $files){
            If ($file -eq $null){write-output $nologs `r`n | Out-File $logFile -append}
            Else{
                write-output $file.name | Out-File $logFile -append
                remove-item $file
            }
        }
    }
}

# The server is NOT pingable.
else{Write-output $fail `r`n | Out-File $logFile -append}

If ($error.count -ne "0"){write-output $error | Out-File $logfile -append}
Else{write-output "The log file removal script has completed successfully." | Out-File $logfile -append}'
link|improve this question

50% accept rate
Could you give us more info about how you are running this script? Are you running it remotely? Scheduled task? With a service? – JasonMArcher Aug 10 '11 at 18:07
I am running the script from another remote machine and directly the script to run on the server in which the files are located I want to remove. It is currently not scheduled, but once I get this permissions issued solved, it will be. – gp80586 Aug 10 '11 at 20:17
Are you running on Machine A to access the files on Machine B, or using Machine A to execute the script remotely on Machine B to access the files on Machine C? – JasonMArcher Aug 10 '11 at 20:36
Running script on machine A to access files on machine B. I figured out the solution -- I simply added -force after remove-item $file. Worked like a charm. – gp80586 Aug 10 '11 at 20:48
feedback

1 Answer

OP posted his own answer as a comment. I'm putting it here as a "real" answer. Bold/italic emphasis by me.

Running script on machine A to access files on machine B. I figured out the solution -- I simply added -force after remove-item $file. Worked like a charm. – gp80586 Aug 10 at 20:48

Please do not vote on this answer, it's not from me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.