-
Posts
56 -
Joined
-
Last visited
Profile Information
-
Gender
Male
-
Location
Toronto, Canada
-
Interests
Hiking, Watch Movie and PC Games etc.
Canada Jack's Achievements
Newbie (1/14)
0
Reputation
-
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.