Jump to content

Tlem

Active Members
  • Posts

    332
  • Joined

  • Last visited

About Tlem

  • Birthday 07/31/1967

Profile Information

  • Location
    Bordeaux (France)
  • WWW
    https://www.autoitscript.fr

Recent Profile Visitors

1,260 profile views

Tlem's Achievements

Universalist

Universalist (7/7)

9

Reputation

  1. I know all of that. I just want to know if it's wanted or if it's a bug of the file that compile the html file.
  2. Hi, You can find it in the sources files of the documentation here : https://www.autoitscript.com/autoit3/files/archive/autoit/ The last one is : https://www.autoitscript.com/autoit3/files/archive/autoit/autoit-docs-v3.3.14.5-src.zip And the file is in \docs\autoit\english
  3. Hi, In Helpfile, history.htm stop at version 3.2.0.1. In autoit_changelog.txt we can see history until 3.0.32. Is this wanted or is it related to the format of the version number that Gen_Changelog.au3 can not handle?
  4. Extract from my tutorial : Download : .NET Framework 2.0 Software Development Kit (SDK) (x86) or .NET Framework 2.0 Software Development Kit (SDK) (x64) With SevenZip, open the Setup.exe and open again the netfxsd1.cab. From there you can extract where you want : With the first 2 tools you can use signgui. With the other, you can create your selfcert (read my tuto). And for exporting your certificate : pvkimprt.exe
  5. Well, I have no time to make debugging for that, but to make what you want, I think you probably should use this : http://www.briggsoft.com/signgui.htm If you can understand French, you can read this tuto that I have wrote in 2011. ^^
  6. I confirm that this script is very old. It was intented tu ran on AutoIt v3.3.8.x. And I'm not sure that Timestamp link is still ok. Maybe it must be updated tu run on new version of AutoIt (COM handling and script breaking). ^^
  7. Hi Tadis. It seems that there is a notation error. Move the double quote after </a> I have edited my previous example code. $oSignerCode.Timestamp("<a href='http://timestamp.verisign.com/scripts/timestamp.dll' class='bbc_url' title='External link' rel='nofollow external'>http://timestamp.verisign.com/scripts/timestamp.dll"</a>) should be $oSignerCode.Timestamp("<a href='http://timestamp.verisign.com/scripts/timestamp.dll' class='bbc_url' title='External link' rel='nofollow external'>http://timestamp.verisign.com/scripts/timestamp.dll</a>")
  8. On the second case, if you put the Admin username / password on the box, the script run exactly like on a admin session?
  9. @AmbientMike For my knowledge, when you launch the script with a right clic on it an you chose launch with admin right what's going on? Did he run correctly?
  10. On the same idea of Bowmore, you can use this : #AutoIt3Wrapper_Run_Before=MKDIR "%scriptdir%\Archive" #AutoIt3Wrapper_Run_After=copy "%in%" "%scriptdir%\Archive\%scriptfile%.%date:~6,4%%date:~3,2%%date:~0,2%-%Time:~0,2%%Time:~3,2%%Time:~6,2%.au3" No need to use automatic revision incrementation and with this, you can play with date and time variables to create your hown "serial number" or revision system.
  11. Can you share your solution ... And close the french topic.
  12. I had perfectly understood, but guinness have plan to rewrite original function, not to change its functioning. So if you do like that, it will be a script breaking and I doubt that guinness will be agree.
  13. Hem, hem, DXRW4E sorry to disturb this topic again, but I would like to add some informations about the code you put in post #98. You show testing between 3 functions, but one of them does not work in the same way ! _FileWriteToLineEx() does not write directly in file. So testing like it is showing is not impartial! This function is incredibly faster for multiple treatments in a single pass (if you have to change/add/delete multiple lines in a file) because you read data in memory and do treatments directly before writing file. So it's a good thing to keep it, but be careful of the amount of data stored in $Data ... ^^ On the other hand, the syntax of the first two functions is still not identical to the current one : FonctionName($sFile, $iLine, $sText)
×
×
  • Create New...