Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct IsWow64Process2 system requirements #308

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Docusaurus/docs/tools/burn/builtin-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The Burn engine offers a set of commonly-used variables so you can use them with
| LocalAppDataFolder | The well-known folder for CSIDL_LOCAL_APPDATA. |
| LogonUser | The current user name. |
| MyPicturesFolder | The well-known folder for CSIDL_MYPICTURES. |
| NativeMachine | Set to an [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. Set only on Windows 10 version 1511 (TH2) and later. |
| NativeMachine | Set to an [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. Set only on Windows 10, version 1709 and later. |
| NTProductType | Numeric product type from OS version information. |
| NTSuiteBackOffice | Non-zero if OS version suite is Back Office. |
| NTSuiteDataCenter | Non-zero if OS version suite is Datacenter. |
Expand Down
2 changes: 1 addition & 1 deletion src/Docusaurus/docs/tools/wixext/wininfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ QueryWindowsSuiteInfo sets one or more of the following session properties for [

| Property | Description |
| -------- | ----------- |
| WIX_NATIVE_MACHINE | Set to an [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. This property is set only on Windows 10 version 1511 (TH2) and later. |
| WIX_NATIVE_MACHINE | Set to an [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. This property is set only on Windows 10, version 1709 and later. |
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The Burn engine offers a set of commonly-used variables so you can use them with
* LocalAppDataFolder - gets the well-known folder for CSIDL\_LOCAL\_APPDATA.
* LogonUser - gets the current user name.
* MyPicturesFolder - gets the well-known folder for CSIDL\_MYPICTURES.
* NativeMachine - gets the [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. This variable was added in v3.14 and is only set on Windows 10, version 1511 (TH2) and higher.
* NativeMachine - gets the [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. This variable was added in v3.14 and is only set on Windows 10, version 1709 and higher.
* NTProductType - numeric product type from OS version information.
* NTSuiteBackOffice - non-zero if OS version suite is Back Office.
* NTSuiteDataCenter - non-zero if OS version suite is Datacenter.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ WixUtilExtension will automatically schedule the custom actions as needed after
</td>

<td>
<p>Set to an [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. This property was added in v3.14 and is only set on Windows 10, version 1511 (TH2) and higher.</p>
<p>Set to an [Image File Machine value](https://docs.microsoft.com/en-us/windows/win32/sysinfo/image-file-machine-constants) representing the native architecture of the machine. This property was added in v3.14 and is only set on Windows 10, version 1709 and higher.</p>
</td>
</tr>
</table>
Loading