?
ZXNet echo conference «zxnet.pc»
From Artem O. Kozakov → To Kirill Chubenko 3 August 2001
Greetings, Kirill!
August 03, 2001 (it was 00:18 then)
Kirill Chubenko in his letter to All wrote:
KC> How to extract uptime from Win2K into a text line?
Compile it with a Delphi compiler. if not, I can give you the exe file
=== Quoting the Windows Clipboard file ===
uses windows;
var
day,hour,min,sec:longint;
hour1,min1,sec1:longint;
total:longint;
begin
total:=GetTickCount;
sec:=total div 1000;
min:=sec div 60;
hour:=min div 60;
day:=hour div 24;
hour1:=hour-24*day;
if hour1<0 then hour1:=0;
min1:=min-hour*60;
if min1<0 then min1:=0;
sec1:=sec-min*60;
if sec1<0 then sec1:=0;
writeln(day,' day,
From Kirill Frolov → To Aleksandr Kolotuhin 25 March 2002
Press RESET immediately, Aleksandr!
23 Mar 02 21:46, Aleksandr Kolotukhin wrote to All:
AK> Required:
AK> save the image of the Scorpio HDD to a file on the PC screw.
AK> The size of the Spec HDD is 203 MB.
AK> That is. Is there a plugin that will take Spec's HDD and copy it
AK> all the tracks into a file one by one, and then can be recorded in the same way
AK> back?
dd if=/dev/spectrum-hdd of=zx-hdd.fileimage
man dd