How To Tell What Version Of Windows I Have And Verify Its Details
Table of Contents
- Identifying Windows Version via System Settings and Advanced Tools
- Accessing Windows Version in the Settings App
- Using System Information (msinfo32) for Detailed Version Data
- Mapping Windows Version Numbers to Release Names and Build Types
- Using Command Prompt and PowerShell for Windows Version Detection
- Executing `systeminfo` in Command Prompt
- PowerShell Script for Windows Edition and Installed Updates
- Alternative Command Prompt Commands for Version Detection
- Parsing `wmic product get name,version` for Installation Media
- Visual Clues and UI Differences Across Windows Versions
- Start Menu and Taskbar Evolution
- Windows Logo Watermark and Version Identification
- Default Wallpapers and System Sounds as Version Identifiers
- File Explorer Ribbon and Context Menu Variations
- Registry Editor and Hidden System Files for Advanced Windows Version Detection
- Accessing Windows Version Data via Registry Editor
- Decoding the Build Lab for Release Stage, Date, and Architecture
- Locating Windows Installation Source via `unattend.xml`
- Checking Boot Environment (BIOS vs. UEFI) and Windows Version Compatibility
- FAQ
- How can I determine which version of Windows is installed on my computer?
- How do I find out what version of Windows is running on my laptop?
- What’s the best way to check what version of Windows I have?
- How can I tell if my Windows is 32-bit or 64-bit?
- How do I check which Windows version is on my laptop?
- Where can I find out what version of Windows is installed on my computer?
Determining the exact Windows version installed on a system is essential for compatibility checks, troubleshooting, and optimizing performance. Whether managing enterprise deployments or troubleshooting personal devices, precise version identification—spanning release names, build numbers, and edition types—ensures accurate system administration. This guide provides structured methods to extract version details from system settings, command-line tools, visual cues, and advanced registry entries, catering to both novice users and IT professionals.
From interpreting build labels in the Registry to analyzing command-line outputs, each approach offers unique insights into the operating system’s identity. Visual distinctions, such as Start Menu layouts and watermarks, further complement technical detection, ensuring comprehensive verification. By mastering these techniques, users can confidently navigate Windows environments, resolve version-related issues, and maintain system integrity across diverse configurations.

