
ryandengstrom
Established Members-
Posts
6 -
Joined
-
Last visited
-
Days Won
1
Everything posted by ryandengstrom
-
Windows 10 20H2 RSAT tools are failing to install from FOD
ryandengstrom replied to lalajee's question in Windows 10
We have WU blocked as all patching is handled by MEMCM. I found this workaround script to temporarily enable in the registry, add the feature, then set the registry back to what is was prior. $currentWU = Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" | select -ExpandProperty UseWUServer Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value 0 Restart-Service wuauserv Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" -Name "UseWUServer" -Value $currentWU Restart-Service wuauserv -
Also, what path is your package source referencing? You are using the same package on the two steps, but you have two separate sub folders where the password .bin files are kept. EDIT: In reviewing the 4sysops post, I see they specified the ~configs subfolder within their command in the TS. Assuming your COL0009C package source is the root of the "HP EliteBook 840 G2 Configuration Files" folder, you would need to specify the subfolder in the path to the config files and encrypted password bin files.
-
What version of BiosConfigUtility64.exe are you using? I am not sure when the change occurred, but I believe the /CurSetupPasswordFile switch was replaced with /cpwdfile. This is what v4.0.21.1 is showing. We also have continue on error checked on the step as I believe it will technically fail as it is trying to write to some lines from the config file to read-only things in the bios. I think you could go through the config and remove what is read-only as an alternative also. We reference a package without a program to accomplish this during OSD.
-
I have a working ConfigMgr 2012 R2 CU1 environment, with all servers on 2012 R2. After following the guide, I am still having trouble pxe booting. After the 'Downloading NBP file...' message, a 'Succeed to download NBP file.' message very briefly appears, followed by moving onto an ipv6 pxe attempt. I did have one successful pxe boot yesterday, but am unsure of what I changed that now prevents this from working. Any ideas? Thanks!