Microsoft Virtualization Discussions

New-NaVol Parameter

JAL
2,865 Views

All,

Is there a way when creating a new volume via PowerShell using the cmdlet New-NaVol to turn off the default "Autogrow" setting? 

 

The defaut has this setting turned on and I'd like to be able to turn off this attribute within the script when creating new volumes.  I don't see it listed in the parameters.

 

Thanks for any help,

 

joe

1 ACCEPTED SOLUTION

asulliva
2,845 Views

Hello @JAL,

 

Use the Set-NaVolAutosize cmdlet to disable the setting.

 

$volume = New-NaVol ...

$volume | Set-NcVolAutosize -Disabled

 

Hope that helps.

 

Andrew

If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.

View solution in original post

2 REPLIES 2

asulliva
2,846 Views

Hello @JAL,

 

Use the Set-NaVolAutosize cmdlet to disable the setting.

 

$volume = New-NaVol ...

$volume | Set-NcVolAutosize -Disabled

 

Hope that helps.

 

Andrew

If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.

JAL
2,831 Views

Andrew,

Exactly what I was looking for.  If I would've spent a little more time, I may have found that cmdlet.

 

Thanks!

 

joe

Public