Currently, all my volumes dedupe at midnight (default). We're having some backup windows extend into that time so I want to bump the dedupe schedule out to 2a.
I'm using the following command to get all volumes with Dedupe enabled: Get-NaVol | where { $_.DedupeEnabled -eq "True" }
Then I'm trying to pipe that result into Set-NaSis but it looks like the result of the Get-NaVol command is not the correct object type via this error:
Set-NaSis : The input object cannot be bound to any parameters for the command either because the command does not take
pipeline input or the input and its properties do not match any of the parameters that take pipeline input.
Is my theory correct? Either way, what would I do to get accomplish my goal. If there's a better way altogether I'm definitely ok with that. Just trying to learn some powershell in the process
Adam