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
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Require Incremental updates need to be disable on collection through powershell
Note:-Tried technet script but doesn’t work
Answers ( 4 )
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
Thanks Ankit,
Its worked for me.
Thanks Ankit,
Script is not working
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.