Question : SMS 2003 SP3 support for Windows7 (Remote Tools)

I upgraded the SMS 2003 to SP3 and realize that there is no collection container for Windows 7 however there is a container for Windows Vista. Also i could not make a remote session to a Windows 7 Client through Remote Tools available from SMS 2003 SP-3.

Answer : SMS 2003 SP3 support for Windows7 (Remote Tools)

Give this a try and let me know if it looks decent.  You will need to save this as a BAT file, and edit the output file name near the top.

~bp
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
@echo off
 
set "OutputFile=c:\temp\EE26193131.txt"
 
for /F "skip=2 tokens=2-3 delims=," %%A in ('wmic computersystem get manufacturer^,model /FORMAT:csv') do (
  set "Manufacturer=%%A"
  set "Model=%%B"
)
 
for /F "skip=2 tokens=2 delims=," %%A in ('wmic systemenclosure get serialnumber /FORMAT:csv') do (
  set "Serial=%%A"
)
 
echo %Manufacturer%, %Model%, %Serial%>%OutputFile%
Random Solutions  
 
programming4us programming4us