程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> PowerShell實現查詢打開某個文件的默認應用程序

PowerShell實現查詢打開某個文件的默認應用程序

編輯:更多關於編程

       這篇文章主要介紹了PowerShell實現查詢打開某個文件的默認應用程序,本文通過C#調用Windows API來實現這個需求,需要的朋友可以參考下

      許多文件擴展名和一個可執行應用程序綁定。正因為這樣你才可以使用Invoke-Item打開一個文檔。

      要找出一個給定後綴名的文件是由那個默認引用程序打開它,並不麻煩。我們可以使用Windows系統中的注冊表,自行編程解決。但是在掃描注冊表時,要稍微留意一下32位和64位機器的問題,這不是本文重點,點到為止。

      另外一種途徑,稍顯旁門左道,調用Windows API。下面的例子會演示如何調用。采取這種途徑最大的優勢是借力於操作系統。而你的付出成本只是用C#代碼間接調用Windows API中的函數而已:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 $Source = @"   using System; using System.Text; using System.Runtime.InteropServices; public class Win32API { [DllImport("shell32.dll", EntryPoint="FindExecutable")]   public static extern long FindExecutableA(string lpFile, string lpDirectory, StringBuilder lpResult);   public static string FindExecutable(string pv_strFilename) { StringBuilder objResultBuffer = new StringBuilder(1024); long lngResult = 0;   lngResult = FindExecutableA(pv_strFilename, string.Empty, objResultBuffer);   if(lngResult >= 32) { return objResultBuffer.ToString(); }   return string.Format("Error: ({0})", lngResult); } }   "@   Add-Type -TypeDefinition $Source -ErrorAction SilentlyContinue   $FullName = 'c:Windowswindowsupdate.log' $Executable = [Win32API]::FindExecutable($FullName)   "$FullName will be launched by $Executable"

      唯一有個限制,就是FindExecutable()需要檢查的文件是存在的,你不能只用文件擴展名去請求。

      另外@reidca反饋說該方法不能檢測MMC加載項打開的文件,比如cer和pfx證書文件,程序會崩潰。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved