updated docs

This commit is contained in:
Sebastian Hildebrandt
2021-02-12 16:44:44 +01:00
parent 469a761af1
commit 91b56e82b2
7 changed files with 21 additions and 2 deletions
+1
View File
@@ -315,6 +315,7 @@ export namespace Systeminformation {
servicepack: string;
uefi: boolean;
hypervizor?: boolean;
remoteSession?: boolean;
}
interface UuidData {
+1 -1
View File
@@ -324,7 +324,7 @@ function osInfo(callback) {
const workload = [];
workload.push(util.wmic('os get /value'));
workload.push(execPromise('systeminfo', util.execOptsWin));
workload.push(util.powerShell('Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.SystemInformation]::TerminalServerSession'))
workload.push(util.powerShell('Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.SystemInformation]::TerminalServerSession'));
util.promiseAll(
workload
).then(data => {