Quantcast
Channel: Configuration Manager 2007 Setup/Deployment forum
Viewing all 443 articles
Browse latest View live

Unable to download MS updates during update list creation

$
0
0

Hi

I have SCCM 2007 SP2 (version  4.00.6487.2000) , when I try to create new Update List I receive the following error:

You do not have security rights to perform this operation.

These are my steps:

-select the MS updates and created new update list

-check option "download the files associate with the selected software updates"

-create new deployment package and set Name and Package source and check option" enable binary differencial replication" . (before I created a new share for the Package Source with correct rights).

-select the distribution point (it's the configuration manager).

-select "download software from the internet"

When I confirm the operation I receive this error:

You do not have security rights to perform this operation.

Have you any idea?

I also verified that when I select the MS update and right click, I have only the option "update list" and not the options "deploy software updates" and "download software updates"

thanks

Chris


Application/Program/Package Parameters?

$
0
0

I attempted in searching for this answer in a couple of the forums and the all famous troubleshooting website "Google", however I don't see a best method of accomplishing what I'm after. I'm currently on a project implementing SCCM 2012 (RTM, we'll be upgrading the servers soon once everything is configured district wide.) for a school district. However, each school uses the same program that can be installed by .MSI, but they all have a different install parameter to be used when issuing the msiexec /i command.

This is a question based towards more configuring an Application, Package, or Program for distribution that has msiexec parameters that need to change by the slightest per subnet/site. What is the best way to configure this .MSI deployment to minimize excessive device collections or 40+ different applications of the same .MSI with different parameters?

Can't Push Advanced Client

$
0
0

I've got a computer that's is driving me nuts!

This computer is at one of my secondary sites.   There are other computers at this site, and they're all working, but I can't get the Advanced Client installed on this one.

The computers appears in my All Systems collection.  It has the site code for my remote site.  If I try to install the client by right-clicking on the computer and selecting Install Client, I don't see any evidence that anything ever happens.  I don't ever see a .CCR file appear on the remote site server, I don't see anything in the CCM.log on the remote server, and I never see a CCMSetup or CCM file appear under sysWOW64 (I even checked System32 for good measure).

If I manually create a .CCR file and place in the ccr.box folder on the remote site server and watch the CCM.log file, I can see the .CCR get processed, but it reports "Mobile client on the target machine has the same version, and 'forced' flag is not turned on."  What might be present on this computer that would make SCCM think that the Advanced Client is installed on this computer.

I checked DNS and DHCP just to make sure this computer was the only one associated with its known IP address, but everything looks just like it should.

Site boundaries?  I've checked them, but I don't see anything wrong.  I've verified that this computers has an IP address within the AD site for that remote location and that the AD Site is the boundary for my SCCM Site.

SCCM Problem, Failed to send registration request

$
0
0


Hello,

I´m using the System Center Configuration Manager 2007.

In the ClientIDManagerStartup.log there is every time the same Error like:

 

Code Snippet

<![LOG[RegTask: Failed to send registration request. Error: 0x8000000a]LOG]!><time="06:47:17.531+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="3" thread="3308" file="regtask.cpp:1314">

<![LOG[RegTask: Client is not registered. Sending registration request...]LOG]!><time="08:55:17.531+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="1" thread="3308" file="regtask.cpp:1434">

<![LOG[RegTask: Failed to send registration request message. Error: 0x8000000a]LOG]!><time="08:55:17.546+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="3" thread="3308" file="regtask.cpp:1139">

<![LOG[RegTask: Failed to send registration request. Error: 0x8000000a]LOG]!><time="08:55:17.546+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="3" thread="3308" file="regtask.cpp:1314">

 

Pleas help me to get this error away, I don’t know what I have do to.

Thanks!

 

German:

Hallo,

Ich verwende den System Center Configuration Manager 2007.

In der Logdatei: ClientIDManagerStartup.log kommt immer der gleiche Fehler:

 

Code Snippet

<![LOG[RegTask: Failed to send registration request. Error: 0x8000000a]LOG]!><time="08:55:17.546+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="3" thread="3308" file="regtask.cpp:1314">

<![LOG[RegTask: Failed to send registration request. Error: 0x8000000a]LOG]!><time="06:47:17.531+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="3" thread="3308" file="regtask.cpp:1314">

