coolslim54
Established Members-
Posts
16 -
Joined
-
Last visited
Everything posted by coolslim54
-
I'm not having much luck with enabling BitLocker with SCCM v2103, running in enhanced HTTP mode. I'm able to successfully create and deploy the Bitlocker policy to a few test machines. The MDOP MBAM agent does show up in the control panel, but for some reason, the machines remain non-complaint when the SCCM client runs the evaluation. Some of the MBAM registry keys appear to be present on the machines, but the MDOPBitLockerManagement sub registry key is not present. Under the Event Viewer\Applications and Services\Microsoft\Windows\MBAM\Admin section is giving the same warning message all the way down: Unable to connect to the MBAM Recovery and Hardware service. Error code: -2147028409. Lastly, I've gone thru the BitlockerManagementHandler.log file just about line-by-line and I saw nothing that indicates the machine was able to detect my enhanced http Management. I did come across the following error messages in the log file: Error executing method ProtectKeyWithNumericalPassword. 0x8031005b Error adding numerical password to OS volume Unable to initialize volume state. Bitlocker enactment cancelled Error escrowing keys. 0x8031005b Am I missing something with my enhanced http setup? It's a pretty straight forward process. Any help would be greatly appreciated!
-
Installing this hotfix has been a bit problematic. All appears to go well until reaching the "Install Files" section. At that point, it fails and says to check the CMUpdate.log for details. I'll post the contents of the log file. So far, I've redownloaded and reinstalled the hotfix, disabled all antivirus applications on the server, and confirmed SQL permissions were correct. Any advice would be greatly appreciated. CMUpdate.txt
-
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
I also tried the following and received the same error mentioned above in my task sequence: $var = New-Object -ComObject Microsoft.SMS.TSEnvironment [regex]$pattern = "-" $OSDComputerName = $var.Value("OSDComputerName") $var.Value("OSDComputerName") = ($pattern.replace($var.Value("OSDComputerName"), "", 1)).Replace("TW7", "TW10").Replace("LW7", "LW10") -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
It appears to work manually, but fails in the task sequence. -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Definitely running the script as bypass in the task sequence. I'll try the manual steps tomorrow at work. Thx! -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Gave it a shot and the task sequence failed at powershell script step with error code 0xFFFD0000. Do I need to set the OSDComputerName variable like before? $OSDComputerName = $var.Value("OSDComputerName") -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Tregelen, It's me again! The script you provided above works great! Just one last step. How can I remove the first dash from TW7NSDA-002-0000? Again, many thanks! -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Tregelen, If I wanted to add an additional line in the script to reflect laptops, could I just add the line at the end to look like this $var = New-Object -ComObject Microsoft.SMS.TSEnvironment $OSDComputerName = $var.Value("OSDComputerName") $var.Value("OSDComputerName") = ($OSDComputerName).Replace("TW7", "TW10") $var.Value("OSDComputerName") = ($OSDComputerName).Replace("LW7", "LW10") Or would I need to add and elseif statement? I would think that it would ignore line 3, if nothing matches with what the script is looking for.... -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Man, you guys are "da truth"!! Script worked like a charm! Many thanks! I'll definitely be keeping that one. -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Thanks for your responses. My PowerShell skills are terrible at the moment, but I'm working on it...I'll give it a shot and follow up. Thanks again! -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Tregelen, did you ever get a chance to test it? I tested the script before adding it to my task sequence and it came back with errors. -
SCCM OSD Computer Name Change
coolslim54 replied to coolslim54's topic in Configuration Manager 2012
Thanks! I'll give it a shot! -
Currently running SCCM 1511 with MDT 2013 integrated. We are looking to refresh all machines (desktops and laptops) from Win 7 to Win 10. My MDT Task Sequence works well, but I'm looking for a way to change the first 3 characters of the computer names. We have a standard naming convention, Example: current name looks like TW7NSDA-002-0000. The TW7 reflects Win 7. Is there a simple script I can implement in the Task Sequence to change TW7 to TW10 so the new computer name would reflect TW10NSDA-002-0000? Thanks!