Get install date from managed code

前端 未结 5 537
一个人的身影
一个人的身影 2020-12-19 06:15

Is there a managed API to retrieve an application\'s install date using the Product GUID?

Thanks. Scott

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-19 06:41

    Thanks Rob! I've added a complete C# example below.

        [DllImport("msi.dll", CharSet = CharSet.Unicode)]
        static extern Int32 MsiGetProductInfo(string product, string property, [Out] StringBuilder valueBuf, ref Int32 len);
    
        static void Main(string[] args)
        {
            Int32 len = 512;
            var builder = new StringBuilder(len);
            MsiGetProductInfo("{0db93d2f-a9e7-417f-9425-5e61e82c0868}", "InstallDate", builder, ref len);
    
            var installDate = DateTime.ParseExact(builder.ToString(), "yyyyMMdd", CultureInfo.InvariantCulture);
    
            Console.WriteLine(installDate);
        }
    

提交回复
热议问题