6.5 KiB
title, description, ms.assetid, ms.prod, ms.mktglfcycl, ms.sitesec, ms.pagetype, author, ms.author, ms.topic, ms.localizationpriority, ms.date
title | description | ms.assetid | ms.prod | ms.mktglfcycl | ms.sitesec | ms.pagetype | author | ms.author | ms.topic | ms.localizationpriority | ms.date |
---|---|---|---|---|---|---|---|---|---|---|---|
Add unsigned app to code integrity policy (Windows 10) | When you want to add an unsigned app to a code integrity policy, you need to start with a code integrity policy created from a reference device. | 580E18B1-2FFD-4EE4-8CC5-6F375BE224EA | w10 | manage | library | store, security | TrudyHa | TrudyHa | conceptual | high | 10/17/2017 |
Add unsigned app to code integrity policy
Applies to
- Windows 10
- Windows 10 Mobile
When you want to add an unsigned app to a code integrity policy, you need to start with a code integrity policy created from a reference device. Then, create the catalog files for your unsigned app, sign the catalog files, and then merge the default policy that includes your signing certificate with existing code integrity policies.
In this section
- Create a code integrity policy based on a reference device
- Create catalog files for your unsigned app
- Catalog signing with Device Guard signing portal
Create a code integrity policy based on a reference device
To add an unsigned app to a code integrity policy, your code integrity policy must be created from golden image machine. For more information, see Create a Device Guard code integrity policy based on a reference device.
Create catalog files for your unsigned app
Creating catalog files starts the process for adding an unsigned app to a code integrity policy.
Before you get started, be sure to review these best practices and requirements:
Requirements
- You'll use Package Inspector during this process.
- Only perform this process with a code integrity policy running in audit mode. You should not perform this process on a system running an enforced Device Guard policy.
Best practices
- Naming convention -- Using a naming convention makes it easier to find deployed catalog files. We'll use *-Contoso.cat as the naming convention in this topic. For more information, see the section Inventorying catalog files by using Configuration Manager in the Device Guard deployment guide.
- Where to deploy code integrity policy -- The code integrity policy that you created should be deployed to the system on which you are running Package Inspector. This will ensure that the code integrity policy binaries are trusted.
Copy the commands for each step into an elevated Windows PowerShell session. You'll use Package Inspector to find and trust all binaries in the app.
To create catalog files for your unsigned app
-
Start Package Inspector to scan the C drive.
PackageInspector.exe Start C:
-
Copy the installation media to the C drive.
Copying the installation media to the C drive ensures that Package Inspector finds and catalogs the installer. If you skip this step, the code integrity policy may trust the application to run, but not trust it to be installed.
-
Install and start the app.
All binaries that are used while Package Inspector is running will be part of the catalog files. After the installation, start the app and make sure that any product updates are installed and any downloadable content was found during the scan. Then, close and restart the app to make sure that the scan found all binaries.
-
Stop the scan and create definition and catalog files.
After app install is complete, stop the Package Inspector scan and create catalog and definition files on your desktop.
$ExamplePath=$env:userprofile+"\Desktop"
$CatFileName=$ExamplePath+"\LOBApp-Contoso.cat"
$CatDefName=$ExamplePath+"\LOBApp.cdf"
PackageInspector.exe Stop C: -Name $CatFileName -cdfpath $CatDefName
The Package Inspector scan catalogs the hash values for each binary file that is finds. If the app that was scanned are updated, do this process again to trust the new binaries hash values.
After you're done, the files are saved to your desktop. You still need to sign the catalog file so that it will be trusted within the code integrity policy.
Catalog signing with Device Guard signing portal
To sign catalog files with the Device Guard signing portal, you need to be signed up with the Microsoft Store for Business. For more information, see Sign up for the Microsoft Store for Business.
Catalog signing is a vital step to adding your unsigned apps to your code integrity policy.
To sign a catalog file with Device Guard signing portal
-
Sign in to the Microsoft Store for Business or Store for Education.
-
Click Settings, click Store settings, and then click Device Guard.
-
Click Upload to upload your unsigned catalog files. These are the catalog files you created earlier in Create catalog files for your unsigned app.
-
After the files are uploaded, click Sign to sign the catalog files.
-
Click Download to download each item:
- signed catalog file
- default policy
- root certificate for your organization
When you use the Device Guard signing portal to sign a catalog file, the signing certificate is added to the default policy. When you download the signed catalog file, you should also download the default policy and merge this code integrity policy with your existing code integrity policies to protect machines running the catalog file. You need to do this step to trust and run your catalog files. For more information, see the Merging code integrity policies in the Device Guard deployment guide.
-
Open the root certificate that you downloaded, and follow the steps in Certificate Import wizard to install the certificate in your machine's certificate store.
-
Deploy signed catalogs to your managed devices. For more information, see Deploy catalog files with Group Policy, or Deploy catalog files with System Center Configuration Manager in the Device Guard deployment guide.