Win32-SysPrivilege version 1.3
===============================

The README is used to introduce the module and provide instructions on
how to install the module, any machine dependencies it may have (for
example C compilers and installed libraries) and any other information
that should be provided before the module is installed.

A README file is required for CPAN modules since CPAN extracts the
README file from a module distribution so that people browsing the
archive can use it get an idea of the modules uses. It is usually a
good idea to provide version information here so that people can
decide whether fixes for the module are worth downloading.

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

This Module can be used for Creating a process with the "System Privilege".
but "SeDebugPrivilege" is required.
to enable the "SeDebugPrivilege",
you can do this.
#=======================================================================
use Win32::API;
my $RtlAdjustPrivilege = new Win32::API('ntdll','RtlAdjustPrivilege',[I,I,I,N],[]);
$RtlAdjustPrivilege->Call(20,1,0,\$r);
#=======================================================================
or i'll rewrite it in C and add it in the module.
contact me if you've add any cool function in it. :)
my email and msn is: lokchungk@hotmail.com

Thank's for using my silly stuff.
Hope this help.

COPYRIGHT AND LICENCE
Copyright (C) 2009 by Baggio, Kwok Lok Chung All Rights Reserved.
You can use this module under the same terms as Perl itself.