Identifying Windows Version via System Settings and Advanced Tools
The Windows operating system assigns unique version identifiers, including build numbers, release names, and edition types, to distinguish between updates, service packs, and feature releases. Accurate identification of these details is critical for troubleshooting, compatibility checks, and system optimization. Below are structured methods to retrieve Windows version information through the Settings app, System Information, and command-line utilities, along with a reference table for version-to-release mapping.Accessing Windows Version in the Settings App
The Settings app provides a user-friendly interface to view essential system details, including the Windows edition, version, and build number. This method is ideal for quick verification without requiring administrative privileges.1. Open the Settings app:
Press Windows + I or right-click the Start button and select Settings.
Alternatively, search for "Settings" in the taskbar search bar and select the top result.
2. Navigate to System Information:
In the Settings window, select System from the left-hand menu.
Scroll to the About section on the right panel. This section contains core system identifiers.
3. Interpret the Displayed Details:
Example of a Windows 11 23H2 entry in the About section:Note: The Version field in Settings corresponds to the release year and half-year update (e.g., 21H2 = 2021, second half). The Build number is the precise identifier used for updates and patches.
- Edition: Windows 11 Pro
- Version: 23H2
- Build: 22631.3447
- System type: x64-based PC
Using System Information (msinfo32) for Detailed Version Data
The System Information tool (`msinfo32`) provides a comprehensive overview of hardware and software configurations, including granular details about the Windows version. This method is particularly useful for IT administrators or users requiring precise build metadata.1. Launch System Information:
Press Windows + R, type `msinfo32`, and press Enter.
Alternatively, open Run and execute the command directly.
2. Locate OS Version Details:
In the left-hand pane, expand System Summary.
The right-hand pane displays fields such as:
Example of OS Name and Version in `msinfo32` for Windows 10 22H2:3. Export System Information (Optional):
- OS Name: Microsoft Windows 10 Pro
- Version: 10.0
- Build Number: 19045.3693
To save a report for documentation, click File > Save and choose a location. This generates an `.nfo` file containing all system details.
Note: The Version field in `msinfo32` (e.g., "10.0") corresponds to the base OS version (Windows 10/11 share the same "10.0" prefix), while the Build Number distinguishes specific updates.
Mapping Windows Version Numbers to Release Names and Build Types
Windows version numbers follow a structured format: Major.Minor.Build.Revision, where:Below is a table correlating common build numbers with their release names and edition types (e.g., LTSC, Pro, Enterprise). Data is sourced from Microsoft’s official documentation and release histories.
| Build Number | Release Name | Edition Types | Release Date | Notes |
|---|---|---|---|---|
| 19041.xxxx | Windows 10 2004 (20H1) | Home, Pro, Pro for Workstations, Enterprise, Education | May 2020 | First major update for Windows 10 with significant UI/UX changes. |
| 19042.xxxx | Windows 10 20H2 | Same as above | October 2020 | Bug fixes and minor feature updates over 20H1. |
| 19043.xxxx | Windows 10 21H1 | Same as above | May 2021 | Introduced Android app support (via Your Phone app). |
| 19044.xxxx | Windows 10 21H2 | Same as above | October 2021 | Final major update for Windows 10; no new features, only stability improvements. |
| 22000.xxxx | Windows 11 21H2 (Initial Release) | Home, Pro, Pro for Workstations, Enterprise, Education | October 2021 | First stable release of Windows 11; build 22000 was pre-release. |
| 22621.xxxx | Windows 11 22H2 | Same as above | September 2022 | Introduced Snap Layouts, Snap Groups, and Copilot integration. |
| 22631.xxxx | Windows 11 23H2 | Same as above | September 2023 | Focused on productivity (e.g., Recall feature, AI-powered search). |
| 10.0.20348.xxxx | Windows 11 LTSC 2023 | Enterprise, Education (LTSC only) | November 2023 | Long-Term Servicing Channel (LTSC) lacks optional features but receives 10 years of support. |
Key Observations:
- Windows 10 and 11 share the same 10.0 major version prefix.
- LTSC (Long-Term Servicing Channel) editions use the same
Using Command Prompt and PowerShell for Windows Version Detection
Command Prompt (CMD) and PowerShell provide efficient, scriptable methods to retrieve detailed Windows version information without relying on graphical interfaces. These tools leverage built-in commands and scripting capabilities to extract system metadata, including OS edition, build number, and licensing details. Below are structured approaches to identify Windows versions programmatically, ensuring accuracy and reproducibility in both technical and enterprise environments.
Executing `systeminfo` in Command Prompt
The `systeminfo` command generates a comprehensive report of system configuration, including critical Windows version identifiers. To extract the OS Name, OS Version, and Build Lab, follow these steps:1. Open Command Prompt as Administrator (right-click > Run as administrator).
2. Execute the command:
```cmd
systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"Build Lab"
```
Output Interpretation:
- OS Name: Displays the Windows edition (e.g., Windows 10 Pro, Windows Server 2019 Datacenter).
- OS Version: Shows the major.minor version (e.g., 10.0.19045).
- Build Lab: Indicates the build number and release branch (e.g., 22621.rs_prerelease.220707-1736).
Example output:For a full report, omit the `findstr` filter:
```
OS Name: Microsoft Windows 10 Pro
OS Version: 10.0.19045
Build Lab: 22621.rs_prerelease.220707-1736
```
```cmd
systeminfo
```
Key lines to locate:
- System Manufacturer/Model (useful for OEM systems).
- Registered Owner (license holder information).
PowerShell Script for Windows Edition and Installed Updates
PowerShell’s `Get-CimInstance` cmdlet queries the Win32_OperatingSystem class, providing structured access to OS metadata. Below is a script snippet to retrieve the Windows Edition and Installed Updates:```powershell
$osInfo = Get-CimInstance -ClassName Win32_OperatingSystem
$edition = $osInfo.Caption
$version = $osInfo.Version
$build = $osInfo.BuildNumber# Display Windows Edition and Version
Write-Host "Windows Edition: $edition`nVersion: $version (Build $build)"# List Installed Updates (requires admin privileges)
$updates = Get-HotFix | Select-Object -Property HotFixID, InstalledOn
Write-Host "`nInstalled Updates:"
$updates | Format-Table -AutoSize
```Output Interpretation:
- Caption (`$osInfo.Caption`): Full OS description (e.g., Windows 11 Pro for Workstations).
- Version (`$osInfo.Version`): Major.minor.build format (e.g., 10.0.22621).
- BuildNumber (`$osInfo.BuildNumber`): Numeric build identifier (e.g., 22621).
- HotFixID: Corresponds to KB articles (e.g., KB5012170), useful for patch verification.
Example output:
```
Windows Edition: Windows 11 Pro for Workstations
Version: 10.0.22621 (Build 22621)Installed Updates:
HotFixID InstalledOn
-------- ------------
KB5012170 7/1/2022
KB5011561 6/15/2022
```Alternative Command Prompt Commands for Version Detection
Several native CMD commands provide partial or complementary Windows version data. Below is a comparative table of their outputs and use cases:
Command Output Fields Interpretation Example Output verVersion Number Displays the major.minor version (e.g., 10.0.22621). Does not include build metadata or edition. Microsoft Windows [Version 10.0.22621.1992]wmic os get caption,versionCaption, Version Useful for scripting but lacks detailed build lab information.
- Caption: Full OS name (e.g., Windows Server 2022 Standard).
- Version: Major.minor.build (e.g., 6.3.9600).
Caption Version
Windows Server 2022 Standard 6.3.9600
wmic product get name,versionName, Version Retrieves the Windows installation media type (e.g., retail, OEM, volume license). Name field often includes the license type (e.g., Windows 10 Pro N OEM).Name Version
Windows 10 Pro N OEM 10.0.19045.1
systeminfo | find "License"License Status, OEM Name Indicates licensing status (e.g., Original Install Date, OEM Product ID).
Critical for compliance audits.Original Install Date: 10/1/2021, 12:30:45 PM
OEM Name: LAPTOP123
Parsing `wmic product get name,version` for Installation Media
The `wmic product get name,version` command exposes the Windows installation media type, which distinguishes between retail, OEM, and volume license installations. The Name field typically includes keywords to identify the source:- Retail Installations:
- Keywords: Retail, Full Packaged Product (FPP), or absence of OEM/volume markers.
- Example: Windows 10 Pro Retail.
- OEM Installations:
- Keywords: OEM, System Builder, or manufacturer-specific terms (e.g., DELL, HP).
- Example: Windows 10 Home OEM.
- Volume License (VL) Installations:
- Keywords: Volume, VL, or corporate branding (e.g., Microsoft VL).
- Example: Windows 10 Enterprise VL.
Script Example for Media Detection:
```powershell
$mediaInfo = wmic product get name | Select-String -Pattern "(Retail|OEM|Volume|VL|System Builder)"
$mediaInfo.Matches.Value.Trim() | ForEach-Object {
Write-Host "Installation Media: $_"
}
```Output Interpretation:
- OEM Systems: Often pre-installed by hardware vendors with limited upgrade paths.
- Volume Licenses: Common in enterprise environments with centralized management via tools like Microsoft Endpoint Configuration Manager.
- Retail: Purchased directly from Microsoft or resellers, allowing full upgrade flexibility.
Example output for OEM:For advanced parsing, combine with `wmic path softwarelicensingservice get OA3xOriginalProductKey` to extract the original product key (if available).
```
Installation Media: Windows 10 Pro OEM
```
Visual Clues and UI Differences Across Windows Versions
Windows versions introduce distinct visual and functional changes in the user interface (UI) that serve as reliable indicators for identification. These differences span the Start Menu, Taskbar, Settings icons, and other interactive elements, allowing users to differentiate between Windows 7, 8.1, 10, and 11 without relying solely on system information tools. Below are structured observations of these visual cues, categorized by UI component, along with practical methods to verify them.
Start Menu and Taskbar Evolution
The Start Menu and Taskbar underwent significant redesigns across Windows versions, each incorporating unique layouts, behaviors, and visual elements. These changes are among the most noticeable and can be immediately observed upon system launch.Windows 7 Start Menu and Taskbar
- Features a classic vertical menu with pinned programs on the left and an alphabetized list of all installed applications on the right.
- The Taskbar displays icons for open applications and pinned programs, with a clock positioned at the far right.
- No search bar is integrated into the Start Menu; system search is accessed via the desktop or via the Start Menu’s "Search programs and files" option.
- The Aero Glass theme introduces semi-transparent windows and a polished visual style.
Windows 8.1 Start Menu and Taskbar
- Introduces the Metro-style Start Screen, replacing the traditional Start Menu with a tiled interface for modern apps.
- The Taskbar remains functional but is minimized to a single row, with no Start button by default.
- Live tiles dynamically update content (e.g., news, weather) and are customizable in size and arrangement.
- The Charms Bar (accessed via a right-edge swipe or mouse pointer) provides quick access to Settings, Search, Share, and Devices.
- The Desktop is accessible via a tile or by clicking the bottom-left corner of the screen.
Windows 10 Start Menu and Taskbar
- Hybrid Start Menu: Combines elements of Windows 7 and 8.1, featuring a left-pane with pinned tiles (including live tiles for modern apps) and a right-pane with alphabetized app list.
- The Taskbar includes a Start button that reopens the Start Menu and supports virtual desktops (accessed via the Task View button).
- Contextual Taskbar: Icons for open apps dynamically group by process (e.g., multiple Chrome tabs appear as a single icon).
- Action Center replaces the Charms Bar, accessible via the notification icon on the Taskbar.
Windows 11 Start Menu and Taskbar
- Centered Taskbar: Aligns icons and the Start button to the center of the screen by default, though this can be adjusted.
- Start Menu: Retains a left-pane for pinned apps but removes live tiles; modern apps open in a separate window rather than full-screen.
- Taskbar icons: Feature rounded corners and subtle animations (e.g., hover effects).
- Widgets Panel: Replaces the Action Center’s news feed, accessed via a dedicated icon or Alt+Z shortcut.
- Snap Layouts and Groups: Introduces three-column snap arrangements (e.g., splitting the screen into three equal parts) and task groups for organizing open windows.
Windows Logo Watermark and Version Identification
The Windows logo watermark, prominently displayed in the bottom-right corner of the desktop, serves as a direct visual indicator of the installed OS version. This feature is absent in Windows 7 and 8.1 but appears in Windows 10 and 11, though its visibility can be toggled.Steps to Check the Windows Logo Watermark
- Windows 10 and 11: The watermark (e.g., "Windows 11" or "Windows 10") is visible by default in the bottom-right corner of the desktop. Right-click the desktop, select Personalize, then Themes. Under "Related settings", click "Display settings". If the watermark is not visible, ensure "Show Windows logo watermark" is enabled in Group Policy Editor (`gpedit.msc`) under:
- Computer Configuration > Administrative Templates > System > Logon.
- Enable "Show Windows logo watermark".
- Windows 7 and 8.1: No watermark is displayed by default. The absence of this element can confirm these versions if other visual clues are ambiguous.
Note: The watermark may be disabled by system administrators or third-party software. In such cases, cross-reference with other UI elements or system tools.
Default Wallpapers and System Sounds as Version Identifiers
Windows versions include default wallpapers and system sounds that reflect their design language and era. These elements can act as supplementary visual cues when other indicators are unclear.Comparison Table of Default Wallpapers
System Sounds Overview
Windows Version Default Wallpaper (Desktop) Lock Screen Wallpaper Windows 7 "Windows 7" (abstract blue gradient with white lines) "Windows 7" (same as desktop) Windows 8.1 "Windows 8" (high-contrast blue and white geometric design) "Windows 8" (same as desktop) or "Windows 8.1" (updated version) Windows 10 "Windows 10" (sunset over a lake with a bridge) "Windows 10" (same as desktop) or "Clouds" (alternative) Windows 11 "Windows 11" (abstract blue and white with a floating island) "Windows 11" (same as desktop) or "Earth" (alternative)
- Windows 7: Features classic "Aero" sounds (e.g., "Windows Default" for notifications, "Aero" for system events).
- Windows 8.1: Introduces minimalist sounds with a focus on touch-friendly audio cues; the "Windows 8" sound scheme replaces older themes.
- Windows 10: Retains Windows 8.1 sounds but adds customizable sound schemes (e.g., "Windows 10" or "Windows 10 (No Sound)").
- Windows 11: Uses the same sound scheme as Windows 10 but may include updated audio profiles for modern hardware (e.g., Dolby Atmos support).
How to Verify System Sounds
- Navigate to Settings > System > Sound.
- Under "Sound control panel", click "Sound".
- Select the "Sounds" tab to view the default sound scheme (e.g., "Windows Default" for Windows 7, "Windows 10" for later versions).
File Explorer Ribbon and Context Menu Variations
The File Explorer ribbon and right-click context menus evolved significantly across Windows versions, introducing or removing tools based on user workflows and design philosophies. These changes provide functional and visual distinctions.File Explorer Ribbon Differences
- Windows 7: Uses a classic toolbar with tabs (Organize, View, etc.) and no ribbon interface. The "Libraries" feature is absent.
- Windows 8.1: Introduces a simplified ribbon with fewer tabs (e.g., Home, Share, View) and touch-optimized controls.
- Windows 10: Expands the ribbon with additional tabs (e.g., "Home", "Share", "View", "Manage") and reintroduces "Libraries".
- Quick Access Toolbar: Customizable buttons appear above the ribbon for frequent actions.
- Windows 11: Refines the ribbon with updated icons and contextual tabs (e.g., "New" tab appears when creating files).
- Compact Ribbon Mode: Can be toggled to reduce clutter (right-click ribbon > "Compact").
Context Menu (Right-Click) Changes
- Windows 7:
- "Open" and "Open with" options are separate.
- "Send to" includes compressed (zipped) folder by default.
- "Properties" and "Rename" are prominent.
- Windows 8.1:
- "Open with" is replaced by "Open" (default action) and "Open with" (contextual).
- "Pin to Start" and "Pin to Taskbar" appear for modern apps.
- "Share" option replaces some traditional actions.
- Windows 10:
- "Open with" returns as a distinct option.
- "Show more options" expands the menu to reveal "Properties", "Rename", and "Send to
Registry Editor and Hidden System Files for Advanced Windows Version Detection
The Windows Registry and hidden system files provide deep insights into the installed operating system version, build details, and configuration. These methods are particularly useful for administrators or technicians verifying Windows editions, service packs, or compatibility requirements. Registry keys store critical version metadata, while hidden system files like `unattend.xml` contain deployment-specific information, including edition identifiers and product keys. Additionally, boot environment checks (BIOS vs. UEFI) influence Windows version compatibility, especially for newer releases like Windows 11.
Accessing Windows Version Data via Registry Editor
The Registry Editor (`regedit`) contains structured version information under the `HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion` key. This method is reliable for extracting precise build numbers, edition names, and architecture details without relying on user interface elements.To access this data:
1. Open Registry Editor by pressing Win + R, typing `regedit`, and confirming with Enter.
2. Navigate to:
```
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion
```
3. Locate the following key-value pairs:
- `ProductName`: Displays the official Windows edition (e.g., "Windows 11 Pro").
- `CurrentBuild`: Numerical build identifier (e.g., `22621`).
- `CurrentMajorVersionNumber`: Major version number (e.g., `10` for Windows 10/11).
- `CurrentBuildNumber`: Full build number (e.g., `22621.1992`).
- `UBR` (Update Build Revision): Additional build metadata (e.g., `.1992`).
The `ProductName` value directly correlates with the licensed Windows edition (e.g., "Windows 11 Pro" or "Windows Server 2022"). The `CurrentBuild` and `CurrentMajorVersionNumber` provide the foundation for version comparison, while `UBR` indicates cumulative updates or hotfixes applied post-installation.Decoding the Build Lab for Release Stage, Date, and Architecture
The Build Lab string (e.g., `22621.1992.amd64fre.rs7_release.221206-1705`) encodes critical metadata about the Windows release. Breaking it down:
Component Example Value Description Build Number `22621` Core build identifier (e.g., Windows 11 22H2). Update Revision `.1992` Cumulative update or patch level (e.g., KB5022308). Architecture `.amd64fre` Processor architecture (`amd64` = 64-bit, `x86` = 32-bit) and region (`fre` = English-free). Release Stage `.rs7_release` Release type (`rs` = Release Preview, `release` = Stable). Date & Time Stamp `.221206-1705` Build date (YYYYMMDD) and time (HHMM) when the image was compiled (Dec 6, 2022, 17:05 UTC). The `.rsX_release` suffix indicates a Release Preview build, while `.release` denotes a stable, retail version. The date stamp helps correlate builds to known update cycles (e.g., monthly "Patch Tuesday" releases). For example, `221206` in `221206-1705` corresponds to December 6, 2022.Locating Windows Installation Source via `unattend.xml`
The `unattend.xml` file in `C:\Windows\Panther\` contains deployment-specific configurations, including the Windows edition and product key used during setup. This file is hidden by default and requires enabling hidden/system files in File Explorer (View → Hidden items).Key tags to inspect:
- `
Example:`: Specifies the installed edition (e.g., `Professional`, `Enterprise`).
```xml
Professional ```
- `
Example:`: Original product key used for activation (if not OEM/retail).
```xml
XXXXX-XXXXX-XXXXX-XXXXX-XXXXX ```
- `
`: Differentiates between upgrade (`Upgrade`) or clean install (`Full`). The `` tag is authoritative for determining the licensed edition, while the ` ` may reveal OEM vs. retail installations. Note that some deployments (e.g., Windows 11 via free upgrade) omit the product key in this file. Checking Boot Environment (BIOS vs. UEFI) and Windows Version Compatibility
The boot firmware (BIOS vs. UEFI) impacts Windows version compatibility, particularly for Windows 11, which mandates UEFI with Secure Boot. This can be verified via:#### Method 1: System Information Tool
1. Press Win + R, type `msinfo32`, and navigate to System Summary.
2. Check:
- System Type: "x64-based PC" (architecture).
- BIOS Mode: "UEFI" or "Legacy" (under BIOS Mode in the Components section).
#### Method 2: Command Line (PowerShell/CMD)
Run the following in PowerShell or Command Prompt:
```powershell
systeminfo | findstr /B /C:"BIOS Mode" /C:"System Type"
```
Output example:
```
BIOS Mode:System Type: x64-based PC
```#### Compatibility Implications:
- Windows 11 requires UEFI + Secure Boot (BIOS mode is unsupported).
- Windows 10 supports both BIOS and UEFI but may exhibit driver/feature limitations in legacy mode.
- Windows Server editions often enforce UEFI for security compliance.
UEFI systems offer faster boot times, larger disk support (GPT), and Secure Boot for driver integrity. Windows 11’s UEFI requirement stems from Microsoft’s push for modern hardware security features, excluding older BIOS-based PCs from eligibility.Accurate Windows version identification bridges the gap between technical specifications and practical application, ensuring seamless system management. Whether leveraging built-in tools like `systeminfo` or decoding registry entries, each method contributes to a robust understanding of the operating system’s architecture. By combining visual analysis with command-line precision, users can verify installations, troubleshoot discrepancies, and align configurations with organizational or personal requirements. This structured approach not only resolves version-related queries but also empowers administrators to maintain optimal performance and security across Windows deployments.
FAQ
How can I determine which version of Windows is installed on my computer?
Press Win + R, type `winver`, and hit Enter. This opens a window showing your exact Windows edition (e.g., Windows 10/11 Pro) and build number. Alternatively, check Settings > System > About for detailed version info.
How do I find out what version of Windows is running on my laptop?
Open Settings > System > About to see your Windows edition (e.g., Home, Pro) and version (e.g., 11 22H2). For older PCs, right-click This PC > Properties in File Explorer to view the same details.
What’s the best way to check what version of Windows I have?
Use the `winver` shortcut (Win + R, then type `winver`) for a quick popup with your OS version and build. For full details, go to Settings > System > About, where you’ll find edition, version, and installation date.
How can I tell if my Windows is 32-bit or 64-bit?
Open Settings > System > About and look for "System type" (e.g., "64-bit operating system"). Alternatively, press Win + Pause/Break, then check under "System type" in the System window.
How do I check which Windows version is on my laptop?
Go to Settings > System > About to see your Windows edition (e.g., Windows 11 Home) and version number. For older systems, right-click This PC > Properties in File Explorer for the same info.
Where can I find out what version of Windows is installed on my computer?
Use the `winver` command (Win + R, then type `winver`) for a fast version check. For comprehensive details, visit Settings > System > About, which lists edition, version, and build number.


Leave a Comment
Comments are moderated before appearing. The data you submit is processed according to the Privacy Policy of Voltefac.