Hello Jody, Can you paste your code ?
Can you try the below code ?
$trigger = New-JobTrigger -Daily -At 3am
Register-ScheduledJob -Name Start-Copying -Trigger $trigger -ScriptBlock {
<#
#>
ipmo dataontap -ErrorAction SilentlyContinue
Invoke-NaNdmpCopy 10.61.167.61 /vol/vol4/t5/ 10.61.169.28 /vol/vol1/t5/ -SrcAuthType md5 -DstAuthType md5
}