About Me

My photo
HANUMANGARH, RAJASTHAN, India

Wednesday, 22 July 2020

How to know running vcentre us appliance or windows server.

Use below two command in powershell to determine running on Appliance or Window 

$server = Connect-VIServer -Server 192.168.x.x

$Server.ExtensionData.Content.about

It will tell in OS Type, if it is Linux-64, yes it definitely appliance. If not, yes Window 👍

No comments:

Post a Comment

Extract Disk Info from Remote host

 # Define the remote hostname or IP address $remoteHost = Get-Content "C:\temp\RemoteServer.txt" # Define the output CSV file path...