PowerShell Remote Defrag

У меня есть следующий код, который отлично работает на моем компьютере с Windows 7:

$Defrag = Get-WmiObject Win32_Volume -Filter "DriveLetter='c:'" -ComputerName "SRLVHOMAPP01" | 
Invoke-WmiMethod -Name Defrag

Но когда я пытаюсь запустить это на Windows Server 2003, ничего не запускается.

У кого-нибудь есть идеи? I'm running with domain administrator account...

EDIT: I've found an addition combination of code as follows, but it gives me return of "Error code 8" which is apparently "Defrag is already in progress." - which it is definitely not.

$Servers = "CSEPULTAPU01"

ForEach ($Server in $Servers)
{
    $vol = Get-WmiObject -Class Win32_Volume -ComputerName $Server -Filter "DriveLetter = 'c:'"
    $res = $vol.Defrag($false)

    if ($res.ReturnValue -eq 0)
    {
        Write-Host "Defrag succeeded."
    }
    else 
    {
        Write-Host "Defrag failed Result code: " $res.ReturnValue
    }
}

0 ответов

Другие вопросы по тегам