FileInstall doesn't extract .zip or .rar files - (Moved)
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By TheAutomator
This is Iconizer:
This program is made to replace the free / pro version of folder maker.
(I bundled a few icon packs with it too).
How it works:
Icons are copied to the selected folder, the folder icon is changed to that icon and the icon inside the folder is made hidden and read-only.
By copying the icon to the folder itself you can now move it to another computer and the icon will stay!
(A new icon will override the old one).
I wrote a little installer for it to add or remove this program from/to the context menu of any folder, harddrives are also accepted:
It runs from the contextmenu but also accepts command-line arguments if you wish.
Just opening it without any parameters wil launch the 'Iconarchive' website.
Let me know what you think, any tips, bugs or nice ideas are welcome
I'm not sure if I can upload the icons because they were extracted from the .ICL file of foldermaker..
Kind regards! TheAutomator.
test.bat Icon.ico Iconize.au3 Installer.au3
-
By lonardd
Hi,
I have a source Script where I inserted the following code lines to be able to extract the script source code anytime later if I run it with the /ExtractSourceCode:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseX64=n
#AutoIt3Wrapper_Change2CUI=y
#AutoIt3Wrapper_Res_SaveSource=Y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
If StringInStr($cmdlineRaw, "/ExtractSourceCode") Then
FileInstall(@ScriptFullPath, @ScriptDir & "\" & @ScriptName & ".txt", 1)
;FileInstall("C:\Test.txt", @ScriptDir & "\Test.txt")
Exit
EndIf
I used to be able to compile it on another computer some years ago without problems.
Now I wanted to modify the code, so I extracted it, renamed the file *.au3, performd my little modification and rebuild.
Strangely, I get this popup with Caption: Aut2Exe Error and Invalid FileInstall() function.
BEfore I hit the OK button on the Popup, I can see the file is actually Built as I can see that an EXE file is created, but as I hit OK in that error dialog, the EXE disappears.
Any advice?
Thanks
David
I can't remember if I did it with Autoit 2
EPP_NF_Replacer_UBI.au3
-
By Gowrisankar
Dear members,
I am working on a project where, emails from outlook are to be read and moved to various folders within the mailbox, based on the content of the emails.
I used the below code for moving mails. It works fine when I run it against individual mail ids. But when I run it on Shared mailbox, the mails are not moved to respective folders.
_OL_ItemMove($oOutlook, $sEntryId, Default, $sDestinationFolder) The value of $sEntryId is saved in an excel report initially. The current process reads the $sEntryId from the excel and passes it to "_OL_ItemMove" statement.
Requesting the guidance of the forum members in this issue.
-
By Gowrisankar
Dear members,
I'm trying to move unread mails from Inbox to a different folder using OutlookEx UDF.
But its not working for me. I'm not sure what mistake I do.
I get the error code 6 when the following is executed. From the UDF it is observed that "No or an invalid item has been specified".
Note : The UDF version is 1.3.3.1. AutoIt version (v3.3.14.2).
#include <OutlookEX.au3> Global $oOutlook = _OL_Open() If @error <> 0 Then Exit MsgBox(16, "OutlookEX UDF", "Error creating a connection to Outlook. @error = " & @error & ", @extended = " & @extended) Global $aOL_Item = _OL_ItemFind($oOutlook, "*\Inbox", $olMail, "[UnRead]=True", "", "", "Subject", "", 1) If $aOL_Item[0][0] = 0 Then Exit MsgBox(16, "OutlookEX UDF: _OL_ItemMove Example Script", "Could not find a task item in folder 'Outlook-UDF-Test\SourceFolder\Tasks'. @error = " & @error) _ArrayDisplay($aOL_Item, "OutlookEX UDF: _OL_ItemFind Example Script - Unread mails") _OL_ItemMove($oOutlook, $aOL_Item[1][0], Default, "*\Outlook-UDF-Test\TargetFolder\Mail") If @error <> 0 Then Exit MsgBox(16, "OutlookEX UDF: _OL_ItemMove Example Script", "Error moving specified task. @error = " & @error) Any help is deeply appreciated. Thanks in advance.
Thanks and regards,
Gowrisankar R.
-
By TheSaint
Files Checklist
Just a simple little (complex enough) program I whipped up, for a purpose ... but only too happy to share.
It can of course be modified to do more, but at the moment just compares file names with or without path ... Location versus Checklist.
There are of course other compare programs out there, most doing a lot more than mine (i.e. WinMerge or FileComparer). But I wanted something quick and simple with drag & drop, that uses up a smallish amount of screen real estate.
NOTE - The SAVE button is also a LOAD one, and displays 'Load' when the list is empty. So you can save and load specific lists. While in SAVE mode, the button can also be used with CTRL held down, to ADD another list to existing (displayed one) ... combining as they say ... though not saved until you SAVE. CLEAR button removes a selected entry, or if used with CTRL held down, queries about removing all listed entries.
Files Checklist v1.2.zip
Files Checklist v1.3.zip
Files Checklist v1.4.zip (Includes a BUGFIX.)
(source included)
WARNING - While this program does not act on files or folders ADDED or CHECKED, you might act on the results, so I advise caution, and I also recommend using the new 'Relative' option in v1.3 or newer ... but you still need to understand what you are doing and what the results actually mean. Some basic examples in the next post.
Enjoy!
RELATED
Users might also be interested in another somewhat related program of mine.
DeleteIf Same
Cheers!
-
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now