Jump to content

_RunDOS problem that makes 0 sense <-- Challenge


DavidLago
 Share

Recommended Posts

Well, I've reached the loop point. I really don't know what to think or to do anymore :(

Let me try to explain. This script I'll post below export the output of the the command "openfiles" on cmd, and it has an option to filter the logs to something that the analyst want to check in particular. For example. I wanna know how many guys are accessing the folder "X:folder1" or how many folders is the computer "Computer342312" accessing through the DFS.

;---------------------------------------------------------------INCLUDES--------------------------------------------------------------------------------
#include <Process.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
#include <array.au3>
#include <INet.au3>
#include <Date.au3>
;------------------------------------------------------------EXPORT-FOLDER--------------------------------------------------------------------------------
If Not FileExists(@ScriptDir & "Export") Then
DirCreate(@ScriptDir & "Export")
EndIf
;------------------------------------------------------------ WHILE LOOP --------------------------------------------------------------------------------
Global $iNow = _NowCalc()
Global $TimeOut = False
While $TimeOut = False
;---------------------------------------------------------VARIABLES-----------------------------------------------------------------------------------
Global $Date = @YEAR & "-" & @MON & "-" & @MDAY
Global $Hour = @HOUR & "-" & @MIN & "--"
Global $FullDate = $Date & "_" & $Hour
Global $ReportDir = @ScriptDir & "Export"
;----------------------------------------------------------INI_READ-----------------------------------------------------------------------------------
Global $TimeFreq = IniRead("Config.ini", "Time", "Frequency", "60")
Global $TimeDur = IniRead("Config.ini", "Time", "Duration", "24")
Global $ReportOut = $FullDate & "_" & IniRead("Config.ini", "ReportOut", "ReportOut", "Report")
Global $FilterExt = IniRead("Config.ini", "FilterExt", "FilterExt", "N")
Global $FileExt = '"' & IniRead("Config.ini", "FileExt", "FileExt", "exe") & '"'
Global $FormatOut = IniRead("Config.ini", "FormatOut", "FormatOut", "Table")

;-------------------------------------------------------ADVANCED VARIABLES-----------------------------------------------------------------------------
Global $CommandCombo, $CommandFinal, $iDiff, $FreqDurMath
$iTimeFreq = $TimeFreq * 60000 ; Turn to miliseconds
$iTimeDur = $TimeDur ; Turn to minutes
$FreqDurMath = ($TimeDur * 60) / $TimeFreq
;-------------------------------------------------------ERROR-TREATMENT---------------------------------------------------------------------------------
If $iTimeFreq < 900000 Then
MsgBox(4112, "Error", 'The parameter "FREQUENCY" at the config.ini file is set to a number below 15. 15 minutes is the minumum threshold', 5)
Exit
EndIf
If $FreqDurMath < 1 Then
If MsgBox(4116, "Error", 'The parameters "FREQUENCY" and "DURATION" at the config.ini file is set to a number which prevents it to loop more than once. Do you want to continue?', 10) = 7 Then Exit

EndIf
;----------------------------------------------------------COMMAND BREED I-------------------------------------------------------------------------------
Global $QueryCommand = "/query " & "/FO " & $FormatOut & " /V " & "/nh "
Global $FindCommand = "| find /I " & $FileExt
Global $ExportCommand = " > " & '"' & $ReportDir & $ReportOut & ".log" & '"'
;----------------------------------------------------------COMMAND BREED II------------------------------------------------------------------------------
If $FilterExt = "Y" Then
$CommandCombo = $QueryCommand & $FindCommand & $ExportCommand
Else
$CommandCombo = $QueryCommand & $ExportCommand
EndIf
$CommandFinal = "openfiles " & $CommandCombo
;-------------------------------------------------------------OPTIONS-----------------------------------------------------------------------------------
If $FilterExt = "Y" Then
If $FileExt <> "" Then
TrayTip("Message from the " & @ScriptName & " Script: ", 'The command "' & $CommandFinal & '" is running in this server. Options enabled are the following:' & @CRLF & @CRLF & "Filter: " & '"' & $FilterExt & '"' & @CRLF & "Ext/String: " & $FileExt & @CRLF, 1, 1)
FileWriteLine(@ScriptDir & "" & "CommandOut.txt", $CommandFinal)
Else
TrayTip("Message from the " & @ScriptName & " Script: ", 'The command "' & $CommandFinal & '" is running in this server.', 1, 1)
FileWriteLine(@ScriptDir & "" & "CommandOut.txt", $CommandFinal)
EndIf
EndIf
;-----------------------------------------------------------MAIN COMMAND---------------------------------------------------------------------------------
;--------MAIN COMMAND-----------------------------------
_RunDOS($CommandFinal)
;--------MAIN COMMAND-----------------------------------
$iDiff = _DateDiff('h', $iNow, _NowCalc())
Sleep($iTimeFreq) ;Frequency,
If $iDiff > $iTimeDur Then
$TimeOut = True
EndIf
If $TimeOut = True Then Exit
WEnd ;==> While from line 20

The ini File is the following:

[Time]

# What frequency? (Minutes [minimum: 15 min) / How long? (Hours [Minimum: 1H)
Frequency = 15
Duration = 1

[FilterExt]

# GREP Extension/String? ( Y, N)
FilterExt = Y

[FileExt]

# What's the extension or string combo to be matched? (.exe; .doc; .csv; Solidworks; Report, etc. (default: line commented by #)
FileExt = C:Sharing

[ReportOut]

# LogFile Sufix
ReportOut = Report

[FormatOut]
# LogFile Format: CSV or Table. (default: table)
FormatOut = CSV

So, It wasn't working. I tried to debug every line and it still didn't find anything wrong, so I created a filewriteline that writes down the SAME command that _RunDOS is running before it runs it. And if you copy and paste this command on the cmd line, it works, but the same command within _RunDOS generates a logfile with 0kb.

To test it you must create a sharing in your computer, and access a file like a .doc or .xls from another computer, then use the filter on the .ini file.

Check the the file in the EXPORT folder, it has 0kb. Delete it, and run on cmd the same exported command at scriptdir file "CommandOut.txt" and now, explain why it doesn't work.

It makes 0 sense.

Edited by HellFrost
Link to comment
Share on other sites

  • Moderators

HellFrost,

Please do not bump this thread again today. Remember this is not a 24/7 support forum - those who answer are only here because they like helping others and have some time to spare. You will just have to wait until someone who knows something about your particular problem, and is willing to help, comes online. :)

And there is no need to reply to this post either. ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • 2 weeks later...

Hello.

That seems to be no way to make this work from within a AutoIt Script.

To solve this problem I created a Scheduled Task, with a batch file as this:

cls
REM @echo off 
SET DATETIME=""
SET DATETIME=%date:~-4,4%-%date:~-7,2%-%date:~-10,2%--%time:~0,2%h%time:~3,2%m%time:~6,2%s
openfiles /query /FO CSV /V /nh | find /I "I:PUBLICBSCJGWMDOC_CLIENTS" >> "C:SCRIPTSOpenFilesReport%DATETIME%-report.log"

If you're gonna use this way, remember to set the "start in" field as the place you want the logs to be saved at. It doesn't work otherwise this is set.

Thanks.

Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...