IT guru's help please
I need to find out which of the computers on my network have service pack 2 and which have service pack 3. Does anyone know of a program that will export the properties of each computer into a text file? Tried Hyena and it doesn't work.
we use it and it sucks http://www.belarc.com/press_rels/pr-08132002.html Looking for another alternative. Thanks anyway.
If you know nt scripting, just put this in a for loop
for /f "tokens=2* delims=," %%a in ('srvinfo -ns %1 ^| find /i "Build:"') do set status=%%a
Then you don't need any extra progs!
Also, MS has registry keys for everything, I would check technet. I check for the SP6a reg key in some of my files (we run mainly NT)
for /f "tokens=2* delims=," %%a in ('srvinfo -ns %1 ^| find /i "Build:"') do set status=%%a
Then you don't need any extra progs!
Also, MS has registry keys for everything, I would check technet. I check for the SP6a reg key in some of my files (we run mainly NT)
[QUOTE]Originally posted by TepEvan
[B]If you know nt scripting, just put this in a for loop
for /f "tokens=2* delims=," %%a in ('srvinfo -ns %1 ^| find /i "Build:"') do set status=%%a
Then you don't need any extra progs!
Also, MS has registry keys for everything, I would check technet.
[B]If you know nt scripting, just put this in a for loop
for /f "tokens=2* delims=," %%a in ('srvinfo -ns %1 ^| find /i "Build:"') do set status=%%a
Then you don't need any extra progs!
Also, MS has registry keys for everything, I would check technet.
Trending Topics
We use Microsoft SMS 2.0 for inventory and for deployment. Kinda spendy just for a SP deployment, but if you are needing a solution for across the board, I've been happy with it.
Thread
Thread Starter
Forum
Replies
Last Post
The Unabageler
Off-topic Talk
11
Dec 17, 2002 11:50 AM







