Version: 2022.3
LanguageEnglish
  • C#

SystemInfo.operatingSystem

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static string operatingSystem;

Description

Operating system name with version (Read Only).

Returns detailed information about the operating system of the device, including the version. For a simple platform detection, properties like Application.platform or deviceType might be more appropriate.

Note: On Microsoft Store Apps, it's not easy to identify if you're running 32-bit or 64-bit version of Windows. However, you can query the CPU architecture to find this information. If the CPU is 64-bit, SystemInfo.operatingSystem returns Windows <version> 64 bit, and if the CPU is 32-bit - Windows <version>.

using UnityEngine;

public class ExampleClass: MonoBehaviour { void Start() { // Prints "Windows 11 (10.0.22621) 64bit" on 64 bit Windows 11 // Prints "Mac OS X 13.4" on Mac OS Ventura // Prints "iPhone OS" with iOS 15.3.1 // Prints "iPad OS" on iPad with iOS 16 // Prints "Android OS 13 / API-33 (TQ2A.230305.008.C1/9619669)" Debug.Log(SystemInfo.operatingSystem); } }

Additional resources: Application.platform, deviceType.