<![LOG[RegTask: Client is not registered. Sending registration request...]LOG]!><time="08:55:17.531+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="1" thread="3308" file="regtask.cpp:1434">

<![LOG[RegTask: Failed to send registration request message. Error: 0x8000000a]LOG]!><time="08:55:17.546+420" date="07-25-2008" component="ClientIDManagerStartup" context="" type="3" thread="3308" file="regtask.cpp:1139">

 

Vielleicht habt ihr ja eine Ahnung wie dieser Fehler hervorgerufen wird und wie ich ihn wegbekommen kann. Danke für eure Hilfe.

Mit freundlichen Grüßen,

Argre

Powershell Script not creating shortcut to desktop after SCCM 2007 deployment?

$
0
0

I am currently in the process of deploying Windows 7 to a variety of PCs (Very new to powershell). The deployment its self is successful, however throughout the task sequence there is a specific step in which a shortcut must be created. After the deployment is complete there is no error or issue to say that the script had not been successful yet, it clearly has not worked. The shortcut is located on a server, but the step within the task sequence is run with the network administrator account, so I doubt it is a permission issue. If you run the script within PowerShell once Windows is installed it works correctly creating the shortcut to the application. If anyone has had a similar experience or any information which may help then I'd appreciate your input.

This is the command line sequence that is used within the task sequence:

powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -WindowStyle Hidden -File .\AppShortcut.ps1

This is the actual powershell script.

$AppLocation = "\PROGRAM\Testprogram\TestApp\App.exe"

$WshShell = New-Object -ComObject WScript.Shell

$desktop = $wshShell.SpecialFolders.Item("AllUsersDesktop")

$Shortcut = $WshShell.CreateShortcut($desktop + "\App.lnk")

$Shortcut.TargetPath = $AppLocation

$Shortcut.IconLocation = "\PROGRAM\Testprogram\TestApp\App.exe"

$Shortcut.WorkingDirectory ="\PROGRAM\Testprogram\TestApp\"

$Shortcut.Save()

How manually remove a DP in SCCM 2007 ?

$
0
0

Hello,

we had a disaster and our old SCCM 2007 site server is dead.

We already have a SCCM 2012 site server up and running and a old SCCM 2007 distribution point still up.

we need to convert the old DP to a 2012 DP.

How can i manually remove the DP from SCCM 2007 without an access to the console, site server, bd, etc...?

On the DP, Can I just remove all the share and permission?

thanks

Prevent SCCM Client Installation on the target computers

$
0
0

I need a sure-fire way to prevent manual, automated, deployment, or push SCCM Client installs from specific computers (they are medical, and will violate FDA regulations if non-approved software is installed on them).  I'm aware of the Registry entry on the Site Server, but, am looking for something on the target computer side (RegHack, phoney file/folder, etc.).  Discovery of the computers, but inability to install the client is OK (we'll be removing them from the Discovery LDAP queries as needed).

Our SCCM Hierarchy is in one Domain, and the clients all in other Domains, so, I could look at excluding the client install account, but, that won't stop a manual or automated install.

Thanks.

SCCM 2007 R3 New DP , how to add to all existing packages

$
0
0

Hi

Is there a script which allows an SCCM 2007 R3 DP to be automatically added as a DP for all existing packages? I know this is easily done in 2012 with Powershell support or DP Groups, but was wondering how to automatically add a DP to all existing packages in SCCM 2007 R3

Any help greatly appreciated!

Thanks

Max


Link 2013 automatic activation

$
0
0

I am deploying link 2013 using sccm 2007, however it's not automatically activating for me. Below is the xml code i'm using.

I have included the command to do this but i still get prompted to activate after install. There is no issues with internet access.

Any help would be greatly appreciated.:)

  
 <Setting Id="SETUP_REBOOT" Value="Never" />
 <Setting Id="AUTO_ACTIVATE" Value="1" />
 
 

Changing a Boundary in SCCM 2007

$
0
0

