Microsoft Virtualization Discussions

Check if aggregate exists

LUKASPRELOVSKY
3,935 Views

Hi all,

is it possible to check if an aggregate exists? If yes, how to do it? If not how to catch and hide the error?

Thank you,

Lukas

Best Regards,
Lukas
1 ACCEPTED SOLUTION

bsti
3,935 Views

Hi Lukas,

  I use this: 

if ( Get-NaAggr | ? { $_.Name -ieq "aggrname" } )

{

  ..  Aggr exists, do this

}

else

{

  .. Does not exist...

}

View solution in original post

4 REPLIES 4

LTDCLSERGAO
3,935 Views

hello,

there is many way to list existing aggregat

aggr status,

aggr status -r ( to show raid detail)

df -Ag

aggr show_space -g

LUKASPRELOVSKY
3,935 Views

Hi,

yes, i know, but can you provide me a sample script with options when a aggrete not exists?

thx

Best Regards,
Lukas

bsti
3,936 Views

Hi Lukas,

  I use this: 

if ( Get-NaAggr | ? { $_.Name -ieq "aggrname" } )

{

  ..  Aggr exists, do this

}

else

{

  .. Does not exist...

}

LUKASPRELOVSKY
3,935 Views

Hi,

thank you very much! This is what I looking for!

Lukas

Best Regards,
Lukas
Public