Microsoft Virtualization Discussions

Find NetApp powershell toolkit version on remote server

PHILIPALBERT
5,662 Views

Hi,

 

Is there an easy way to get the version of netApp powershell toolkit installed on a remote server.

I would like to make a script that will scan my servers to be sure all of them have the latest version installed.

 

Thanks

Philip

1 ACCEPTED SOLUTION

JGPSHNTAP
5,654 Views

Look at invoke-command and pair it with get-natoolkitversion

View solution in original post

4 REPLIES 4

JGPSHNTAP
5,655 Views

Look at invoke-command and pair it with get-natoolkitversion

PHILIPALBERT
5,644 Views

I thought I would have to load the module on the remote server...silly me.

 

Thanks

PHILIPALBERT
5,590 Views

It's weird because when I run the command locally and then from a remote server, I'm not getting the same version.

 

Remote:

PS C:\> Invoke-Command -computername server1 -scriptblock { get-natoolkitversion }

Major Minor Build Revision PSComputerName
----- ----- ----- -------- --------------
1 7 0 112 server1


PS C:\>

 

Locally:

PS C:\> get-natoolkitversion

Major Minor Build Revision
----- ----- ----- --------
3 2 0 65


PS C:\>

PHILIPALBERT
5,561 Views

Looks like I have multiple version installed.

If I run powershell in x86 I get 3.2 and if I run it in x64 I get 1.7

 

I'll do some cleanup, should be good after that.

 

Thanks

Public