diff --git a/CHANGELOG.md b/CHANGELOG.md index d45f543..c3a4e4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -77,6 +77,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 5.6.10 | 2021-03-29 | `vboxInfo()` fixed windows bug | | 5.6.9 | 2021-03-28 | `graphics()` fixed nvidia-smi compare bug | | 5.6.8 | 2021-03-22 | typescript definitions fix `wifiInterfces()`, `wifiConnections()` | | 5.6.7 | 2021-03-16 | `inetLatency()` `ineChecksite()` schema validation | diff --git a/docs/history.html b/docs/history.html index adcd554..3832da3 100644 --- a/docs/history.html +++ b/docs/history.html @@ -56,6 +56,11 @@ + + 5.6.10 + 2021-03-29 + vboxInfo() fixed windows bug + 5.6.9 2021-03-28 diff --git a/docs/index.html b/docs/index.html index 387d4ec..7465983 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.6.9
+
New Version: 5.6.10
@@ -211,7 +211,7 @@
Downloads last month
-
402
+
404
Dependents
diff --git a/lib/util.js b/lib/util.js index d7cd6bf..16f22c3 100644 --- a/lib/util.js +++ b/lib/util.js @@ -333,7 +333,7 @@ function wmic(command, options) { } function getVboxmanage() { - return _windows ? `${process.env.VBOX_INSTALL_PATH || process.env.VBOX_MSI_INSTALL_PATH}\\VBoxManage.exe` : 'vboxmanage'; + return _windows ? `"${process.env.VBOX_INSTALL_PATH || process.env.VBOX_MSI_INSTALL_PATH}\\VBoxManage.exe"` : 'vboxmanage'; } function powerShell(cmd) {