Popular Posts
javax.net.ssl.SSLHandshakeException: Connection closed by peer in Android 5.0 Lollipop Recently, there is a error occurs when access website via ssl connection like below although it worked fine several days ago. // Enable SSL... Create barcode import java.io.File; import java.io.FileNotFoundException; import net.sourceforge.barbecue.Barcode; import net.sourceforge.barbecue.Barcode... Enable SSL connection for Jsoup import org.jsoup.Connection; import org.jsoup.Jsoup; import javax.net.ssl.*; import java.io.IOException; import java.security.KeyManagement...
Stats
Get share folders from wmi
ManagementObjectSearcher searcher = new ManagementObjectSearcher("select * from win32_share");
foreach (ManagementObject share in searcher.Get())
{
    Console.WriteLine("==============");
    ManagementBaseObject baseObj = share as ManagementBaseObject;

    PropertyDataCollection.PropertyDataEnumerator en = share.Properties.GetEnumerator();
    while (en.MoveNext())
    {
        Console.WriteLine(en.Current.Name + "=" + en.Current.Value);
    }
}