The following program disable share with option when we right click drives
#include<stdio.h>
int main()
{
system("REG DELETE HKCR\\Drive\\shellex\\ContextMenuHandlers\\Sharing /f");
system("reg delete HKCR\\Drive\\shellex\\PropertySheetHandlers\\Sharing /f");
}
0 comments:
Post a Comment