I have a live SCCM 2007 environment, and I need to change the existing boundaries so as to accommodate a SCCM 2012 environment that we are introducing (and will eventually migrate to). The SCCM 2007 boundaries are all ‘IP address range’. So my question is as follows: if I delete an existing ‘IP address range’ boundary and create a new ‘IP address range’ boundary (all in SCCM 2007), what will the impact be on the SCCM 2007 Clients that were included in the old boundary, and now find themselves included in the new boundary? I assume that the next time to SCCM Client restarts, it will be assigned to the new boundary, and all is good. But if anyone has any direct experience of this scenario, I'd be interested to hear from you.

Thanks in advance for any advice, Rob

SCCM side by side upgrade

$
0
0
Hi!

We want to get a fresh start with SCCM, and not migrate data from our existing SMS servers over to SCCM.
In other words we want to have a SMS infrastructure and a SCCM infrastructure besides each other in the same AD domain, and move clients over to the new SCCM servers.

My plan is to take one site at a time and remove site boundaries from SMS, wait for replication and then recreate the site boundaries in SCCM. Then install SCCM client on the computers in that site.

We have tried this in our lab, but but have experienced SMS clients being automatically reassigned to the new SCCM site before we have changed the site boundaries!

How do I keep the two separate, and avoid client computers to being reassigned withour our control?



Regards,

Marius
Marius

Easy one! Client install directory permissions?

$
0
0

Could someone kindly share with me the default directory permissions for the ...Program Files\Microsoft Configuration Manager\Client folder on a SCCM 2012 primary server installation?

I inadvertently modified them thinking I was working on the copied version of that folder and need to reset them back.  Would prefer not to do the site reset option if at all possible.

Thanks!

Client not installing automatically

$
0
0
My new PCs are not getting the 2007 client installed automatically.  Looking at the package the requirements was set to "This program can only run on specified client platform"  All IA64 Windows Server 2003 (Non R2) was checked.  Also on advanced tab for the program "Disable this program on computers where it is advertised" was checked.  I did not make these changes so i am wondering if the are default settings.  I have since set the requirement tab to "This program can run on any platform" and removed the tick "Disable this program on computers where it is advertised"

Jason

During OSD does the DHCP address received remain "sticky"?

$
0
0

Each of the facilities in my organization have multiple subnets assigned to them and are provided DHCP addresses from a few different DHCP servers on the network. We have a couple sites where computers are imaged with SCCM via OSD Task Sequences that during the imaging process end up with the default MS address of 169.254.x.x part way through the process. The issue seems to present itself when 1 of the 3 subnets at that site has used all its DHCP leases while the other 2 are almost completely unused. Before I consult with the network team, I would like to know if there are any "sticky" attributes that SCCM may have where if the machine started imaging with a particular address from a DHCP scope, must it continue to receive an address from the same scope it started on throughout the entire imaging process?

Another question - if the client is in the process of pulling down the operating system and suddenly loses its IP address (say the DHCP lease expired), does the SCCM OSD process have a way to recover from that?

(We use WinPE to boot from and do not use PXE)

Thank you.

SCCM 2012 sp1 installtion. I completed all pre requisite but stuck with error for SQL sever log on issue.

$
0
0

I  stuck with this issue. The given solution did not worked.

steps i followed still:
I create virtual machine with kunal as user
then from same account I installed all pre requisites including SQL 2012 then i install sccm.
But installation error occurred with same issue.
In SCCM installation it shows some db name as CM_IND which i do not find in SQL.

The script shows all details with database name CM_IND.
I am just trying SCCM as evaluation purpose only.

Steps given as solution did not suit for this issue.
In addition I did not found SQL reporting and other services at SQL installation.
I have used SQL evaluation standard edition to this SCCM 2012 SP1.


Where is Toolkit Documentation_x86-en_us.msp?

$
0
0
My attempt to install SCCM 2012 R2 has been stalled when "adksetup" is demanded.  After I downloaded it and run adksetup, it requires 'Toolkit Documentation_x86-en_us.msp" in order to continue the installation.  All searches online have not yielded this documentation.  Why is Microsoft product install so difficult?  Anyone aware where this Toolkit Documentation can be downloaded from, please respond.  Thanks.

SCCM client agent installation failed

$
0
0

We have SCCM 2012 R2 setup with IBCM server. we are facing issue sccm agent installationon internet base client machines....Please suggest...

Log :-

