Require Incremental updates need to be disable on collection through powershell

Question

Require Incremental updates need to be disable on collection through powershell

Note:-Tried technet script but doesn’t work

Answers ( 4 )

    0
    2020-07-01T16:13:56+05:30

    Connect powershell via SCCM console, and then type the commands, it is not a script.
    I have used the same command in my environment and it works smoothly

    Best answer
    0
    2020-07-01T06:21:44+05:30

    Thanks Ankit,

    Script is not working

    0
    2020-06-30T20:19:53+05:30

    First you need to find out how many incremental collections are there in your environment.

    Google it you will find many articles to get those collections.

    Identify on which ones you need incremental and ones on which you can remove.

    Then use powershell command line to change the settings in one go.

    The acceptable value of refresh types in powershell are :
    1. Manual
    2. Periodic ( Full)
    4. Continuos ( incremental)
    6. Both

    So you can use the below command to change the refresh type from powershell.

    Get-CMCollection – CollectionID “xxx” | Set-CMCollection -RefreshType Manual

    You can change the refresh type accordingly.
    If you use Excel regularly then you know how to do them in bulk using concatenate formula.
    In the refresh type you can use ‘None’ also.

Leave an answer

Sorry, you do not have permission to answer to this question .