-
Posts
26,657 -
Joined
-
Last visited
-
Days Won
203
water last won the day on January 3
water had the most liked content!
About water
water's Achievements
-
Gianni reacted to a post in a topic: Multi-Task (easily run and mange many processes)
-
argumentum reacted to a post in a topic: Multi-Task (easily run and mange many processes)
-
Multi-Task (easily run and mange many processes)
water replied to Gianni's topic in AutoIt Example Scripts
@Gianni Added this UDF to the wiki -
ioa747 reacted to a post in a topic: DarkMode UDF for AutoIt's Win32GUIs
-
WildByDesign reacted to a post in a topic: DarkMode UDF for AutoIt's Win32GUIs
-
argumentum reacted to a post in a topic: DarkMode UDF for AutoIt's Win32GUIs
-
DarkMode UDF for AutoIt's Win32GUIs
water replied to NoNameCode's topic in AutoIt Technical Discussion
Added this UDF to the wiki -
NassauSky reacted to a post in a topic: COM error handling in a UDF - best practice?
-
Glad you could fix your problem
-
fraizor reacted to a post in a topic: Rename Excel sheet 1
-
Problem with _StringEncrypt() in autoit and scite
water replied to angel83's topic in AutoIt General Help and Support
Please be so kind and post the error message you get. Seems like the function was removed way back in version 3.3.9.8. Please see the changelog as well: Removed: Documentation and example for _StringEncrypt(). Scripts should be updated to use the Crypt functions instead. Look at _Crypt_EncryptData() for an alternative example." -
AutoBert reacted to a post in a topic: Fork UDF (ish)
-
Nine reacted to a post in a topic: UDF : Multi-threading made easy
-
argumentum reacted to a post in a topic: Fork UDF (ish)
-
I added this UDF to the wiki
-
I added this UDF to the wiki
-
I guess this is an false alert. Details can be found here.
-
If the help file is God then the Wiki is the Goddess of AutoIt. The Tutorials you find there explain step by step how to do a specific task. Example: Managing multiple GUIs
-
@mr-es335 You noticed that the thread has been quiet for more than 6 years and the OP has been absent for more than 3 years?
-
There seem to be problems with 24H2 and AD (according to Google). UN&PW invalid (Username & Password): https://community.spiceworks.com/t/win11-24h2-breaks-ldap-authentication-for-enterprise-app/1139078/26 Solution seems to be to logon using the NetBIOS Login Name e.g. "Your Domain\Your Userid" (For details please see: https://www.autoitscript.com/wiki/Active_Directory_UDF_-_General#To_current_domain) You get more hits when telling Google to search for "active directory windows 11 24h2 authentication failed" If the NetBIOS logon does not work I suggest to stay with 23H2 until MS fixes the problem or someone can explain what else happened (raised security requirements ...).
-
I do not know what changed from 23H2 to 24H2 😕 But I fear I will never know because me not having access to an Active Directory is permanent 😞 Maybe you get better error information when trying the following: https://www.autoitscript.com/wiki/Active_Directory_UDF_-_General#Error_handling Specify the UserID as NetBIOS Login Name or User Principal Name and you will get additional information about the error. It might be a problem of raised security requirements by MS as described here: Here you can get more information about what changed (after 2020): https://support.microsoft.com/en-us/topic/2020-2023-and-2024-ldap-channel-binding-and-ldap-signing-requirements-for-windows-kb4520412-ef185fb8-00f7-167d-744c-f299a66fc00a Another idea: The MS Event Viewer might provide more detailed error information.
-
As you can see from field "Description" the username or password seem to be incorrect. Unfortunately I no longer have access to an AD environment, so I have to ask a lot of questions Does it make any difference when you remove the excess space characters? _AD_OPEN (User, Password, "DC=AD,DC=Univ-Lille,DC=Fr", "Ad.univ-lille.fr", "CN=configuration,DC=AD,DC=Univ-Lille, DC=FR", 1) of when you set $iSecurity to 0? _AD_OPEN (User, Password, "DC=AD,DC=Univ-Lille,DC=Fr", "Ad.univ-lille.fr", "CN=configuration,DC=AD,DC=Univ-Lille,DC=FR", 0)
-
Can you please call _AD_ErrorNotify(2) before calling _AD_Open and post the result? Which format do you use for User/Password? Details can be found in the Remarks for _AD_Open: _AD_Open will use the alternative credentials $sUserIdParam and $sPasswordParam if passed as parameters. $sUserIdParam has to be in one of the following formats (assume: domain name = Contoso, DNS domain name = Contoso.com, samAccountName = DJ, Firstname = John, Lastname = Doe) * Windows Login Name/SamAccountName e.g. "DJ" * User Principal Name: UserPrincipalName attribute e.g. "John.Doe@Contoso.com" * User Principal Name: sAMAccountName plus DNS name of a domain in the same forest e.g. "DJ@Contoso.com" * The NetBIOS domain name, followed by a backslash ("\"), followed by the value of the sAMAccountName e.g. "Contoso\DJ"
-
Send embedded image to Gmail account...
water replied to Jemboy's topic in AutoIt General Help and Support
My understanding is that - as the CID part is completely embedded in the HTML that has to be created by you - the mail program (be it Outlook or CMail or ...) is only used to put the HTML mail into an envelope and transmit it. No changes to the HTML will be done by Outlook/CMail. But I could be wrong