Jump to content

Recommended Posts

Posted

Hello to everyone this is my first post but I have been using AutoIt for a while but have problem I need assistance with.

Here is the code :

Func Example()
 Local $sFilePath = "jte.eee"   ;Local
 MsgBox($MB_SYSTEMMODAL, "", "Path: " & $sFilePath)
 Local $hFileOpen = FileOpen($sFilePath, $FO_READ)
 Local $sFileRead = FileRead($hFileOpen)
 If $hFileOpen = -1 Then
 MsgBox($MB_SYSTEMMODAL, "", "An error occurred when reading the file.")
 Return False
 EndIf
MsgBox($MB_SYSTEMMODAL, "", "Open: " & $hFileOpen)
FileFlush($hFileOpen)
FileSetPos($hFileOpen, -40, 2)
MsgBox($MB_SYSTEMMODAL, "", "Position: " & FileGetPos($hFileOpen) & @CRLF & "Data: " & @CRLF & FileRead($hFileOpen))
FileSetPos($hFileOpen, 984, 0)                                             ;$FILE_BEGIN)
MsgBox($MB_SYSTEMMODAL, "", "Position: " & FileGetPos($hFileOpen) & @CRLF & "Data: " & @CRLF & FileRead($hFileOpen))
FileClose($hFileOpen)
EndFunc   ;==>Example

This works but when I change the first line to :

Local $sFilePath = @TempDir & "tmpjte.exe";

The file seems to be read but the FileSetPos does not fuction.

Any ideas

ArianRat
 

Posted (edited)

Seems to work fine here, it just doesn't output data at filesetpos, but i don't have the file you have, so at the same offset it may not have anything.

PS: you should encode the code with autoit tag, it's the blue square with an A.

Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Posted

And you should do some error checking in your script. Every AutoIt function indicates an error by setting the return value and/or the macros @error and @extended.

Check for errors and only proceed if all went well with the last function.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Posted

Thank you all,

I took all the error checks out because the code works,

As usual I had a break and realised the mistake.

I have now sorted the code.

ArianRat

Posted
As usual I had a break and realised the mistake.
 
So what was it?
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

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
×
×
  • Create New...