zone97 Posted February 10, 2017 Posted February 10, 2017 Been looking around, seen a few posts about doing the opposite. But I need a function that converts a unix time-stamp. IE: 1486570334 and converts it to Wednesday 8th February 2017 10:12:14 AM or at least just 02/08/2017 as the date is really all I need. Spoiler WinSizer 2.1 (01/04/2017) - Download - [ Windows Layout Manager ]Folder+Program (12/23/2016) - Download - [ USB Shortcut Creator ]
jguinch Posted February 10, 2017 Posted February 10, 2017 Look at _DateAdd function : #Include <Date.au3> Local $date = _DateAdd('s', 1486570334, "1970/01/01 00:00:00") Local $longdate = _DateTimeFormat($date, 1) & " " & _DateTimeFormat($date, 5) ConsoleWrite($longdate) zone97 1 Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
water Posted February 10, 2017 Posted February 10, 2017 Using the search feature of the forum would have returned some hits. One of them: zone97 1 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
zone97 Posted February 10, 2017 Author Posted February 10, 2017 Thank you both, Very useful. Spoiler WinSizer 2.1 (01/04/2017) - Download - [ Windows Layout Manager ]Folder+Program (12/23/2016) - Download - [ USB Shortcut Creator ]
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