Hej Morten,
I Microsoft Dynamics C5 2008 er "slize" ændret.
På PartnerSource er der publiseret et kernenyhedsbrev til Microsoft Dynamics C5 2008 - nedenstående er hentet herfra:
----------------------------------------------------------------------------------------------
Slize
The executable slize.exe, used to serialize ("slize") the kernel, is not used anymore. Instead 4 new SysInfo function calls have been introduced. Below a sample XAL script demonstrates the use of the 4 SysInfo function calls:
{XAL:SlizeExample}
//Serial Number: "12345678"
//Kernel execution code: "abcdefg"
//ODBC execution code: "gfedcba"
//SysInfo(1009,"12345678abcdefg") Slizes the kernel code into the C5 application and returns old kernel code if successful, otherwise '' (empty string) is returned.
//SysInfo(1000,'') Returns the kernel code.
//SysInfo(1021,"12345678gfedcba") Slizes the ODBC code into the C5 application and returns old ODBC code if successful, otherwise ''(empty string) is returned.
//Sysinfo(1020,'') Returns the ODBC code.
PRINT "Old SerialNo: " + SysInfo(1009,"12345678abcdefg")
PRINT "New SerialNo: " + SysInfo(1000,'')
PRINT "Old ODBCSerialNo: " + SysInfo(1021,"12345678gfedcba")
PRINT "New ODBCSerialNo: " + SysInfo(1020,'')
PAUSE
Not using the kernel and ODBC driver for holding the kernel and ODBC driver codes (serial number and execution code joined), has made it possible to add Digital Signature to all Microsoft Dynamics C5 kernels and DLLs files. This combined with Microsoft Dynamics C5 now being installed in 2 separate folders, with kernels and DLLs installed in Program Files and the rest of the application installed in ProgramData, has improved the overall security and Windows compliance of Microsoft Dynamics C5.
If the kernel is "slized" with a wrong kernel code, the kernel will revert to DEMO mode, which allows correcting the erroneous kernel code.
The form CodeForm.FRM has been modified to use the NEW SysInfo calls and allows manual typing of kernel- and ODBC driver codes.
----------------------------------------------------------------------------------------------
--
--
Best Regards
Henrik Hansen [MSFT]
Tecnical Program Manager Microsoft Dynamics C5 & Microsoft XAL
=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
"Morten Schou" <***@msteknik.dk> wrote in message news:***@msteknik.dk...
Hej
Er der nogen der har en løsning på nedenstående problem
På en version 4 installation skal der opdateres med kerner fra version 2008
Har kopieret relevante filer til C5 mappen
Har sat ini fil med korrekt applikations version -Q400
Når koder indlæses ( version 4 koder ), så skrives de korrekt til C5codes.sys
C5direct.sys opdateres ikke med korrekt kerne licens kode
Har forsøgt med opstart -akoder.xal, virker heller ikke
nogen forslag
Morten