Skip to main content

Posts

Showing posts from 2017

0x800719f3 during updates deployment

Issues while installing Updates on one of the machines Following entries were showing up in the logs FATAL: Completed install of CBS update with type=0, requiresReboot=0, installerError=1, hr=0x800719f3 WARNING: Exit code = 0x00000000; Call error code = 0x80240022 I added an addition vCPU to the machine and after that the installation went fine. Hope this helps

SCOM Discovery wizard stuck

We faced an issue with Discovery wizard getting stuck on discovering Windows objects in SCOM 2016 Turned out that we were running out of space for OpsmgrDB Make sure OpsmgrDB is set for autogrowth as it is not by default Hope this helps

Failed to call AdminUIContentDownload. 2147467261 error message Invalid Pointer

After Installing new CM CB 1606 i was unable to fetch the updates in the console The issue seemed to be with the proxy we use. from dmpdownloader.log Failed to call AdminUIContentDownload. error = [error code: -2147467261, error message: Invalid pointer] SMS_DMP_DOWNLOADER 3/19/2017 1:38:45 PM 3632 (0x0E30) AdminUI Content Download thread is exiting... SMS_DMP_DOWNLOADER 3/19/2017 1:38:45 PM 3632 (0x0E30) ERROR: GetSccmConnectedServiceUrl Exception System.Net.WebException: The remote server returned an error: (407) Proxy Authentication Required.~~   at System.Net.HttpWebRequest.GetResponse()~~   at Microsoft.ConfigurationManager.DmpConnector.Connector.SCCMConnectorUtility.GetSccmConnectedServiceUrl(IWebProxy prx) SMS_DMP_DOWNLOADER 3/19/2017 1:38:45 PM 3976 (0x0F88) There is no sccmConnected service reachable SMS_DMP_DOWNLOADER 3/19/2017 1:38:45 PM 3976 (0x0F88) Generating state message: 1 for package 00000000-0000-0000-0000-000000000000 SMS_DMP_DOWNLO

VMware Template Windows Could not finish configuring the system

Recently had to create a Windows Server 2008 R2 SP1 template If you install Mcafee  VSE 8.8 the VMware customization to deploy a VM from the template fails. As checked Mcafee for now do not have nay solution for this problem and the only way to get the deployment using the VMware customization wizard working is by removing VSE 8.8 from the master image of Server 2008 R2 SP1 Hope this helps

Export Local Admin details for Computers in a particular OU

Needed to export the Computer Name and all the local Admins for a particular OU Used the following Powershell script to export the details $computers = Get-ADComputer -SearchBase "OU=Servers,OU=Computers,OU=ABC,DC=XYZ,DC=Domain,DC=com" -Filter * | %{$_.name} foreach($computer in $computers) { $computer $s1 = $null $ADSIComputer = [ADSI]("WinNT://$computer,computer") $adminGroup  = $ADSIComputer.psbase.children.find('Administrators', 'Group') $adminMembers = $adminGroup.psbase.invoke("members") | %{$_.GetType().InvokeMember("Name",'GetProperty',$null,$_,$null)} | %{$s1 += $_ + ","} $computer + "," + $s1.Trim(",") >> .\LocalAdmins.csv } Hope this helps