Why can't I detect ray tracing related device extensions?

Run vulkaninfoSDK.exe on Windows 10, I got:

VkPhysicalDeviceProperties:

    apiVersion        = 1.3.280 (4206872)
    driverVersion     = 560.81.0.0 (2350137344)
    vendorID          = 0x10de
    deviceID          = 0x2803
    deviceType        = PHYSICAL_DEVICE_TYPE_DISCRETE_GPU
    deviceName        = NVIDIA GeForce RTX 4060 Ti
    pipelineCacheUUID = a552de6d-1faf-8ad5-3b08-de070ce9ce4c

However, When I query it in my application. I got the same info except for pipelineCacheUUID. It lacks lots of the latest device extensions (e.g., ray tracing).

What should I do to use an excepted driver instead of a virtual driver on Windows?

Solved by vulkan - VK_KHR_acceleration_structure and VK_KHR_raytracing_pipeline aren't presented whereas they are available in vkconfig (RTX2060) - Stack Overflow