Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,977 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How can I find out the number of threads in my azure virtual machine?
,
Also, how can I increase the number of threads in my virtual machine?
Hi,
You can check how many CPU threads (Logical Processors) in the Task Manager:
or run the following command in a PowerShell or Command Prompt:
wmic CPU Get NumberOfCores,NumberOfLogicalProcessors /Format:List
If you want to increase the number of CPU threads you'll need to create a new Azure virtual machine (VM) with more CPU power, you cannot increase the number of threads in an existing azure VM.
Best regards,
Leon