Unexpected row count (0) retrieved from AD.ccmsetup16/10/2014 15:43:441800 (0x0708)
Failed to get site version from AD with error 0x80004005ccmsetup16/10/2014 15:43:441800 (0x0708)
Sending message header '<Msg SchemaVersion="1.1"><ID>{4208965B-39B7-43CB-834D-28F389048AC3}</ID><SourceHost>HOME-PC</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:HOME-PC:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>https://configmgr.mahindracomviva.com</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-10-16T10:13:44Z</SentTime><Body Type="ByteRange" Offset="0" Length="186"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'ccmsetup16/10/2014 15:43:441800 (0x0708)
MapNLMCostDataToCCMCost() returning Cost 0x1ccmsetup16/10/2014 15:43:441800 (0x0708)
CCM_POST 'https://configmgr.mahindracomviva.com/ccm_system/request'ccmsetup16/10/2014 15:43:441800 (0x0708)
Begin searching client certificates based on Certificate Issuersccmsetup16/10/2014 15:43:441800 (0x0708)
Completed searching client certificates based on Certificate Issuersccmsetup16/10/2014 15:43:441800 (0x0708)
Begin to select client certificateccmsetup16/10/2014 15:43:441800 (0x0708)
The 'Certificate Selection Criteria' was not specified, counting number of certificates present in 'MY' store of 'Local Computer'.ccmsetup16/10/2014 15:43:441800 (0x0708)
4 certificate(s) found in the 'MY' certificate store.ccmsetup16/10/2014 15:43:441800 (0x0708)
The 'MY' of 'Local Computer' store has 4 certificate(s). Using custom selection criteria based on the machine name.ccmsetup16/10/2014 15:43:441800 (0x0708)
Machine name is 'HOME-PC'.ccmsetup16/10/2014 15:43:441800 (0x0708)
There are no certificate(s) that meet the criteria.ccmsetup16/10/2014 15:43:441800 (0x0708)
Performing search that includes SAN2 extensions...ccmsetup16/10/2014 15:43:441800 (0x0708)
Certificate [Thumbprint F5CAC89C23EFDCB1934C2A0BF0ABD1AB2E1B3CAC] doesn't have SAN2 extension.ccmsetup16/10/2014 15:43:441800 (0x0708)
Found a certificate with subject name as ‘COMV-IBCM-GGN.COMVIVA.COM’, but will continue to look for the certificate with subject name as ‘HOME-PC’.ccmsetup16/10/2014 15:43:441800 (0x0708)
Certificate [Thumbprint 94D8210DA461FB18F0D53FBA32B6332D4C9AD86C] doesn't have SAN2 extension.ccmsetup16/10/2014 15:43:441800 (0x0708)
Certificate [Thumbprint 570E3ECD56798292943128AA6BD2D3B60409947C] doesn't have SAN2 extension.ccmsetup16/10/2014 15:43:441800 (0x0708)
Using custom selection criteria based on the machine NetBIOS name.ccmsetup16/10/2014 15:43:441800 (0x0708)
Machine name is 'HOME-PC'.ccmsetup16/10/2014 15:43:441800 (0x0708)
There are no certificate(s) that meet the criteria.ccmsetup16/10/2014 15:43:441800 (0x0708)
GetSSLCertificateContext failed with error 0x87d00281ccmsetup16/10/2014 15:43:441800 (0x0708)
A Fallback Status Point has not been specified.  Message with STATEID='315' will not be sent.ccmsetup16/10/2014 15:43:441800 (0x0708)
GetHttpRequestObjects failed for verb: 'CCM_POST', url: 'https://configmgr.mahindracomviva.com/ccm_system/request'ccmsetup16/10/2014 15:43:441800 (0x0708)
Failed to get site version from MP 'https://configmgr.mahindracomviva.com' with error 0x87d00281ccmsetup16/10/2014 15:43:441800 (0x0708)
SiteCode:         GGNccmsetup16/10/2014 15:43:441800 (0x0708)
SiteVersion:      ccmsetup16/10/2014 15:43:441800 (0x0708)
Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.ccmsetup16/10/2014 15:43:441800 (0x0708)
Only one MP https://configmgr.mahindracomviva.com is specified. Use it.ccmsetup16/10/2014 15:43:441800 (0x0708)
Searching for DP locations from MP(s)...ccmsetup16/10/2014 15:43:441800 (0x0708)
Unable to retrieve AD site membershipLocationServices16/10/2014 15:43:441800 (0x0708)
Local machine is not a member of an AD domainLocationServices16/10/2014 15:43:441800 (0x0708)
DhcpGetOriginalSubnetMask entry point is supported.LocationServices16/10/2014 15:43:441800 (0x0708)
Begin checking Alternate Network ConfigurationLocationServices16/10/2014 15:43:441800 (0x0708)
Finished checking Alternate Network ConfigurationLocationServices16/10/2014 15:43:441800 (0x0708)
Adapter {E6BEE3FC-06F0-42D2-B5B3-4F7B0C05247D} is DHCP enabled. Checking quarantine status.LocationServices16/10/2014 15:43:441800 (0x0708)
Adapter {0AFBCCE2-1482-4BF4-A39E-0A4A9F99A0B1} is DHCP enabled. Checking quarantine status.LocationServices16/10/2014 15:43:441800 (0x0708)
Adapter {4B8A2A53-61E1-49A6-A15A-47746CE73FFD} is DHCP enabled. Checking quarantine status.LocationServices16/10/2014 15:43:441800 (0x0708)
Adapter {94D699BB-E9AF-4806-A67E-F749A125B095} is DHCP enabled. Checking quarantine status.LocationServices16/10/2014 15:43:441800 (0x0708)
Adapter {6BDA1337-26C5-4F6A-9F4A-16799FF4384B} is DHCP enabled. Checking quarantine status.LocationServices16/10/2014 15:43:441800 (0x0708)
Sending message body '<ContentLocationRequest SchemaVersion="1.00">
  <AssignedSite SiteCode="GGN"/>
  <ClientPackage/>
  <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="1">
    <ADSite Name=""/>
    <Forest Name=""/>
    <Domain Name=""/>
    <IPAddresses>
