Jump to content


RaymondTH

New SCCM Deployment, Full Policy Not Applying To All Clients

Recommended Posts

I have a strange one here, Ive created a new SCCM deployment exclusively for IBCM clients.

 

The clients are installing and reporting back hardware/software inventory but nothing related to Remote Tools will apply to any client.

 

The policy setup is very simple just the ICBM clients policy (Deployed to all systems) and the default one. Most settings are getting applied like those for the software center but nothing related to remote tools will apply and the feature is listed as installed but not enabled.

 

Yet in the same policy Remote Control is enabled for local administrators. Even editing the default policy to enable remote tools didn't solve the issue.

 

The clients are 7-10 and server 2008R2-2016

 

Ive tried running a machine policy eval cycle but this is a site wide issue.

 

Can anyone suggest where to start with this ?

Share this post


Link to post
Share on other sites

In case anyone else comes across this here is how I solved it.

Save this as a .mof

#PRAGMA namespace("\\\\.\\root\\ccm\\policy\\machine\\ActualConfig")
[CCM_Policy_PartialPolicy(true)]

instance of CCM_RemoteToolsConfig

{
Type = 1;

// Data properties
[CCM_Policy_Override(TRUE)]
Enabled = TRUE;
AllowLocalAdminToDoRemoteControl = TRUE;
AccessLevel = 2;
AllowClientChange = False;
AllowRemCtrlToUnattended = True;
AudibleSignal = 1;
ClipboardAccessPermissionRequired = False;
EnableRA = True;
EnableTS = True;
PermissionRequired = False;
RemCtrlConnectionBar = True;
RemCtrlTaskbarIcon = True;
TSUserAuthentication = True;
AllowRAUnsolicitedControl = True;
AllowRAUnsolicitedView = True;
};

and then run mofcomp.exe filename.mof on the clients.

I built a c# program to do it automatically and deployed it as a package to all clients.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.