Example #1
0
            /// <summary>
            /// 1. Check whether the driver is installed. Could be verified by running "sc query paldrv"
            /// 2. If installed check the state of the driver
            /// 3. Check if the driver is signed.
            /// </summary>
            void GetTextDriverInfo()
            {
                var driver = new AgentDriver();

                isTextTrappingDriverInstalled = driver.isInstalled;
                textTrappingDriverState       = driver.state;
                textTrappingDriverVersion     = driver.version;
                driverSignedInfo = driver.SignedInfo;
            }
Example #2
0
 /// <summary>
 /// 1. Check whether the driver is installed. Could be verified by running "sc query paldrv"
 /// 2. If installed check the state of the driver
 /// 3. Check if the driver is signed.
 /// </summary>
 void GetTextDriverInfo()
 {
     var driver = new AgentDriver();
     isTextTrappingDriverInstalled = driver.isInstalled;
     textTrappingDriverState = driver.state;
     textTrappingDriverVersion = driver.version;
     driverSignedInfo = driver.SignedInfo;
 }