Problem
Does anyone have experience with this PowerShell script? We are close to completion, however, we are encountering an issue where the PowerShell script does not include the server name for each entry. Any assistance would be greatly appreciated.
$servers = @("server 1", "server2", "server3")
{
Get-Volume
}
Solution
It appears that the current command is not functioning as intended. The same (local) volumes are being queried three times. To ensure the command is executed correctly, it is necessary to include the server names:
$servers = @("server 1", "server2", "server3")
Get-Volume -CimSession $servers
Note: It is not necessary for this small snippet, but if you wish to store the server names in an array, it can be done.
Alex Lim is a certified IT Technical Support Architect with over 15 years of experience in designing, implementing, and troubleshooting complex IT systems and networks. He has worked for leading IT companies, such as Microsoft, IBM, and Cisco, providing technical support and solutions to clients across various industries and sectors. Alex has a bachelor’s degree in computer science from the National University of Singapore and a master’s degree in information security from the Massachusetts Institute of Technology. He is also the author of several best-selling books on IT technical support, such as The IT Technical Support Handbook and Troubleshooting IT Systems and Networks. Alex lives in Bandar, Johore, Malaysia with his wife and two chilrdren. You can reach him at [email protected] or follow him on Website | Twitter | Facebook