cortx Posted July 22, 2012 Share Posted July 22, 2012 Hello; For one of my scripts, I need to get the first and last name of the user I work on a domain and I need to get the information that appear into the Start menu If ma first and last name are:Julien Dupont, my login is jdupont The $var @UserName is jdupont. but I don't need that, I need Julien Dupont. How can I do that ? Thanks Link to comment Share on other sites More sharing options...
UEZ Posted July 22, 2012 Share Posted July 22, 2012 (edited) Just have a look to the great made by water!Br,UEZ Edited July 22, 2012 by UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ Link to comment Share on other sites More sharing options...
cortx Posted July 22, 2012 Author Share Posted July 22, 2012 Hello;Thanks for your answer but I can't use this one.Those UDF ask to start with _AD_OPEN but for that it's necessary to give some information like userid and password.I can't give mine into a script that I will give to other people and I can't ask to every people to enter them every time that they need to use my script.#Include <AD.au3> _AD_Open([$sAD_UserIdParam = "", $sAD_PasswordParam = ""[, $sAD_DNSDomainParam = "", $sAD_HostServerParam = "", $sAD_ConfigurationParam = ""[, $iAD_Security = 0]]])I've found this one to: but it's very very long to have the answer and if it's possible I ould like to have the same thing but mmediatly.There are no way to have this information into windows ? Link to comment Share on other sites More sharing options...
GEOSoft Posted July 22, 2012 Share Posted July 22, 2012 If Windows doesn't have the full username information then just how do you think anything can get it for you? Build an SQLite database that contains both @USERNAME and the users full name then check that. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!" Link to comment Share on other sites More sharing options...
BrewManNH Posted July 23, 2012 Share Posted July 23, 2012 Hello;Thanks for your answer but I can't use this one.Those UDF ask to start with _AD_OPEN but for that it's necessary to give some information like userid and password.I can't give mine into a script that I will give to other people and I can't ask to every people to enter them every time that they need to use my script._AD_Open doesn't require any of the log in information, it's ALL optional. If you just use _AD_Open() with no parameters it should work. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
hannes08 Posted July 23, 2012 Share Posted July 23, 2012 #include <AD.au3> _AD_Open() Global $aResult = _AD_GetObjectAttribute(@UserName, "DisplayName") MsgBox(64, "Active Directory Functions", "String returned for User '" & @UserName & "', Attribute 'DisplayName': " & $aResult) _AD_Close() Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler] Link to comment Share on other sites More sharing options...
water Posted July 23, 2012 Share Posted July 23, 2012 Perfect My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
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