Skip to content
Merged
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
7 changes: 5 additions & 2 deletions docs/helpers/SystemInformation.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
---
title: SystemInformation
author: nmetulev
description: The SystemInformation class is a static utility class that provides properties with some system, application and device information.
description: The SystemInformation class is a utility class that provides properties with some system, application and device information.

keywords: windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, SystemInformation
---

# SystemInformation

The [SystemInformation](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.uwp.helpers.systeminformation?view=uwp-toolkit-dotnet) class is a static utility class that provides properties with some system, application and device information.
The [SystemInformation](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.uwp.helpers.systeminformation?view=uwp-toolkit-dotnet) class is a utility class that provides properties with some system, application and device information.


> [!div class="nextstepaction"]
> [Try it in the sample app](uwpct://Helpers?sample=SystemInformation)
Expand All @@ -26,6 +28,7 @@ The [SystemInformation](https://docs.microsoft.com/dotnet/api/microsoft.toolkit.
| DeviceModel | string | Gets the model of the device as a `string`. The value will be empty if the device model couldn't be determined (ex: when running in a virtual machine). |
| FirstUseTime | DateTime | Gets the DateTime (in UTC) that the app as first used. |
| FirstVersionInstalled | [PackageVersion](https://docs.microsoft.com/uwp/api/Windows.ApplicationModel.PackageVersion) | Gets the first version of the app that was installed. |
| Instance | SystemInformation | Gets public singleton property. |
| IsFirstRun | bool | Gets a value indicating whether the app is being used for the first time since it was installed. |
| IsAppUpdated | bool | Gets a value indicating whether the app is being used for the first time since being upgraded from an older version. |
| LastLaunchTime | DateTime | Gets the DateTime (in UTC) that this was previously launched. |
Expand Down