Configuration Profile - Idle Power Saving Settings for Realtek USB GbE

ChristopherCoates 41 Reputation points
2022-06-23T22:28:33.507+00:00

Hello TechNet Community,

I have a need to push a setting to our Intune Managed Devices and need some guidance.
The setting I need to change is on one of the network adapters on one of the models of devices in our fleet. The setting I need to change is the Idle Power Saving (needs to be set to disabled)

Targeting the devices I am confident with, I am struggling with finding the relevant settings/templates/way to force these settings out.

Can anyone help?

Microsoft Security | Intune | Configuration
Microsoft Security | Intune | Other
0 comments No comments
{count} votes

Accepted answer
  1. Lu Dai-MSFT 28,496 Reputation points
    2022-06-24T02:05:24.947+00:00

    @ChristopherCoates Thanks for posting in our Q&A.

    For this issue, there is no built-in setting can make it. Based on my research, it is suggested to make it via Powershell scripts.
    Here is the powershell script:

    Get-NetAdapter | Where { $_.InterfaceDescription -like "Realtek USB GbE Family Controller*" } | % {  
    	Set-NetAdapterAdvancedProperty -Name $_.Name -DisplayName "Idle Power Saving" -DisplayValue "Disabled"	  
    }  
    

    Please refer to the following article to deploy the script via intune:
    https://learn.microsoft.com/en-us/mem/intune/apps/intune-management-extension#create-a-script-policy-and-assign-it

    I have done the test in my lab. I will share some information in my test. Beacuse I didn't have Realtek USB GbE Family Controller in my device, I tried to disable the setting "Forwarding Optimization" in Microsoft Hyper-V Network Adapter as an example:

    Get-NetAdapter | Where { $_.InterfaceDescription -like "Microsoft Hyper-V Network Adapter*" } | % {  
    	Set-NetAdapterAdvancedProperty -Name $_.Name -DisplayName "Forwarding Optimization" -DisplayValue "Disabled"  
    }  
    

    214583-image.png

    It works well and have disabled the setting successfully.
    214479-image.png

    214591-image.png

    So, it is suggested to try and hope it is want you want.


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    3 people found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.