有AD 嗎 ? ...沒 AD 有 400 多台耶 ...
派送 ocs-inventory anget 然後 ocs-inventory server 那邊做報表比較實在...
ocs-inventory 如何安裝請自行 google ....
還是比較喜歡 GLPI 都可
參考 https://ithelp.ithome.com.tw/questions/10190300
當然你已將 systeminfo 都抓回來了拿你熟悉的程式語言寫 ....
以前我會用 VBA 現在會用 python (因為 python 沒幾行就搞定了)
PowerShell:
GetLog.ps1
#撈出單台電腦資料的指令
$INF = Get-ComputerInfo
#匯出的路徑及檔名,以電腦名稱命名
$LogPath = ("\\192.168.100.100\log\"+$INF.CsCaption+".csv")
#匯出到網芳的CSV中.
$INF | select OsName,OsVersion,CsCaption,@{Name="CPU";Expression={$INF.CsProcessors.Name}},CsNumberOfProcessors,CsNumberOfLogicalProcessors | ConvertTo-Csv -NoTypeInformation | Select-Object -Skip 1 | sc -encoding utf8 -Path $LogPath
過個幾天,執行下列指令,把所有LOG合成一個檔案.
#將所有CSV 合成一個檔案
gc \\192.168.100.100\log\*.csv | Set-Content d:\All.csv