Jump to content

ter-pierre

Active Members
  • Posts

    85
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ter-pierre's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Very good M23! "& Binary(0xFEFEFEFE)" make all difference! Many Thanks! I applaud you
  2. Hi Melba23! what if a multi-line file? I try this and is not working... $hFile = FileOpen($sFileName, 2 + 16) $x=0 while $x<3 $bEncryptedData_ToFile = _Crypt_EncryptData(_NowCalc(), $sPassWord, $CALG_RC4) ; Put parameters in the correct order FileWrite($hFile, $bEncryptedData_ToFile) $x=$x+1 Sleep(2000) WEnd FileClose($hFile) I write a tool that generate a txt log. My issue is to crypt this log. I will appreciate if you or anybody can help. TKS
  3. Hey FredAl Very nice job!!!
  4. EndFunc, thanks again. exodius, excuse... thanks for your help. This is a realy inteligent way out. Thanks all
  5. Hi Jango! Very good. That solve my problem. tks. Hi EndFunc! Itry to use adfunctions.au3 to check the authentication against AD but I can't found the way... can you help? thanks anyway. Pierre
  6. Hi Guys! Does anybody knows a way to send user/password to an M$ Active Directory and looks the answer to know if user/passwrod was accept or not? tks Pierre
  7. Legal! Obrigado pela colaboração.
  8. yes!
  9. Chame a função informando o cpf, se for válido retorna 1 e se não for retorna 0. Exemplo: $CPF=InputBox("","CPF") If checacpf($CPF)=1 Then MsgBox(0,"","CPF OK") Else MsgBox(0,"","CPF inválido") EndIf Exit
  10. Thanks guy, you save my day!!! Pierre
  11. Hi all! I need to search a list of servers (2K and 2K3) looking for task schedule account info. I search the forim ans found some thing (at.exe, jt.exe, schtasks.exe), but none of them runs perfect. Any one knows a way? tks. Pierre
  12. Hi guys. Anyone knows a samle code to add a domain global group to a local computer group? I am trying to add the domain group called GG_WS_ADM to the local Administrators group of my workstations thougth our logon script. Thanks for the help.
  13. RunWait (@ComSpec & ' /c ' & 'nbtstat -A '&@IPAddress1&' | find /I "MAC" >'&@TempDir&'\mac.tmp',@ScriptDir, @SW_HIDE) MsgBox(0,"",StringRight(FileReadLine(@TempDir&'\mac.tmp'),17)) Pierre
  14. My code... RunWait (@ComSpec & ' /c ' & 'nbtstat -A '&@IPAddress1&' | find /I "MAC" >'&@TempDir&'\mac.tmp',@ScriptDir, @SW_HIDE) MsgBox(0,"",StringRight(FileReadLine(@TempDir&'\mac.tmp'),17)) Pierre
×
×
  • Create New...