-
Posts
56 -
Joined
-
Last visited
Everything posted by Canada Jack
-
Package install keeps failing with exit code 1619
Canada Jack replied to pbalderos's topic in Configuration Manager 2007
Windows Installer Error 1619 When You Install from NTFS-Protected Directories http://support.microsoft.com/kb/316309 -
80004005 is an access denied issue, so check network access account set up and network driver correctly.
-
How to determine is a machine is physical or virtual.
Canada Jack replied to AJ82's topic in Configuration Manager 2007
Here is the code that you can use to find whether your server is Physical or VMWare box. This code uses Win32_ComputerSystem WMI class to query for Manufacturer property. On Physical servers, this property will give you the name of real manufacturer. While, on Virtual servers, it will give you "VMWare Inc." for VMWare boxes. '---------------------------------------------------------------------------- strComputer = "." wscript.echo getMachineType(strComputer) function GetMachineType(strComputer) Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colSettings = objWMIService.ExecQuery _ ("Select * from Win32_ComputerSystem") For Each objComputer in colSettings strType = objComputer.Manufacturer Next if lcase(left(strType,6))="vmware" then GetMachineType="V" 'Virtual VMWare Box. else GetMachineType="P" 'Physical Machine end if end function '------------------------------------------------------------------------- -
Hi guys We deployment SCCM-Test-Package to 4000 PCs (Desktop) recently, 90% are Succeeded. I checked the execmgr.log that PChas failed. And found “Could not find the policy in WMI for package 9000046A program 01-[Desktop]-SCCM-Test-Package”. So first I think this is WMI issues. But later on I checked the execmgr.log of some PCs that shows Succeeded, it has same message in log file. Did some google, someone said it’s a bug of SCCM 2012 SP1. But someone said this is relate to WMI that broken by other application. I am lost. So anybody has same issues before? Thanks execmgr.log
-
It's seems Certificate issue.
-
For example: I created Task Sequence that call A, and created collection that call B. I deploy the A to B, however later on, I need remove A from B. But I didn't found any remove button in properties of Collection B. Current I think can delete Collection B. But if I still need Collection B, so any good idea? Thanks a lot.
-
Physical machine or VM for capture
Canada Jack replied to Serial's topic in Configuration Manager 2012
Virtual machine -
Unable to boot up PXE using SCCM 2012
Canada Jack replied to outsiders_86's topic in Configuration Manager 2012
Reboot SCCM server and re-import computer mac again -
SCCM Client package will not push
Canada Jack replied to Bill the Cat's question in Troubleshooting, Tools, Hints and Tips
The log is show "<![LOG[Failed to access source file (2). Waiting for retry...]LOG]!><time="16:46:12.507+240" date="05-31-2013" component="ccmsetup" context="" type="2" thread="3648" file="ccmsetup.cpp:5665">" Please check your network access account or you may try use local administrator account. -
I would say - rebuild the package and distributed to the distribution point again.