Version: 3.0.0 alpha
WARNING: Not fully functional yet. Still needs some work.
Verision 3 of the API uses entity framework to build the database. The api is built on .net 8. The api can serve the configuration for the client as well through the endpoint.
- /api/Clients/ClientConfiguration
- /api/Clients/Client
- /api/Clients/ClientConfiguration
- /api/Clients/Client
- Create
ClientHealth
database on your database server. - Install IIS with default options on server that will host API.
- Install .Net 8 Hosting bundle on server.
- Create a new Website in IIS with a custom port of your choice.
- Copy the ClientHealthWebServiceV3.zip file to the server.
- Extract the files from the zip onto the root of the new IIS website.
- Once Extracted, open
appsettings.json
in your favorite text editor.- On line 3, update the
DefaultConnection
string with your database name and a username and password. - At the end of the file, set the
EnableSwagger
line totrue
. - Note the
ClientApiKeys
. Update the key to a password/secret you will use for reading configurations and writing the client health to the database. - Note the
ConfigurationApiKeys
. Update the key to a password/secret you will use for writing configurations to the database. This should be kept more secret than theClientApiKeys
as the configuration key will only be used to write the client configuration. (I'll probably eventually write a powershell script to use the endpoint to modify the configuration more easily.)
- On line 3, update the
- Restart the website.
- Review log file. It should have applied migrations.
- Check the database. It should now contain a
Clients
andClientConfiguration
table. - Browse to https://server.domain.com:7107/swagger. Adjust this url to your iis server and port.
- Browse to https://server.domain.com:7107/swagger.
- Take a copy of the config.json.
- Make your adjustments to the configuration.
- On the Swagger page, open the
/api/Clients/ClientConfiguration
PUT endpoint. - Click "Try it out".
- Enter the
ConfigurationApiKeys
in the ApiKey field. - in the "Request body", copy the entire "config.json" text into the field and click
Execute
.- This will write the configuration to the
ClientConfiguration
table in the database and can then be read by the clients.
- This will write the configuration to the
Client Health script can be copied to each of your clients in various methods either Group Policy, Configuration Manager, Intune, Etc. Below are general guidelines on how to install it.
The config file from the old script has been changed to json. The configuration settings are generally the same as the old.
- You will have to copy the
ConfigMgrClientHealth.ps1
and theconfig.json
that you copied and modified from above. - "Install" these on all of your PCs you want to monitor health on.
- Install location would be recommended at
C:\ProgramData\ClientHealth
. - Create a scheduled task that will run on a daily schedule. The command line will look something like this:
C:\ProgramData\ClientHealth\ConfigMgrClientHealth.ps1 -Config C:\ProgramData\ClientHealth\Config.json
The above are the basics of the v3. the V3 client health script when configured to get the config from the API will be able to update the config from the API.
ConfigMgr Client Health Full documentation
- Client Health now successfully sets the client max log history.
- Client Health now successfully sets the client cache size.
- Fixed an issue where ClientInstallProperty using /skipprereq and specifying multiple components while separating with ";" would break the script.
- Updated criteria for excluding Defender signature updates in the Get-LastInstalledPatches function. Thanks to Scott Ladewig.
- Enabled debug logging in the webservice by default to make troubleshooting easier. Debug logs are stored in the "logs" folder.
This software is provided "AS IS" with no warranties. Use at your own risk.