<IPAddress SubnetAddress="14.98.171.173" Address="14.98.171.173"/>
<IPAddress SubnetAddress="169.254.0.0" Address="169.254.30.82"/>
<IPAddress SubnetAddress="2002:0E62:ABAD:0000" Address="2002:0E62:ABAD:0000:0000:0000:0E62:ABAD"/>
    </IPAddresses>
  </ClientLocationInfo>
</ContentLocationRequest>
'ccmsetup16/10/2014 15:43:441800 (0x0708)
Sending message header '<Msg SchemaVersion="1.1"><ID>{DF70CBCE-A11D-4479-B965-C68CF73F851F}</ID><SourceHost>HOME-PC</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:HOME-PC:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>https://configmgr.mahindracomviva.com</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-10-16T10:13:44Z</SentTime><Body Type="ByteRange" Offset="0" Length="1370"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>'ccmsetup16/10/2014 15:43:441800 (0x0708)
MapNLMCostDataToCCMCost() returning Cost 0x1ccmsetup16/10/2014 15:43:441800 (0x0708)
CCM_POST 'https://configmgr.mahindracomviva.com/ccm_system/request'ccmsetup16/10/2014 15:43:441800 (0x0708)
Begin searching client certificates based on Certificate Issuersccmsetup16/10/2014 15:43:441800 (0x0708)
Completed searching client certificates based on Certificate Issuersccmsetup16/10/2014 15:43:441800 (0x0708)
Begin to select client certificateccmsetup16/10/2014 15:43:441800 (0x0708)
The 'Certificate Selection Criteria' was not specified, counting number of certificates present in 'MY' store of 'Local Computer'.ccmsetup16/10/2014 15:43:441800 (0x0708)
4 certificate(s) found in the 'MY' certificate store.ccmsetup16/10/2014 15:43:441800 (0x0708)
The 'MY' of 'Local Computer' store has 4 certificate(s). Using custom selection criteria based on the machine name.ccmsetup16/10/2014 15:43:441800 (0x0708)
Machine name is 'HOME-PC'.ccmsetup16/10/2014 15:43:441800 (0x0708)
There are no certificate(s) that meet the criteria.ccmsetup16/10/2014 15:43:441800 (0x0708)
Performing search that includes SAN2 extensions...ccmsetup16/10/2014 15:43:441800 (0x0708)
Certificate [Thumbprint F5CAC89C23EFDCB1934C2A0BF0ABD1AB2E1B3CAC] doesn't have SAN2 extension.ccmsetup16/10/2014 15:43:441800 (0x0708)
Found a certificate with subject name as ‘COMV-IBCM-GGN.COMVIVA.COM’, but will continue to look for the certificate with subject name as ‘HOME-PC’.ccmsetup16/10/2014 15:43:441800 (0x0708)
Certificate [Thumbprint 94D8210DA461FB18F0D53FBA32B6332D4C9AD86C] doesn't have SAN2 extension.ccmsetup16/10/2014 15:43:441800 (0x0708)
Certificate [Thumbprint 570E3ECD56798292943128AA6BD2D3B60409947C] doesn't have SAN2 extension.ccmsetup16/10/2014 15:43:441800 (0x0708)
Using custom selection criteria based on the machine NetBIOS name.ccmsetup16/10/2014 15:43:441800 (0x0708)
Machine name is 'HOME-PC'.ccmsetup16/10/2014 15:43:441800 (0x0708)
There are no certificate(s) that meet the criteria.ccmsetup16/10/2014 15:43:441800 (0x0708)
GetSSLCertificateContext failed with error 0x87d00281ccmsetup16/10/2014 15:43:441800 (0x0708)
GetHttpRequestObjects failed for verb: 'CCM_POST', url: 'https://configmgr.mahindracomviva.com/ccm_system/request'ccmsetup16/10/2014 15:43:441800 (0x0708)
GetDPLocations failed with error 0x87d00281ccmsetup16/10/2014 15:43:441800 (0x0708)
Failed to get DP locations as the expected version from MP 'https://configmgr.mahindracomviva.com'. Error 0x87d00281ccmsetup16/10/2014 15:43:441800 (0x0708)
A Fallback Status Point has not been specified.  Message with STATEID='101' will not be sent.ccmsetup16/10/2014 15:43:441800 (0x0708)
Next retry in 10 minute(s)...ccmsetup16/10/2014 15:43:441800 (0x0708)


