I've been trying to write to a file in the system dir on my computers' but I can't get it to work;what would I do to get the necessary permissions?I need to update the SS without having to manually change the permissions on each and every computer...
var
z: THandle;
...
begin
....
z:=OpenFile('myfile.scr',a,OF_WRITE);
FileWrite(z,buf[16],3124);
FileClose(z);
end;