Hi everyone! Today's topic gonna be a talk about collection in MEMCM, It's always there and we need to understand how they work so we can have a really good environment to work with right? There is not much documentation about Collection in MEMCM, you can find it below here: https://docs.microsoft.com/en-us/mem/configmgr/core/clients/manage/collections/manage-collections Limiting The thing is …
Modify Regional Settings on Windows 10 (Multiple countries), just a simple powershell script!
Hey, I have been working with a script that modifies/changing the Regional settings for the client. Changing the following: Format Timezone Keyboard layout Welcome screen-Keyboard layout Its just one PowerShell script so this work even with Windows 10 Autopilot. Requirements: English Operating system (1703 or above) Client that a could run PowerShell in the customization …
Collection inside Collections, A good view!
Sometimes you using the "Include collections" to much, and you wonder which collections they are into, and so on. And just now, there is no good view of that. Until this day! no kidding, but made a nice script so you can dig further yourself! :)I got inspired by this Post, thanks to Jordan Benzinghttps://problemresolution.org/2017/10/01/sccm-collection-relationships/ …
Continue reading "Collection inside Collections, A good view!"
PowerShell app deployment toolkit – Check if Skype/Lync is in Presentation mode
Lately, Ive been working on a solution how to block installations when users are presenting anything on Skype/Lync. And its all possible with PowerShell isnt it?So this solution will cancel the installation, with no user interaction. Let's start with the requirements.Knowledge how Powershell app Deployment toolkit worksSkype/Lync 2013, 2016. Could work with older and higher, let …
Continue reading "PowerShell app deployment toolkit – Check if Skype/Lync is in Presentation mode"
Build and Import your perfect WIM file to SCCM with powershell
There are literally so many ways to inject patches to your WIM file nowadays, I've been done a little research and I find this way the most appropriate.This guide is based on this blog:https://execmgr.net/2018/06/07/windows-10-image-maintenance/but with a final touch on how to do almost everything with PowerShell, even import it to SCCM. Ok, lets go! Make …
Continue reading "Build and Import your perfect WIM file to SCCM with powershell"
Create CM Collections from OU
Hey, Working on a script lately, to create CM collections from OU structure, also with a query that looks into the OU to collect the machines. So let say you have a OU structure like above, So you want collections in CM like "SBS Computers" and "SBSServers" collections will be created and gathering all the computers …
KB4343900 – Failed to resolve package [HRESULT = 0x80070490 – ERROR_NOT_FOUND]
Hey! Just got a problem in the service window this Sunday, I'm just in need to share this with everyone. The platform that has the problem. Server 2008 SP1 The real problem KB4343900 just not installing, Error code: 0x80070490 When I'm digging the C:\Windows\Logs\CBS\CBS.log, find some interesting stuffs. Exec: Package: Package_533_for_KB4343900~31bf3856ad364e35~amd64~~6.1.1.5 is already in the correct …
Continue reading "KB4343900 – Failed to resolve package [HRESULT = 0x80070490 – ERROR_NOT_FOUND]"
How to uninstall or remove SCCM client
Hey! I work with a company, that the customers, come and go pretty much. So sometimes they gonna install the CM-agent and sometimes some customers leaves. Then we need to uninstall the CM-Agent remotely of course! God forbidden manually! You need * Server 2008 R2 or above * Windows 7 With PowerShell 3.0 installed or …
CI – Get-ServicePackMajorVersion
Hey! Recently I got and a mission to inventory the ServicepackMajorversion on our servers. So ive made a script that you can use in a CI if you want. Discovery Script Compliance Rule Equals 1 ( which is "a Service pack is installed") Good luck! /Pontus
CI – Cleanup CCMcache
When I was at the MMS this year, I asked the Microsoft product team if the CCMCache is OK to clean up, because a lot of files is in the folder, and there is no built-in to do so. This is a standard Configuration Item, pretty easy when you get into it. Let say, we …