Regards Sheetla Maurya

Client Install Fails - Unable to get Win32_OperatingSystem object

$
0
0
I have a PC that won't install the SCCM client via Client Push.  In the CCM.Log file on the site server, it connects to the IPC$ and admin$ shares using my client installation account, but then it comes back with this error:

---> Unable to get Win32_OperatingSystem object from WMI on remote machine "PCNAME", error = 0x80080005.

I know that error means that access was denied to WMI, and I verified that when I run wbemtest manually (using the same client installation account), I can connect to the root\cimv2 object on that PC but when I try to enumerate the instances of the Win32_OperatingSystem object, I get the same error.

I also tried using Computer Management applet (remotely - I have no local access to this PC) to look at the WMI Control properties.  Again, I get the same access denied error so I can't check/change the security permissions that way.

I have verified that my client installation account is in the local Administrators group of the PC.  I've already tried rebuilding the WMI repository - that worked but it didn't fix the access issue.  I know I can install the client manually but I'm guessing I'd still have a problem with inventories, etc. that are dependent on access to that WMI object.  Any suggestions about how to go about fixing the WMI access issue?

Thanks so much, --Jo

SCCM server core per socket allocation

$
0
0
Apologies if my wording is off as this is a bit over my head. I have a Client that is configuring a new SCCM server to push to approximately 2500 users. He is looking for a recommendation as to how many cores per socket should be set for best performance. He is currently experiencing some latency and freezing. thanks in advance.

distributing a registry key with SCCM 2007 SP2

$
0
0

Dear Guyes, please i've created a package with a registry key "regfile.reg" in it and a program with "regedit.exe /s regfile.reg" and another program with "reg import regfile.reg" and tried to advertise both programs and the package was delivered to the client and the advertisement status said that it had started and completed successfully but when i check for the registry key on the client i didn't find the registry key on it, so i wanna know if the SCCM is capable of distributing registry keys? and if yes, is my procedure right or there is another procedure to import the registry key on clients using SCCM?

Thanks in advance.  

Viewing all 443 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>