-
Posts
94 -
Joined
-
Last visited
-
Days Won
1
Everything posted by kevlar01
-
Hi, Since a while we have problems with a step during our Windows 10 task sequence. This step is a powershell script which changes the computer description based on a variable which is set during the OSDMenu.hta (a form which pops up in the beginning of the task sequence where the computerdescription is filled out). For whatever reason, this step doesn't work anymore, but in the past this worked fine. The computerdescription isn't too long (more than 15 characters), and the user which is used in this step has sufficient rights. I have also tested it with a domain admin account but it didn't make any difference. We also have a step which sets the computername but this is no issue. The script which is used is the following: I have created a status message query for the task sequence and the error stated says it is an 'Incorrect function' Anyone else which has this problem?
-
You could try this Powershell command: Get-PhysicalDisk | Select FriendlyName,MediaType,DeviceID The mediatype should report back with 'SSD' or HDD'. Maybe you can build in a condition in the step to only run if it is an SSD. edit: in this blog somebody created a more extended script: https://www.vacuumbreather.com/index.php/blog/item/72-dynamically-select-ssd-drive-for-os-installation. It is made for MDT but it looks like it should also work for SCCM.
-
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 the error here which is troubling you right now.
-
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.
-
We have trouble using PXE in our environment. Our setup: SCCM 2016 management point in remote datacentre (running on Windows Server 2016) SCCM 2016 distribution point + OSD in local serverroom (running on Windows Server 2016). On this server, 2 network cards are configured. One is connected to the domain, the other is connected to a seperate 'installation LAN'. We also configured DHCP on this server with a binding only to the 'installation LAN NIC'. We also configured DHCP options 60, 66 and 67. On this local server, we installed Hyper-V to run a virtual machine which we can use to create a clean Build and Capture using OSD. However, we cannot boot this virtual machine into PXE. It doesn't seem to get an IP address from DHCP. If we boot up a laptop to the installation LAN, then there is no issue booting up in to WinPE. We've tried several things: Change WDS settings; (set PXE response to respond to all computers / Configured DHCP options / Authorized server in to DHCP / let DHCP give out the multicast address) Changed DHCP options (removed option 60 (PXEClient) / Configured DHCP option to also use BOOTP) Configured different virtual switches in Hyper-V (Internal / external / private), configured RRAS to create a shared NIC, disabled DCHP guard, disabled 'Protected Network' Added computer manually in to SCCM using MAC address. We are running out of options. If I boot up a VM on the laptop using Hyper-V, I don't have any issues. However, we would like to use Hyper-V on the server itself to create images because it is a central and permanent solution. Any suggestions? Many thanks in advance.
-
Check out this URL http://blogs.technet.com/b/mniehaus/archive/2014/01/10/configuring-file-associations-in-windows-8-1.aspx
-
List Collection Variables - Powershell
kevlar01 replied to syparon's topic in Configuration Manager 2012
Check this blogpost: http://it.peikkoluola.net/2013/09/30/display-a-sccm-collection-variable-and-its-value/ -
Streaming delivery method sccm 2012 sp1
kevlar01 replied to offrock's topic in Configuration Manager 2012
What do you mean with streaming? App-V streaming? Or a multicast stream with OSD?