Hallo Comiunity.
Ich habe hier mal ein Kleines Skript für Euch, Das das Windows-Installationsdatum Ausliest und in ein Windows-Zeit Format Umwandelt,
Da der Wert in der Registery ein UNIX-Timestamp Ist!
Hier mal der Key wo man das Installationsdatum Herbekommt! :
Schlüssel: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\
Key: InstallDate
Wenn ihr BugsFindet, Sagt es Mir, Obwohl ich Denke das es Keine Bugs Gibt
So Erstmal Genug Geredet, Hier das Skript:
Spoiler anzeigen
#cs
Name: WinDATE
Version: 0.1
Copyright: WEB-SOFT (DjDominik)
Website: http://www.websoft.bplaced.net
#ce
;~ Anfang der Includes
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <Date.au3>
;~ Ende der Includes
;~ Anfang des GUI-Codes
$Gui = GUICreate("WinDATE", 256, 75, 192, 114, -1, BitOR($WS_EX_TOOLWINDOW, $WS_EX_WINDOWEDGE))
GUICtrlCreateGroup("Installations-Datum von Windows", 8, 8, 241, 57)
$Box = GUICtrlCreateInput("", 16, 32, 225, 21, BitOR($ES_AUTOHSCROLL, $ES_READONLY))
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
;~ Ende des GUI-Codes
$sUnixInstall = RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\", "InstallDate")
GUICtrlSetData($Box, _DateTimeFormat(_DateAdd('s', $sUnixInstall, "1970/01/01 01:00:00"), 0))
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Und Nochmal als Anhang
Also Viel Spaß damit!
Edit: Hier der Programmablauf :
Edit2: Jetzt sollte der Programmablauf da Sein
Spoiler anzeigen
[Blockierte Grafik: http://privat.bplaced.net/WinDATE.png]