Jump to content

Diabolical82

Member
  • Posts

    146
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by Diabolical82

  1. I prefered to use this FreeOTFE (Free On The Fly Encryption) over TrueCrypt. Very small footprint and doesnt use up much of ram ;) and capable with SecureTrayUtil A handy utility that sits in the tasktray, allowing hotkey shredding files, file hashes to be generated, and complementing several OTFE (On-The-Fly Encryption) systems by providing rapid access to their most used day-to-day functions, making them considerably easier to use. Also incorporates self-destruct facilities for sensitive material, triggerable by hotkey, easily-built serial connector or secure Internet connection. :thumbup

    Another Suggestion for Web Authoring - NVU

  2. Finally got it working!

    Here's what i did.

    strComputer = "."
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate,(Backup, Security)}!\\" & _
    strComputer & "\root\cimv2")
    '
    'Set variables
    '
    dateNow = Now
    strCurrentDate = Year(dateNow) & "-" & Right(100 + Month(dateNow), 2) _
    & "-" & Right(100 + Day(dateNow), 2)
    strCurrentTime = Right(100 + Hour(dateNow), 2) & "." _
    & Right(100 + Minute(dateNow), 2) & "." & Right(100 + Second(dateNow), 2)

    '
    'Start Backup/Clear of event log
    '
    Set colLogFiles = objWMIService.ExecQuery _
    ("Select * from Win32_NTEventLogFile where LogFileName='Security'")

    For Each objLogfile in colLogFiles
    errBackupLog = objLogFile.BackupEventLog("C:\Logs\"& strCurrentDate & "_" & strCurrentTime & _
    "_Security.evt")
    If errBackupLog <> 0 Then
    Wscript.Echo "The Security event log could not be backed up."
    Else
    objLogFile.ClearEventLog()
    End If
    Next

  3. instresting! but i'm not familar with vbscript... so all i have to do is copy and paste this codes onto notepad and save it as .bat or different format?

    EDIT: nevermind got it working with .vbs extention, and i have some questions: I only want security log, not system log and also what kind of program do i need to read .evt extention?

    Thanks!

  4. I'm trying to create automatic batch that dump Security Audit from Events Log weekly to keep it from getting too full. But for some reason Windows XP will not allow me save file in Date format such as this Sec-Audit-8/12/06.txt because of forward slash character "/"

    And here's part of script i've been working on...

    dumpevt /logfile=sec /outfile=C:\Logs\Sec-Audit-%DATE%.txt /all /clear

    any suggestion?

    Thanks

    EDIT: I've done some search on google and came up with this....

    @echo off
    rem created unique log filename, e.g. Wed0804
    FOR /F "tokens=1-4 delims=/" %%i in ('date/t') do set filedate=%%i%%j%%k
    Set LOG=C:\Logs\Sec-Audit-%filedate%.txt

    dumpevt /logfile=sec /outfile="%LOG%" /all /clear

    EXIT

    it worked and saved as Sec-Audit 02022006 .txt but i want this format as in "Sec-Audit-020106-2:00pm.txt"

    Thanks Again

  5. @ war59312

    I've been using this switch CTZAPXX.exe /q /o /r and it always worked for me, my speaker setup is 2.1. I never own 5.1 speaker or such, and there's no way of telling from here :-( sorry

    @ RyanVM

    yep EAX worked.

  6. I'm back with result... however I'm disappointed, because two value will not change is "Name Cache" and "Directory Cache" it'll revert back to default value. and benchmark are also an disappointment.

    From what I see is decrease in Average and Burst transfer rate, and increase in Seek time and CPU Usages.

    Before:

    Avg. 97.5

    Burst. 132.6

    Seek. 14.8ms

    Util. 8%

    After:

    Avg. 95.9

    Burst. 127.3

    Seek. 15.2ms

    Util. 11%

    By the way I use HD Tach for benchmark.

  7. If I add those lines and save it as prefs.js and have winrar extract it to default profile folder. Do you think if it'll work or not?

    prefs.js

    pref("profile.confirm_automigration",true);
    pref("profile.migration_behavior",1);
    pref("profile.migration_directory", "");
    pref("network.cookie.prefsMigrated",        true);
    pref("profile.allow_automigration", true);

×
×
  • Create New...