An account will enable you to access:
Don't have an account?
Active IQ Unified Manager Discussions
Command Remove-Navol ask for confirmation and stop the workflow with this error
Windows PowerShell is in NonInteractive mode. Read and Prompt functionality is not available
Is there a way to bypass that.
Help apprecied
francois
Solved! See The Solution
Hi Francois,
Please use:
Remove-navol -Name <volume name> -Confirm:0
Please make sure you make the volume offline before you remove it by doing the following:
Set-NaVol <volume name> -Offline
-Sharu
View solution in original post
Hi,
Please follow the below standard syntax when removing the volume,
Set-NaVol -Name <vol-name> -Offline -ErrorAction stop
Remove-NaVol -Name <vol-name> -Confirm:$false -ErrorAction stop
Warm Regards
Sivaprasad K