This commit is contained in:
Aaron Meihm 2017-09-07 13:49:25 -05:00
Родитель 5107e3e78a
Коммит 1c02189db2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,7 @@ func getSysInfo() (hostname, domain, osname, osversion string, err error) {
}
}()
// get data from the systeminfo
out, err := exec.Command("cmd","/C", "wmic.exe os get Caption, Version /format:list & wmic.exe computersystem get Name, domain /format:list").Output()
out, err := exec.Command("cmd", "/C", "wmic.exe os get Caption, Version /format:list & wmic.exe computersystem get Name, domain /format:list").Output()
if err != nil {
panic(err)
}