C# 經過服務啓動窗體(把窗體添加到服務裏)實現用戶交互的windows服務[轉發]

因爲我的須要,想找一個鍵盤記錄的程序,從網上下載了不少,多數都是須要註冊的,另外也多被殺軟查殺。因而決定本身寫一個,若是做爲一個windows應用程序,能夠實現抓取鍵盤的記錄。想要實現隨系統啓動的話,其中一種方法就是要做爲windows服務,把代碼直接寫到服務裏邊並不能抓取到鍵盤的記錄,從網上翻閱資料及查看msdn才知道:windows

Windows 服務應用程序在不一樣於登陸用戶的交互區域的窗口區域中運行。窗口區域是包含剪貼板、一組全局原子和一組桌面對象的安全對象。因爲 Windows 服務的區域不是交互區域,所以 Windows 服務應用程序中引起的對話框將是不可見的,而且可能致使程序中止響應。一樣,錯誤信息應記錄在 Windows 事件日誌中,而不是在用戶界面中引起。安全

服務程序通常使用的是LocalSystem賬戶,擁有本身的window station,和Default桌面,這個window station是不能於用戶交互的,也就是說,你不能在上面顯示窗口,它也不接受用戶的鼠標、鍵盤等輸入。 

咱們使用用戶賬戶登陸之後,看到的桌面,是WinSta0(window station)下的Default(desktop). 
WinSta0下有3個桌面: 
WinLogon :以Logon對話框的形式出現.當用戶登陸之後,WinLogon.exe切換到Default desktop. 
Default :這是Explorer.exe和全部用戶程序窗口出現的地方,也就是咱們一般使用windows看見的地方.應用程序就運行在這個桌面上 
Screen saver :系統空閒的時候,運行屏保的桌面. 

當你在「計算機管理」中選擇一個服務,修改屬性,選擇「登陸」標籤頁的「容許服務與桌面交互」,那麼該服務就使用的是WinSta0(window station)下的Default(desktop). 你也就能夠與你的服務進行交互操做了。這時,你能獲取default的桌面位圖,由於線程的桌面就是WinSta0下的Default。要想同時得到Winlogon桌面位圖,應該先把線程的桌面設置成Winlogon。編輯器

此部分代碼公佈以下:ide

//Service1.Designer.cs文件ui

using System.Threading;this

namespace KeyBoard
{
    partial class Service1
    {
        /// <summary> 
        /// 必需的設計器變量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;
        Thread threadForm = null;spa

        /// <summary>
        /// 清理全部正在使用的資源。
        /// </summary>
        /// <param name="disposing">若是應釋放託管資源,爲 true;不然爲 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }線程

        #region 組件設計器生成的代碼設計

        /// <summary> 
        /// 設計器支持所需的方法 - 不要
        /// 使用代碼編輯器修改此方法的內容。
        /// </summary>
        private void InitializeComponent()
        {
            // 
            // Service1
            // 
            this.ServiceName = "Service1";日誌

        }

        #endregion

    }
}

//Service1.cs文件

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.ServiceProcess;
using System.Text;
using System.Threading;
using System.Runtime.InteropServices;

namespace KeyBoard
{
    public partial class Service1 : ServiceBase
    {
        public Service1()
        {
            InitializeComponent();
        }

        protected override void OnStart(string[] args)
        {
            threadForm = new Thread(new ThreadStart(FormShow));
            threadForm.Start();
        }

        protected override void OnStop()
        {
            if (threadForm != null)
            {
                if (threadForm.IsAlive)
                {
                    threadForm.Abort();
                    threadForm = null;
                }
            }

        }
       

        void FormShow()
        {

            GetDesktopWindow(); 
            IntPtr hwinstaSave = GetProcessWindowStation(); 
            IntPtr dwThreadId = GetCurrentThreadId(); 
            IntPtr hdeskSave = GetThreadDesktop(dwThreadId); 
            IntPtr hwinstaUser = OpenWindowStation("WinSta0", false,33554432); 
            if (hwinstaUser == IntPtr.Zero) 
            { 
                RpcRevertToSelf(); 
                return ;
            } 
            SetProcessWindowStation(hwinstaUser); 
            IntPtr hdeskUser = OpenDesktop("Default", 0, false, 33554432); 
            RpcRevertToSelf(); 
            if (hdeskUser == IntPtr.Zero) 
            { 
                SetProcessWindowStation(hwinstaSave); 
                CloseWindowStation(hwinstaUser); 
                return ; 
            } 
            SetThreadDesktop(hdeskUser);

            IntPtr dwGuiThreadId = dwThreadId;

            MouseKeyBoard f=new MouseKeyBoard(); //此FORM1能夠帶notifyIcon,能夠顯示在托盤裏,用戶可點擊托盤圖標進行設置
            System.Windows.Forms.Application.Run(f);


            dwGuiThreadId = IntPtr.Zero; 
            SetThreadDesktop(hdeskSave); 
            SetProcessWindowStation(hwinstaSave); 
            CloseDesktop(hdeskUser); 
            CloseWindowStation(hwinstaUser); 
        }

        [DllImport("user32.dll")]
        static extern int GetDesktopWindow();

        [DllImport("user32.dll")]
        static extern IntPtr GetProcessWindowStation();

        [DllImport("kernel32.dll")]
        static extern IntPtr GetCurrentThreadId();

        [DllImport("user32.dll")]
        static extern IntPtr GetThreadDesktop(IntPtr dwThread);

        [DllImport("user32.dll")]
        static extern IntPtr OpenWindowStation(string a,bool b,int c);

        [DllImport("user32.dll")]
        static extern IntPtr OpenDesktop(string lpszDesktop, uint dwFlags,
        bool fInherit, uint dwDesiredAccess);

        [DllImport("user32.dll")]
        static extern IntPtr CloseDesktop(IntPtr p);

        [DllImport("rpcrt4.dll", SetLastError=true)]
        static extern IntPtr RpcImpersonateClient(int i);


        [DllImport("rpcrt4.dll", SetLastError=true)]
        static extern IntPtr RpcRevertToSelf();

        [DllImport("user32.dll")]
        static extern IntPtr SetThreadDesktop(IntPtr a);

        [DllImport("user32.dll")]
        static extern IntPtr SetProcessWindowStation(IntPtr a);
        [DllImport("user32.dll")]
        static extern IntPtr CloseWindowStation(IntPtr a);
           
    }

}

相關文章
相關標籤/搜索