-
Content Count
90 -
Joined
-
Last visited
-
Days Won
1
kevlar01 last won the day on August 23 2018
kevlar01 had the most liked content!
Community Reputation
2 NeutralAbout kevlar01
-
Rank
Advanced Member
Profile Information
-
Gender
Male
-
Chrome uninstallation by SCCM
kevlar01 replied to sajeret's topic in System Center Configuration Manager (Current Branch)
Create a device collection with computers where you want to keep Chrome. You can exclude this collection when you target your uninstallation deployment. The collection with Chrome users can be maintained manually or based on an AD group for instance (computer is member of security group 'ChromeUsers' or something similar) -
What happens if you run the script manually on the computer? Can you publish it as available instead of required? What does the script do? Perhaps it cannot run because it needs to kill a process of some other software first?
-
Yeah it's pretty complicated stuff. I was planning to follow the next blogs, as we are planning to setup HTTPS in our own environment, so I'm curious thanks again.
-
Thanks for making this. This made PKI a less tough cookie to crack for me
-
Checked the value in the registry, it does it exist. However, it points to C:\Program Files\Microsoft Configuration Manager\AdminConsole. This directory doesn't exist, so that may be the issue.
- 7 replies
-
- 1
-
-
- windows 10 1803
- device collections
-
(and 2 more)
Tagged with:
-
The error was the following: Starting script... Import-Module : Cannot bind argument to parameter 'Name' because it is null. Looks like it cannot use or import the Posh CM module or something....
- 7 replies
-
- windows 10 1803
- device collections
-
(and 2 more)
Tagged with:
-
Thanks for this! Note: it worked for me when I started Powershell ISE via the Configuration Manager Console. http://eddiejackson.net/SCCM/sccm_ps_1.png Running the 'regular' Powershell ISE didn't work for me.
- 7 replies
-
- windows 10 1803
- device collections
-
(and 2 more)
Tagged with:
-
Possibly it is something particular to this image. You can also try to rebuild the task sequence from scratch to make sure that is the problem. Fortunately there aren't very much steps. However, when I search for the error (0x80070002) in your log, it brings me to this site: https://prajwaldesai.com/task-sequence-failed-error-code-0x80070002/ It states that possibly something is wrong with your NAA (Network Access Account). Perhaps password expired or wrong?
-
You could also check the deployment for errors in the SCCM console. First, get the deployment ID of the deployment: Go to the task sequence (Software Library -> Operating Systems -> Task Sequences) Open the Deployments tab. Make sure the Deployment ID is enabled by rightclicking the columns) Next: Open Monitoring -> System Status -> Status Message Queries Open 'All Status Messages for a Specific Deployment at a Specific Site'. Fill out the Deployment ID, the Sitecode and the period to search (1hr or 6hrs should be OK). Hopefully you can find
-
We use a package in our environment (don't use MDT, that's why). 1. copy the file microsoft-windows-netfx3-ondemand-package.cab from your install media to a folder on your SCCM server (sources folder) 2. Create a powershell script with the following code Import-Module Dism $currentLocation = Split-Path -Parent $MyInvocation.MyCommand.Path; Enable-WindowsOptionalFeature -Online -FeatureName NetFx3 -Source $currentLocation -LimitAccess -All 3. Create a package which invokes the ps1 script + the cab file (both in same folder) Hopefully this works for you.