AutoIt Snippets: Difference between revisions

From AutoIt Wiki
Jump to navigation Jump to search
m (Converted headers to Template:Snippet Headers. If this is unacceptable, you know what to do.)
mNo edit summary
Line 8: Line 8:
<div class="center" style="width:auto; margin-left:auto; margin-right:auto;">'''Please always credit an author in your script if you use their code.  It is only polite.'''</div>
<div class="center" style="width:auto; margin-left:auto; margin-right:auto;">'''Please always credit an author in your script if you use their code.  It is only polite.'''</div>


{{Snippet Header|_IsInternetConnected()|http://www.autoitscript.com/forum/user/35302-guinness/|guinness||}}
{{Snippet Header|_IsInternetConnected|5302-guinness|guinness||}}


<syntaxhighlight lang="autoit">
<syntaxhighlight lang="autoit">
Line 22: Line 22:
</syntaxhighlight>
</syntaxhighlight>


{{Snippet Header|_PasswordCrypt()|http://www.autoitscript.com/forum/user/4920-valuater/|Valuater|http://www.autoitscript.com/forum/user/35302-guinness/|guinness}}
{{Snippet Header|_PasswordCrypt|4920-valuater|Valuater|35302-guinness|guinness}}


<syntaxhighlight lang="autoit">
<syntaxhighlight lang="autoit">

Revision as of 18:05, 11 November 2012

Welcome To The AutoIt Snippets Page ~ ( Snippet - A short reusable piece of computer code )

These are generally single functions or small pieces of AutoIt code that you can add into your script which give extra functionality.

This will cover a wide variety of subjects and uses, maybe anything from finding if an internet connection is working or possibly the date Windows was installed, this page is intended to give easy access to the functions.

Examples

Please always credit an author in your script if you use their code. It is only polite.

{{{AuthorName}}}








ConsoleWrite("Internet Is Connected" & " = " & _IsInternetConnected() & @CRLF) ; ( Returns "True" Or "False" )

Func _IsInternetConnected()
    Local $aReturn = DllCall('connect.dll', 'long', 'IsInternetConnected')
    If @error Then
        Return SetError(1, 0, False)
    EndIf
    Return $aReturn[0] = 0
EndFunc   ;==>_IsInternetConnected

{{{AuthorName}}}








#include <Crypt.au3>

Local $sGenericPassword_1 = 'Password@AutoIt', $sGenericPassword_2 = 'NewPassword@AutoIt', $sSavePath = @ScriptDir & '\License.dat'
ConsoleWrite('1. ' & _PasswordCrypt($sGenericPassword_1, $sSavePath) & @CRLF) ; Write the password to a file located in the @ScriptDir. The password we wrote is returned by the function.
ConsoleWrite('2. ' & _PasswordCrypt($sGenericPassword_1, $sSavePath) & @CRLF) ; Since the password has been written already, we now want to check if the user has entered the password correctly. Returns True or False.
ConsoleWrite('3. ' & _PasswordCrypt($sGenericPassword_2, $sSavePath, 1) & @CRLF) ; Overwrite the old password with a new one.
ConsoleWrite('4. ' & _PasswordCrypt($sGenericPassword_1, $sSavePath) & @CRLF) ; Check the password matches. This will fail as we're checking the old password against the new one.
FileDelete($sSavePath)

Func _PasswordCrypt($sPassword, $sFilePath, $iOverwrite = 0) ; By guinness, idea by Valuater.
    If FileExists($sFilePath) And $iOverwrite = 0 Then
        Return BinaryToString(_Crypt_DecryptData(IniRead($sFilePath, 'PasswordKey', 'Password', ''), @ComputerName, $CALG_AES_256)) == $sPassword
    Else
        If IniWrite($sFilePath, 'PasswordKey', 'Password', _Crypt_EncryptData($sPassword, @ComputerName, $CALG_AES_256)) Then
            Return $sPassword
        EndIf
    EndIf
    Return SetError(1, 0, '')
EndFunc   ;==>_PasswordCrypt

Snippet Creation Help.

AutoIt Snippets Collection

AutoIt ~ AutoIt Examples.

GUI ~ Anything GUI related.

Hardware ~ Hardware Examples.

Numbers ~ Math, Number & Time Examples.

Miscellaneous ~ All Other Examples

Networking ~ Network, Wireless and Internet Examples.

Windows ~ Windows Examples.