Microsoft Virtualization Discussions

Shutdown Script?

simonhaeni
4,782 Views

Hello

I'm looking for a possibility to shutdown/halt the filer over a powershell script? Is there any solution?

The background ist that I would like to create a script which stop the filer in case of a UPS event.

I know about the ups command on netapp, but I'll control the whole shutdown from a central management pc.

Any ideas?

regards,

simon

1 ACCEPTED SOLUTION

sizemore
4,782 Views

Hey Simon,


There isn't an API to shutdown a controller, but you can use the invoke-nassh cmdlet.

Invoke-NaSsh -Command 'halt -t 0'

Hope that helps,

~Glenn

View solution in original post

2 REPLIES 2

SNEWNAMBBT
4,782 Views

There are a number of ways to accomplish this - look into plink that comes with Putty. You can call batch scripts basically from anything. You can establish SSH and then issue the halt command on each of your heads. Remember if you're in a pair you'll want to do a cluster disable as well. If you want something more fancy, look into something like this http://huddledmasses.org/scriptable-ssh-from-powershell/

sizemore
4,783 Views

Hey Simon,


There isn't an API to shutdown a controller, but you can use the invoke-nassh cmdlet.

Invoke-NaSsh -Command 'halt -t 0'

Hope that helps,

~Glenn

Public