How can I find out the number of threads in my azure virtual machine?

vivek myhtri 0 Reputation points
2024-02-06T08:45:33.6966667+00:00

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?

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
7,586 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. v-vvellanki-MSFT 4,915 Reputation points Microsoft Vendor
    2024-02-06T09:58:40.5533333+00:00

    Hi @vivek myhtri ,

    Thanks for contacting Microsoft Q&A platfrom.

    You can check how many CPU threads (Logical Processors) in the Task Manager:

    1. Open Task Manager
    2. Select Performance tab
    3. Look Logical Processors (Threads)

    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.

    Hope this helps you.

    0 comments No comments