Microsoft Virtualization Discussions
Microsoft Virtualization Discussions
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
Solved! See The Solution
Look at invoke-command and pair it with get-natoolkitversion
Look at invoke-command and pair it with get-natoolkitversion
I thought I would have to load the module on the remote server...silly me.
Thanks
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:\>
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