Want To log User & System Software

Discussion in 'Windows' started by ghostomni, Aug 28, 2007.

  1. ghostomni

    ghostomni New Member

    Joined:
    Jul 1, 2007
    Messages:
    31
    Likes Received:
    1
    Trophy Points:
    0
    Checkout This Link
    <<Self promotion link Removed>>
     
    Last edited by a moderator: Aug 28, 2007
  2. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
    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
    to get a list of software installed
     
  3. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    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.
     
  4. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    Also I see that you have one of such in the Articles as well.
     
  5. ghostomni

    ghostomni New Member

    Joined:
    Jul 1, 2007
    Messages:
    31
    Likes Received:
    1
    Trophy Points:
    0
    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
    
    This Coding Log All System Software
    Please Note Copy All Coding On A Notepad & Save It As DriverQuary.bat

    Code:
    @echo off
    c:
    driverquery >c:\drivers.log
    
     
    Last edited by a moderator: Aug 30, 2007
  6. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    Please use Code block for posts having code snippets.
     
  7. jwshepherd

    jwshepherd New Member

    Joined:
    Aug 13, 2007
    Messages:
    135
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    VP Technology Corporation
    Location:
    Texas
    Home Page:
    http://www.officialhackers.com
    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 )
    
     
  8. ghostomni

    ghostomni New Member

    Joined:
    Jul 1, 2007
    Messages:
    31
    Likes Received:
    1
    Trophy Points:
    0
    Thanks UR Coding Is Useful. Small & Unique
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice