Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by biplabmukh
at 2024-07-15 04:03:32
Point:500 Replies:8 POST_ID:828979USER_ID:11878
Topic:
Windows XP Operating System;Windows 7;Miscellaneous Software
We have list of 2400 computers (Windows XP and WIN 7). We need to download list of installed application for all these computers.
Expert: duncanb7 replied at 2024-07-18 09:46:42
Thanks for your points
Have a nice day
Duncan
Have a nice day
Duncan
Accepted Solution
Expert: duncanb7 replied at 2024-07-15 08:51:42
500 points EXCELLENT
it seems going to PowerShell method that will be a good start as following link and do additional scripting for 3000 computers
http://gallery.technet.microsoft.com/scriptcenter/Get-a-List-of-Installed-c47393ed
Hope understand your question completely.If not , please point it out
Duncan
http://gallery.technet.microsoft.com/scriptcenter/Get-a-List-of-Installed-c47393ed
Hope understand your question completely.If not , please point it out
Duncan
Expert: Mohammed Khawaja replied at 2024-07-15 08:03:25
You could also use Sydi as you could create a CSV file containing your computers and it could create a workbook with all the required information. You can get a sheet with all software as well as which computer has the software installed.
http://sydiproject.com/guides/server-documentation-template/
http://sydiproject.com/guides/server-documentation-template/
Author: biplabmukh replied at 2024-07-15 08:02:11
Thanks Joseph, it is working correctly however i need to run it against ~3000 computers and this script will generate ~3000 .txt files for each computer.
Is there a way to add all computers details in 1 CSV or .TXT file.
Is there a way to add all computers details in 1 CSV or .TXT file.
Expert: Joseph Daly replied at 2024-07-15 06:15:00
You can do this with powershell and a csv file. The csv file should have a column called computername.
import-csv filename.csv | foreach {
$name=$_.computername
get-wmiobject -computername $_.computername -class win32_product | select-object name >> c:dir$name.txt}
import-csv filename.csv | foreach {
$name=$_.computername
get-wmiobject -computername $_.computername -class win32_product | select-object name >> c:dir$name.txt}
Author: biplabmukh replied at 2024-07-15 04:50:44
Thanks all, however i am looking for a script which take computer name from excel and create 1 excel with all installed application name.
I need this data to validate which application need local admin rights hence i need all installed application information.
I need this data to validate which application need local admin rights hence i need all installed application information.
Expert: Mohammed Khawaja replied at 2024-07-15 04:39:16
If your only requirement is computer inventory and possibly software distribution then use OCS Inventory (http://www.ocsinventory-ng.org). If you would like resource monitoring then use something like SpiceWorks.
Expert: DanCh99 replied at 2024-07-15 04:30:39
In terms of running inventories like this, the next questions is what are you going to do with this data?
Common next steps are patch management, version updating, licence checking, remote administration and so on.
In which case, you really need to look at a proper tool to do the job.
Spiceworks is free, and has a very good support environment.
http://www.spiceworks.com/network-management/?bcsi_scan_a7e54b77b385dbee=QiwfkM7y3oghqpJj3IxttUmIh18FAAAAqia0Bg==
Common next steps are patch management, version updating, licence checking, remote administration and so on.
In which case, you really need to look at a proper tool to do the job.
Spiceworks is free, and has a very good support environment.
http://www.spiceworks.com/network-management/?bcsi_scan_a7e54b77b385dbee=QiwfkM7y3oghqpJj3IxttUmIh18FAAAAqia0Bg==