Script to get information about “Groups” from remote computer / server
Posted by: Michael Khanin
This small scripts allows to get information from remote computer / server. All data will be saved in XML format. Create a .bat file and put into in the following context:
@Echo off
Rem .
Rem . http://thesystemadministrator.com - http://www.admininfo.ca
Rem .
@Echo Please wait….
SET STOREPATH=C:\TMP
SET RCOMP= “Put here IP or Name of remote computer / server”
set DM=ADMININFO
set USR=ADM
set PASS=PASSWORD
NET USE \\%RCOMP%\ipc$ /user:%DM%\%USR% %PASS% > NUL 2>&1
REM ………. Checking OS Version ……….
For /F “Tokens=1,2,3* Delims= ” %%a in (’@REG QUERY “\\%RCOMP%\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion” /v ProductName^| find /i “ProductName”‘) Do SET OSVER=%%d
IF “%OSVER%” == “Windows 2000″ @Echo %OSVER% &goto :EOF
@echo ^<?xml version=”1.0″ encoding=”ISO-8859-1″?^> > %STOREPATH%\%RCOMP%_CompInfo.xml
@echo ^<Report^>^<Lang^>en^</Lang^> >> %STOREPATH%\%RCOMP%_CompInfo.xml
@echo ^<Title^>Report of %RCOMP%^</Title^> >> %STOREPATH%\%RCOMP%_CompInfo.xml
REM ………. Groups ……….
@echo ^<Group^>^<Title^>Groups^</Title^> >> %STOREPATH%\%RCOMP%_CompInfo.xml
For /F “Tokens=1,2 Delims==” %%a in (’”@WMIC /node:%RCOMP% /user:”%DM%\%USR%” /password:%PASS% GROUP get NAME /value | find /i “NAME””‘) Do @echo ^<Item^>^<Title^>%%a^</Title^>^<Value^>%%b^</Value^>^</Item^> >> %STOREPATH%\%RCOMP%_CompInfo.xml
@echo ^</Group^> >> %STOREPATH%\%RCOMP%_CompInfo.xml
REM ………. Groups ……….
@echo ^</Report^> >> %STOREPATH%\%RCOMP%_CompInfo.xml
Note: Remember to set IP or Name of remote computer / server
That it!



You must be logged-in to post a comment. Log-in/Register