Checkout This Link
<<Self promotion link Removed>>
Want To log User & System Software
|
Go4Expert Member
|
|
| 28Aug2007,17:18 | #1 |
|
Last edited by shabbir; 28Aug2007 at 19:55.. Reason: Self promotion link Removed |
|
Team Leader
|
![]() |
| 28Aug2007,18:05 | #2 |
|
nice, but does not actually list system software rather drivers.you can always export the
Code:
regedit /e c:\software.txt HKLM\software\microsoft\windows\currentversion\uninstall |
|
Go4Expert Founder
|
![]() |
| 28Aug2007,19:56 | #3 |
|
ghostomni, please do not self promote your blog in the posts. You can use the signature. I would suggest you read the Rules and guidelines of the forum.
|
|
Go4Expert Founder
|
![]() |
| 28Aug2007,20:39 | #4 |
|
Also I see that you have one of such in the Articles as well.
|
|
Go4Expert Member
|
|
| 30Aug2007,06:08 | #5 |
|
Ok I m Sending The Coding For Logging
$$$$$$$$$$$$$$ >> User Logon Log << $$$$$$$$$$$$$$$ This Coding log USERNAME, login TIME, login DATE Please Note Copy All Coding On A Notepad & Save It As Startuplog.bat Code:
@echo off echo.**************************************************** >>c:\startup.log
ver >>c:\startup.log
echo. >>c:\startup.log
echo. >>c:\startup.log
echo. User LOGGED IN INFO >>c:\startup.log
@echo Off
for /f "tokens=3 delims=\" %%i in ("%USERPROFILE%") do (set user=%%i) 2>&1
echo "Logged User :%user%" >>c:\startup.log
echo. >>c:\startup.log
echo. >>c:\startup.log
echo.User LOG IN Time >>c:\startup.log
echo. >>c:\startup.log
time /t >>c:\startup.log
echo. >>c:\startup.log
echo.User LOG IN Date >>c:\startup.log
echo. >>c:\startup.log
date /t >>c:\startup.log
@echo Off
echo.**************************************************** >>c:\startup.log
Please Note Copy All Coding On A Notepad & Save It As DriverQuary.bat Code:
@echo off c: driverquery >c:\drivers.log Last edited by shabbir; 30Aug2007 at 07:57.. Reason: Code block - http://www.go4expert.com/forums/misc.php?do=bbcode#code |
|
Go4Expert Founder
|
![]() |
| 30Aug2007,07:58 | #6 |
|
Please use Code block for posts having code snippets.
|
|
Team Leader
|
![]() |
| 30Aug2007,08:22 | #7 |
|
once again the drivers query will only pull the drivers not the actual installed software.
this whole script could be done in two lines, nope one will do it. as well in csv format so you could look at it through excel and sort the colums. Code:
for /F "tokens=* " %%i in ('ver') do ( echo %USERNAME% , %TIME% , %DATE% , %%i >> %SYSTEMDRIVE%\startup.log )
|
|
Go4Expert Member
|
|
| 31Aug2007,06:15 | #8 |
|
Thanks UR Coding Is Useful. Small & Unique
|


