Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
572 B

#
# Switch back to the normal mapping.
#
use Cwd;
################################################################################
$fileMap = "$ENV{INIT}\\pchealth.priv.mapping";
chdir( "$ENV{SDXROOT}\\admin" );
open OPENED, "sd opened 2>&1|";
while(<OPENED>)
{
if(/([^#]*)#([0-9]*) - (.*)/o)
{
print "\nWARNING: you have opened files. Switch aborted...\n\n";
exit 10;
}
}
close(OPENED);
open MAP, "$fileMap" || die "Can't open $fileMap";
open CLIENT, "|sd client -i";
while(<MAP>)
{
print CLIENT "$_";
}
close CLIENT;
close MAP;
system "sd sync"