kor 5 Posted January 17, 2011 (edited) Part of a script I am creating will terminate an active directory user. As part of the termination function I am going to be setting the account expiration date. I want to set the expiration date to 90 days from when the script is run. I then need to format that date into a yyyy-mm-dd format. I know how to read the date, but I don't know how to add 90 days or format it into the yyyy-mm-dd format specifically. Can anyone link me to some code to get me started? Edited January 17, 2011 by kor Share this post Link to post Share on other sites
somdcomputerguy 103 Posted January 17, 2011 See the _DateAdd() function in the Helpfile. As for formatting the date the way you want, there's different ways to do it. The StringSplit() function comes to mind first, breaking the string into elements, and using them in any order you want. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
JohnOne 1,603 Posted January 17, 2011 (edited) EDIT: Same answer as above. unable to delete. Edited January 17, 2011 by JohnOne AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
GEOSoft 67 Posted January 17, 2011 While StringSplit() may come to mind for some, I would probably do it with StringFormat() GeorgeQuestion 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!" Share this post Link to post Share on other sites
kor 5 Posted January 17, 2011 My code. #include <Date.au3> ; Add 90 days to today $vardate = _DateAdd( 'd',90, _NowCalcDate()) $date = StringReplace($vardate, "/", "-") MsgBox( 4096, "", "+90 days: " & $date) Share this post Link to post Share on other sites