Skip to content

Commit b8c8965

Browse files
Merge pull request #127398 from Jaxelr/patch-1
Update how-to-signing-integrations.md
2 parents 7dfab71 + 7905fe7 commit b8c8965

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

articles/trusted-signing/how-to-signing-integrations.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ To install the Trusted Signing Client Tools using PowerShell, start PowerShell *
7272
```PowerShell
7373
$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri "https://download.microsoft.com/download/6d9cb638-4d5f-438d-9f21-23f0f4405944/TrustedSigningClientTools.msi" -OutFile .\TrustedSigningClientTools.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I TrustedSigningClientTools.msi /quiet'; Remove-Item .\TrustedSigningClientTools.msi
7474
```
75-
75+
7676
### Summary of manual setup steps
7777

7878
1. [Download and install SignTool](#download-and-install-signtool).
@@ -102,7 +102,7 @@ Another option is to use the latest *nuget.exe* file to download and extract the
102102
1. Download and extract Windows SDK Build Tools NuGet package by running the following installation command:
103103

104104
```powershell
105-
.\nuget.exe install Microsoft.Windows.SDK.BuildTools -Version 10.0.22621.3233 -x
105+
.\nuget.exe install Microsoft.Windows.SDK.BuildTools -x
106106
```
107107

108108
### Download and install .NET 8.0 Runtime
@@ -111,8 +111,8 @@ The components that SignTool uses to interface with Trusted Signing require the
111111

112112
For example:
113113

114-
- For x64 SignTool.exe: [Download .NET 8.0 Runtime - Windows x64 installer](https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-8.0.4-windows-x64-installer)
115-
- For x86 SignTool.exe: [Download .NET 8.0 Runtime - Windows x86 installer](https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-8.0.4-windows-x86-installer)
114+
- For x64 SignTool.exe: [Download .NET 8.0 Runtime - Windows x64 installer](https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-8.0.18-windows-x64-installer)
115+
- For x86 SignTool.exe: [Download .NET 8.0 Runtime - Windows x86 installer](https://dotnet.microsoft.com/download/dotnet/thank-you/runtime-8.0.18-windows-x86-installer)
116116

117117
### Download and install the Trusted Signing dlib package
118118

@@ -125,9 +125,12 @@ To download and install the Trusted Signing dlib package (a .zip file):
125125
Another option is to download the [Trusted Signing dlib package](https://www.nuget.org/packages/Microsoft.Trusted.Signing.Client) via NuGet similar like the Windows SDK Build Tools NuGet package:
126126

127127
```powershell
128-
.\nuget.exe install Microsoft.Trusted.Signing.Client -Version 1.0.53 -x
128+
.\nuget.exe install Microsoft.Trusted.Signing.Client -x
129129
```
130130

131+
> [!NOTE]
132+
> We recommend using the latest version of any of the required resources.
133+
131134
### Create a JSON file
132135

133136
To sign by using Trusted Signing, you need to provide the details of your Trusted Signing account and certificate profile that were created as part of the prerequisites. You provide this information on a JSON file by completing these steps:

0 commit comments

Comments
 (0)