8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12fef9b commit f30ba5cCopy full SHA for f30ba5c
doc/api/single-executable-applications.md
@@ -54,13 +54,13 @@ tool, [postject][]:
54
55
Using PowerShell:
56
57
- ```bash
+ ```powershell
58
cp (Get-Command node).Source hello.exe
59
```
60
61
Using Command Prompt:
62
63
+ ```text
64
for /F "tokens=*" %n IN ('where.exe node') DO @(copy "%n" hello.exe)
65
66
@@ -79,7 +79,7 @@ tool, [postject][]:
79
[signtool][] can be used from the installed [Windows SDK][]. If this step is
80
skipped, ignore any signature-related warning from postject.
81
82
83
signtool remove /s hello.exe
84
85
@@ -131,7 +131,7 @@ tool, [postject][]:
131
A certificate needs to be present for this to work. However, the unsigned
132
binary would still be runnable.
133
134
135
signtool sign /fd SHA256 hello.exe
136
137