Notes ACCESS 2022 | Browsers | Css | Htacess | Html | Html5 | Javascript | Microsoft Excel | Mysql | Mysql Dumps | Php | Vb.net | VBscript | Windows <=8 | Windows >=10 | WP | WP Plugin | WP Themes | _Misc Software | ABCDEFGHIJKLMNOPQRSTUVWXYZONPRTOFF codeid operationid title keywords application code languageid show_html show_iframe make_public viewed viewed_date language operation <- Look Inside DataConditions:Order: 1|2|3|4|5|6|7|8|50 Language Operation Title Keywords Application Code Languageid Show Html Show Iframe Make Public Viewed Viewed Date Javascript Object .select(); Clipboard Clipboard object of document.getElementById().select; Click on the button to copy the text from the text field. Try to paste the text (e.g. ctrl+v) afterwards in a different window, to see the effect. Copy text Dim dbs As Database Dim rs As Recordset Dim strSQL As String Set dbs = CurrentDb strSQL = 'your query here Set rs = dbs.OpenRecordset(strSQL) If Not (rs.EOF And rs.BOF) Then rs.MoveFirst 'get results using rs.Fields() Else 'Use results rs.MoveFirst Do While Not rs.EOF 'do something like rs("SomeFieldName") rs.MoveNext Loop DoCmd.SetWarnings False DoCmd.RunSQL "DELETE * FROM NameOfTable" DoCmd.SetWarnings True Sub InsertIntoX2() Dim dbs As Database ' Modify this line to include the path to Northwind ' on your computer. Set dbs = OpenDatabase("Northwind.mdb") ' Create a new record in the Employees table. The ' first name is Harry, the last name is Washington, ' and the job title is Trainee. dbs.Execute " INSERT INTO Employees " _ & "(FirstName,LastName, Title) VALUES " _ & "('Harry', 'Washington', 'Trainee');" dbs.Close End Sub Javascript 0 07/29/2022 Php Files Activate75.php activate security Developer //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($bypass!=true){ $appid="636390303046554890"; $user='softwax3_build99';$password='Web2Build.now';$database='softwax3_SoftwareUsers'; $connection = swd_mysql("localhost", $user,$password,$database); //if($appid>"636390303046554897"){$qu=new mysqli_swd();}else{$qu=new dbase();} $qu=new mysqli_swd(); $sql="SELECT lock_device,security_level FROM users WHERE device_name='".$_COOKIE["machine_id"]."'"; $qu->dbsql($sql); if($qu->num==0 || $qu->data1[0]==1) { echo "You are locked out";exit; } $_SESSION['LEVEL']=$qu->data1[1]; $LEVEL=$qu->data1[1]; define('SWD_AUTHENTICATE', true);define('SWD_KEY', 'JesusIsLord'); } if($bypass==true){define('SWD_AUTHENTICATE', true);} ?> Php 0 05/11/2025 Mysql Date ADDDATE - Mysql add date mysql Update adds Set durationdays=ADDDATE(now(),INTERVAL 30 DAY) WHERE addid=15 Date and Time Functions This section describes the functions that can be used to manipulate temporal values. See section 6.2.2 Date and Time Types for a description of the range of values each date and time type has and the valid formats in which values may be specified. Here is an example that uses date functions. The following query selects all records with a date_col value from within the last 30 days: mysql> SELECT something FROM tbl_name WHERE TO_DAYS(NOW()) - TO_DAYS(date_col) <= 30; eqMaintenance.intervalof-(TO_DAYS(NOW())- TO_DAYS(equipment.date_done) (Note that the query will also select records with dates that lie in the future.) Functions that expect date values usually will accept datetime values and ignore the time part. Functions that expect time values usually will accept datetime values and ignore the date part. Functions that return the current date or time each are evaluated only once per query at the start of query execution. This means that multiple references to a function such as NOW() within a single query will always produce the same result. This principle also applies to CURDATE(), CURTIME(), UTC_DATE(), UTC_TIME(), UTC_TIMESTAMP(), and any of their synonyms. The return value ranges in the following function descriptions apply for complete dates. If a date is a ``zero'' value or an incomplete date such as '2001-11-00', functions that extract a part of a date may return 0. For example, DAYOFMONTH('2001-11-00') returns 0. ADDDATE(date,INTERVAL expr type) ADDDATE(expr,days) When invoked with the INTERVAL form of the second argument, ADDDATE() is a synonym for DATE_ADD(). The related function SUBDATE() is a synonym for DATE_SUB(). mysql> SELECT DATE_ADD('1998-01-02', INTERVAL 31 DAY); -> '1998-02-02' mysql> SELECT ADDDATE('1998-01-02', INTERVAL 31 DAY); -> '1998-02-02' As of MySQL 4.1.1, the second syntax is allowed, where expr is a date or datetime expression and days is the number of days to be added to expr. mysql> SELECT ADDDATE('1998-01-02', 31); -> '1998-02-02' ADDTIME(expr,expr2) ADDTIME() adds expr2 to expr and returns the result. expr is a date or datetime expression, and expr2 is a time expression. mysql> SELECT ADDTIME("1997-12-31 23:59:59.999999", "1 1:1:1.000002"); -> '1998-01-02 01:01:01.000001' mysql> SELECT ADDTIME("01:00:00.999999", "02:00:00.999998"); -> '03:00:01.999997' ADDTIME() was added in MySQL 4.1.1. CURDATE() Returns the current date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in a string or numeric context: mysql> SELECT CURDATE(); -> '1997-12-15' mysql> SELECT CURDATE() + 0; -> 19971215 CURRENT_DATE CURRENT_DATE() CURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE(). CURTIME() Returns the current time as a value in 'HH:MM:SS' or HHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT CURTIME(); -> '23:50:26' mysql> SELECT CURTIME() + 0; -> 235026 CURRENT_TIME CURRENT_TIME() CURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME(). CURRENT_TIMESTAMP CURRENT_TIMESTAMP() CURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW(). DATE(expr) Extracts the date part of the date or datetime expression expr. mysql> SELECT DATE('2003-12-31 01:02:03'); -> '2003-12-31' DATE() is available as of MySQL 4.1.1. DATEDIFF(expr,expr2) DATEDIFF() returns the number of days between the start date expr and the end date expr2. expr and expr2 are date or date-and-time expressions. Only the date parts of the values are used in the calculation. mysql> SELECT DATEDIFF('1997-12-31 23:59:59','1997-12-30'); -> 1 mysql> SELECT DATEDIFF('1997-11-31 23:59:59','1997-12-31'); -> -30 DATEDIFF() was added in MySQL 4.1.1. DATE_ADD(date,INTERVAL expr type) DATE_SUB(date,INTERVAL expr type) These functions perform date arithmetic. As of MySQL Version 3.23, INTERVAL expr type is allowed on either side of the + operator if the expression on the other side is a date or datetime value. For the - operator, INTERVAL expr type is allowed only on the right side, because it makes no sense to subtract a date or datetime value from an interval. (See examples below.) date is a DATETIME or DATE value specifying the starting date. expr is an expression specifying the interval value to be added or subtracted from the starting date. expr is a string; it may start with a `-' for negative intervals. type is a keyword indicating how the expression should be interpreted. The following table shows how the type and expr arguments are related: type Value Expected expr Format SECOND SECONDS MINUTE MINUTES HOUR HOURS DAY DAYS MONTH MONTHS YEAR YEARS MINUTE_SECOND 'MINUTES:SECONDS' HOUR_MINUTE 'HOURS:MINUTES' DAY_HOUR 'DAYS HOURS' YEAR_MONTH 'YEARS-MONTHS' HOUR_SECOND 'HOURS:MINUTES:SECONDS' DAY_MINUTE 'DAYS HOURS:MINUTES' DAY_SECOND 'DAYS HOURS:MINUTES:SECONDS' DAY_MICROSECOND 'DAYS.MICROSECONDS' HOUR_MICROSECOND 'HOURS.MICROSECONDS' MINUTE_MICROSECOND 'MINUTES.MICROSECONDS' SECOND_MICROSECOND 'SECONDS.MICROSECONDS' MICROSECOND 'MICROSECONDS' The type values DAY_MICROSECOND, HOUR_MICROSECOND, MINUTE_MICROSECOND, SECOND_MICROSECOND, and MICROSECOND are allowed as of MySQL 4.1.1. MySQL allows any punctuation delimiter in the expr format. Those shown in the table are the suggested delimiters. If the date argument is a DATE value and your calculations involve only YEAR, MONTH, and DAY parts (that is, no time parts), the result is a DATE value. Otherwise, the result is a DATETIME value: mysql> SELECT '1997-12-31 23:59:59' + INTERVAL 1 SECOND; -> '1998-01-01 00:00:00' mysql> SELECT INTERVAL 1 DAY + '1997-12-31'; -> '1998-01-01' mysql> SELECT '1998-01-01' - INTERVAL 1 SECOND; -> '1997-12-31 23:59:59' mysql> SELECT DATE_ADD('1997-12-31 23:59:59', -> INTERVAL 1 SECOND); -> '1998-01-01 00:00:00' mysql> SELECT DATE_ADD('1997-12-31 23:59:59', -> INTERVAL 1 DAY); -> '1998-01-01 23:59:59' mysql> SELECT DATE_ADD('1997-12-31 23:59:59', -> INTERVAL '1:1' MINUTE_SECOND); -> '1998-01-01 00:01:00' mysql> SELECT DATE_SUB('1998-01-01 00:00:00', -> INTERVAL '1 1:1:1' DAY_SECOND); -> '1997-12-30 22:58:59' mysql> SELECT DATE_ADD('1998-01-01 00:00:00', -> INTERVAL '-1 10' DAY_HOUR); -> '1997-12-30 14:00:00' mysql> SELECT DATE_SUB('1998-01-02', INTERVAL 31 DAY); -> '1997-12-02' mysql> SELECT DATE_ADD('1992-12-31 23:59:59.000002', -> INTERVAL '1.999999' SECOND_MICROSECOND); -> '1993-01-01 00:00:01.000001' If you specify an interval value that is too short (does not include all the interval parts that would be expected from the type keyword), MySQL assumes you have left out the leftmost parts of the interval value. For example, if you specify a type of DAY_SECOND, the value of expr is expected to have days, hours, minutes, and seconds parts. If you specify a value like '1:10', MySQL assumes that the days and hours parts are missing and the value represents minutes and seconds. In other words, '1:10' DAY_SECOND is interpreted in such a way that it is equivalent to '1:10' MINUTE_SECOND. This is analogous to the way that MySQL interprets TIME values as representing elapsed time rather than as time of day. Note that if you add to or subtract from a date value something that contains a time part, the result is automatically converted to a datetime value: mysql> SELECT DATE_ADD('1999-01-01', INTERVAL 1 DAY); -> '1999-01-02' mysql> SELECT DATE_ADD('1999-01-01', INTERVAL 1 HOUR); -> '1999-01-01 01:00:00' If you use really malformed dates, the result is NULL. If you add MONTH, YEAR_MONTH, or YEAR and the resulting date has a day that is larger than the maximum day for the new month, the day is adjusted to the maximum days in the new month: mysql> SELECT DATE_ADD('1998-01-30', interval 1 month); -> '1998-02-28' Note from the preceding example that the keyword INTERVAL and the type specifier are not case-sensitive. DATE_FORMAT(date,format) Formats the date value according to the format string. The following specifiers may be used in the format string: Specifier Description %M Month name (January..December) %W Weekday name (Sunday..Saturday) %D Day of the month with English suffix (0th, 1st, 2nd, 3rd, etc.) %Y Year, numeric, 4 digits %y Year, numeric, 2 digits %X Year for the week where Sunday is the first day of the week, numeric, 4 digits; used with %V %x Year for the week, where Monday is the first day of the week, numeric, 4 digits; used with %v %a Abbreviated weekday name (Sun..Sat) %d Day of the month, numeric (00..31) %e Day of the month, numeric (0..31) %m Month, numeric (00..12) %c Month, numeric (0..12) %b Abbreviated month name (Jan..Dec) %j Day of year (001..366) %H Hour (00..23) %k Hour (0..23) %h Hour (01..12) %I Hour (01..12) %l Hour (1..12) %i Minutes, numeric (00..59) %r Time, 12-hour (hh:mm:ss followed by AM or PM) %T Time, 24-hour (hh:mm:ss) %S Seconds (00..59) %s Seconds (00..59) %f Microseconds (000000..999999) %p AM or PM %w Day of the week (0=Sunday..6=Saturday) %U Week (00..53), where Sunday is the first day of the week %u Week (00..53), where Monday is the first day of the week %V Week (01..53), where Sunday is the first day of the week; used with %X %v Week (01..53), where Monday is the first day of the week; used with %x %% A literal `%'. All other characters are just copied to the result without interpretation. The %f format specifier is available as of MySQL 4.1.1. As of MySQL Version 3.23, the `%' character is required before format specifier characters. In earlier versions of MySQL, `%' was optional. The reason the ranges for the month and day specifiers begin with zero is that MySQL allows incomplete dates such as '2004-00-00' to be stored as of MySQL 3.23. mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%W %M %Y'); -> 'Saturday October 1997' mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%H:%i:%s'); -> '22:23:00' mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%D %y %a %d %m %b %j'); -> '4th 97 Sat 04 10 Oct 277' mysql> SELECT DATE_FORMAT('1997-10-04 22:23:00', '%H %k %I %r %T %S %w'); -> '22 22 10 10:23:00 PM 22:23:00 00 6' mysql> SELECT DATE_FORMAT('1999-01-01', '%X %V'); -> '1998 52' DAY(date) DAY() is a synonym for DAYOFMONTH(). It is available as of MySQL 4.1.1. DAYNAME(date) Returns the name of the weekday for date: mysql> SELECT DAYNAME('1998-02-05'); -> 'Thursday' DAYOFMONTH(date) Returns the day of the month for date, in the range 1 to 31: mysql> SELECT DAYOFMONTH('1998-02-03'); -> 3 DAYOFWEEK(date) Returns the weekday index for date (1 = Sunday, 2 = Monday, ... 7 = Saturday). These index values correspond to the ODBC standard. mysql> SELECT DAYOFWEEK('1998-02-03'); -> 3 DAYOFYEAR(date) Returns the day of the year for date, in the range 1 to 366: mysql> SELECT DAYOFYEAR('1998-02-03'); -> 34 EXTRACT(type FROM date) The EXTRACT() function uses the same kinds of interval type specifiers as DATE_ADD() or DATE_SUB(), but extracts parts from the date rather than performing date arithmetic. mysql> SELECT EXTRACT(YEAR FROM "1999-07-02"); -> 1999 mysql> SELECT EXTRACT(YEAR_MONTH FROM "1999-07-02 01:02:03"); -> 199907 mysql> SELECT EXTRACT(DAY_MINUTE FROM "1999-07-02 01:02:03"); -> 20102 mysql> SELECT EXTRACT(MICROSECOND FROM "2003-01-02 10:30:00.00123"); -> 123 FROM_DAYS(N) Given a daynumber N, returns a DATE value: mysql> SELECT FROM_DAYS(729669); -> '1997-10-07' FROM_DAYS() is not intended for use with values that precede the advent of the Gregorian calendar (1582), because it doesn't take into account the days that were lost when the calendar was changed. FROM_UNIXTIME(unix_timestamp) FROM_UNIXTIME(unix_timestamp,format) Returns a representation of the unix_timestamp argument as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT FROM_UNIXTIME(875996580); -> '1997-10-04 22:23:00' mysql> SELECT FROM_UNIXTIME(875996580) + 0; -> 19971004222300 If format is given, the result is formatted according to the format string. format may contain the same specifiers as those listed in the entry for the DATE_FORMAT() function: mysql> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(), -> '%Y %D %M %h:%i:%s %x'); -> '2003 6th August 06:22:58 2003' GET_FORMAT(DATE | TIME | TIMESTAMP, 'EUR' | 'USA' | 'JIS' | 'ISO' | 'INTERNAL') Returns a format string. This function is useful in combination with the DATE_FORMAT() and the STR_TO_DATE() functions, and when setting the server variables DATE_FORMAT, TIME_FORMAT, and DATETIME_FORMAT. The three possible values for the first argument and the five possible values for the second argument result in 15 possible format strings (for the specifiers used, see the table in the DATE_FORMAT() function description): Function call Result GET_FORMAT(DATE,'USA') '%m.%d.%Y' GET_FORMAT(DATE,'JIS') '%Y-%m-%d' GET_FORMAT(DATE,'ISO') '%Y-%m-%d' GET_FORMAT(DATE,'EUR') '%d.%m.%Y' GET_FORMAT(DATE,'INTERNAL') '%Y%m%d' GET_FORMAT(TIMESTAMP,'USA') '%Y-%m-%d-%H.%i.%s' GET_FORMAT(TIMESTAMP,'JIS') '%Y-%m-%d %H:%i:%s' GET_FORMAT(TIMESTAMP,'ISO') '%Y-%m-%d %H:%i:%s' GET_FORMAT(TIMESTAMP,'EUR') '%Y-%m-%d-%H.%i.%s' GET_FORMAT(TIMESTAMP,'INTERNAL') '%Y%m%d%H%i%s' GET_FORMAT(TIME,'USA') '%h:%i:%s %p' GET_FORMAT(TIME,'JIS') '%H:%i:%s' GET_FORMAT(TIME,'ISO') '%H:%i:%s' GET_FORMAT(TIME,'EUR') '%H.%i.%S' GET_FORMAT(TIME,'INTERNAL') '%H%i%s' ISO format is ISO 9075, not ISO 8601. mysql> SELECT DATE_FORMAT('2003-10-03', GET_FORMAT(DATE, 'EUR') -> '03.10.2003' mysql> SELECT STR_TO_DATE('10.31.2003', GET_FORMAT(DATE, 'USA')) -> 2003-10-31 mysql> SET DATE_FORMAT=GET_FORMAT(DATE, 'USA'); SELECT '2003-10-31'; -> 10-31-2003 GET_FORMAT() is available as of MySQL 4.1.1. See See section 5.5.6 SET Syntax. HOUR(time) Returns the hour for time. The range of the return value will be 0 to 23 for time-of-day values: mysql> SELECT HOUR('10:05:03'); -> 10 However, the range of TIME values actually is much larger, so HOUR can return values greater than 23: mysql> SELECT HOUR('272:59:59'); -> 272 LAST_DAY(date) Takes a date or datetime value and returns the corresponding value for the last day of the month. Returns NULL if the argument is invalid. mysql> SELECT LAST_DAY('2003-02-05'), LAST_DAY('2004-02-05'); -> '2003-02-28', '2004-02-29' mysql> SELECT LAST_DAY('2004-01-01 01:01:01'); -> '2004-01-31' mysql> SELECT LAST_DAY('2003-03-32'); -> NULL LAST_DAY() is available as of MySQL 4.1.1. LOCALTIME LOCALTIME() LOCALTIME and LOCALTIME() are synonyms for NOW(). LOCALTIMESTAMP LOCALTIMESTAMP() LOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW(). MAKEDATE(year,dayofyear) Returns a date, given year and day-of-year values. dayofyear must be greater than 0 or the result will NULL. mysql> SELECT MAKEDATE(2001,31), MAKEDATE(2001,32); -> '2001-01-31', '2001-02-01' mysql> SELECT MAKEDATE(2001,365), MAKEDATE(2004,365); -> '2001-12-31', '2004-12-30' mysql> SELECT MAKEDATE(2001,0); -> NULL MAKEDATE() is available as of MySQL 4.1.1. MAKETIME(hour,minute,second) Returns a time value calculated from the hour, minute, and second arguments. mysql> SELECT MAKETIME(12,15,30); -> '12:15:30' MAKETIME() is available as of MySQL 4.1.1. MICROSECOND(expr) Returns the microseconds from the time or datetime expression expr as a number in the range from 0 to 999999. mysql> SELECT MICROSECOND('12:00:00.123456'); -> 123456 mysql> SELECT MICROSECOND('1997-12-31 23:59:59.000010'); -> 10 MICROSECOND() is available as of MySQL 4.1.1. MINUTE(time) Returns the minute for time, in the range 0 to 59: mysql> SELECT MINUTE('98-02-03 10:05:03'); -> 5 MONTH(date) Returns the month for date, in the range 1 to 12: mysql> SELECT MONTH('1998-02-03'); -> 2 MONTHNAME(date) Returns the name of the month for date: mysql> SELECT MONTHNAME('1998-02-05'); -> 'February' NOW() Returns the current date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT NOW(); -> '1997-12-15 23:50:26' mysql> SELECT NOW() + 0; -> 19971215235026 PERIOD_ADD(P,N) Adds N months to period P (in the format YYMM or YYYYMM). Returns a value in the format YYYYMM. Note that the period argument P is not a date value: mysql> SELECT PERIOD_ADD(9801,2); -> 199803 PERIOD_DIFF(P1,P2) Returns the number of months between periods P1 and P2. P1 and P2 should be in the format YYMM or YYYYMM. Note that the period arguments P1 and P2 are not date values: mysql> SELECT PERIOD_DIFF(9802,199703); -> 11 QUARTER(date) Returns the quarter of the year for date, in the range 1 to 4: mysql> SELECT QUARTER('98-04-01'); -> 2 SECOND(time) Returns the second for time, in the range 0 to 59: mysql> SELECT SECOND('10:05:03'); -> 3 SEC_TO_TIME(seconds) Returns the seconds argument, converted to hours, minutes, and seconds, as a value in 'HH:MM:SS' or HHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT SEC_TO_TIME(2378); -> '00:39:38' mysql> SELECT SEC_TO_TIME(2378) + 0; -> 3938 STR_TO_DATE(str,format) This is the reverse function of the DATE_FORMAT() function. It takes a string str, and a format string format, and returns a DATETIME value. The date, time, or datetime values contained in str should be given in the format indicated by format. For the specifiers that can be used in format, see the table in the DATE_FORMAT() function description. All other characters are just taken verbatim, thus not being interpreted. If str contains an illegal date, time, or datetime value, STR_TO_DATE() returns NULL. mysql> SELECT STR_TO_DATE('03.10.2003 09.20', '%d.%m.%Y %H.%i') -> 2003-10-03 09:20:00 mysql> SELECT STR_TO_DATE('10rap', '%crap') -> 0000-10-00 00:00:00 mysql> SELECT STR_TO_DATE('2003-15-10 00:00:00', '%Y-%m-%d %H:%i:%s') -> NULL STR_TO_DATE() is available as of MySQL 4.1.1. SUBDATE(date,INTERVAL expr type) SUBDATE(expr,days) When invoked with the INTERVAL form of the second argument, SUBDATE() is a synonym for DATE_SUB(). mysql> SELECT DATE_SUB('1998-01-02', INTERVAL 31 DAY); -> '1997-12-02' mysql> SELECT SUBDATE('1998-01-02', INTERVAL 31 DAY); -> '1997-12-02' As of MySQL 4.1.1, the second syntax is allowed, where expr is a date or datetime expression and days is the number of days to be subtracted from expr. mysql> SELECT SUBDATE('1998-01-02 12:00:00', 31); -> '1997-12-02 12:00:00' SUBTIME(expr,expr2) SUBTIME() subtracts expr2 from expr and returns the result. expr is a date or datetime expression, and expr2 is a time expression. mysql> SELECT SUBTIME("1997-12-31 23:59:59.999999", "1 1:1:1.000002"); -> '1997-12-30 22:58:58.999997' mysql> SELECT SUBTIME("01:00:00.999999", "02:00:00.999998"); -> '-00:59:59.999999' SUBTIME() was added in MySQL 4.1.1. SYSDATE() SYSDATE() is a synonym for NOW(). TIME(expr) Extracts the time part of the time or datetime expression expr. mysql> SELECT TIME('2003-12-31 01:02:03'); -> '01:02:03' mysql> SELECT TIME('2003-12-31 01:02:03.000123'); -> '01:02:03.000123' TIME() is available as of MySQL 4.1.1. TIMEDIFF(expr,expr2) TIMEDIFF() returns the time between the start time expr and the end time expr2. expr and expr2 are time or date-and-time expressions, but both must be of the same type. mysql> SELECT TIMEDIFF('2000:01:01 00:00:00', '2000:01:01 00:00:00.000001'); -> '-00:00:00.000001' mysql> SELECT TIMEDIFF('1997-12-31 23:59:59.000001','1997-12-30 01:01:01.000002'); -> '46:58:57.999999' TIMEDIFF() was added in MySQL 4.1.1. TIMESTAMP(expr) TIMESTAMP(expr,expr2) With one argument, returns the date or datetime expression expr as a datetime value. With two arguments, adds the time expression expr2 to the date or datetime expression expr and returns a datetime value. mysql> SELECT TIMESTAMP('2003-12-31'); -> '2003-12-31 00:00:00' mysql> SELECT TIMESTAMP('2003-12-31 12:00:00','12:00:00'); -> '2004-01-01 00:00:00' TIMESTAMP() is available as of MySQL 4.1.1. TIME_FORMAT(time,format) This is used like the DATE_FORMAT() function, but the format string may contain only those format specifiers that handle hours, minutes, and seconds. Other specifiers produce a NULL value or 0. If the time value contains an hour part that is greater than 23, the %H and %k hour format specifiers produce a value larger than the usual range of 0..23. The other hour format specifiers produce the hour value modulo 12: mysql> SELECT TIME_FORMAT('100:00:00', '%H %k %h %I %l'); -> '100 100 04 04 4' TIME_TO_SEC(time) Returns the time argument, converted to seconds: mysql> SELECT TIME_TO_SEC('22:23:00'); -> 80580 mysql> SELECT TIME_TO_SEC('00:39:38'); -> 2378 TO_DAYS(date) Given a date date, returns a daynumber (the number of days since year 0): mysql> SELECT TO_DAYS(950501); -> 728779 mysql> SELECT TO_DAYS('1997-10-07'); -> 729669 TO_DAYS() is not intended for use with values that precede the advent of the Gregorian calendar (1582), because it doesn't take into account the days that were lost when the calendar was changed. UNIX_TIMESTAMP() UNIX_TIMESTAMP(date) If called with no argument, returns a Unix timestamp (seconds since '1970-01-01 00:00:00' GMT) as an unsigned integer. If UNIX_TIMESTAMP() is called with a date argument, it returns the value of the argument as seconds since '1970-01-01 00:00:00' GMT. date may be a DATE string, a DATETIME string, a TIMESTAMP, or a number in the format YYMMDD or YYYYMMDD in local time: mysql> SELECT UNIX_TIMESTAMP(); -> 882226357 mysql> SELECT UNIX_TIMESTAMP('1997-10-04 22:23:00'); -> 875996580 When UNIX_TIMESTAMP is used on a TIMESTAMP column, the function returns the internal timestamp value directly, with no implicit ``string-to-Unix-timestamp'' conversion. If you pass an out-of-range date to UNIX_TIMESTAMP() it returns 0, but please note that only basic checking is performed (year 1970-2037, month 01-12, day 01-31). If you want to subtract UNIX_TIMESTAMP() columns, you may want to cast the result to signed integers. See section 6.3.5 Cast Functions. UTC_DATE UTC_DATE() Returns the current UTC date as a value in 'YYYY-MM-DD' or YYYYMMDD format, depending on whether the function is used in a string or numeric context: mysql> SELECT UTC_DATE(), UTC_DATE() + 0; -> '2003-08-14', 20030814 UTC_DATE() is available as of MySQL 4.1.1. UTC_TIME UTC_TIME() Returns the current UTC time as a value in 'HH:MM:SS' or HHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT UTC_TIME(), UTC_TIME() + 0; -> '18:07:53', 180753 UTC_TIME() is available as of MySQL 4.1.1. UTC_TIMESTAMP UTC_TIMESTAMP() Returns the current UTC date and time as a value in 'YYYY-MM-DD HH:MM:SS' or YYYYMMDDHHMMSS format, depending on whether the function is used in a string or numeric context: mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0; -> '2003-08-14 18:08:04', 20030814180804 UTC_TIMESTAMP() is available as of MySQL 4.1.1. WEEK(date [,mode]) The function returns the week number for date. The two-argument form of WEEK() allows you to specify whether the week starts on Sunday or Monday and whether the return value should be in the range 0-53 or 1-52. When mode argument is omitted the value of a default_week_format server variable (or 0 in MySQL 4.0 or earlier) is assumed. See section 5.5.6 SET Syntax. The following table demonstrates how the mode argument works: Value Meaning 0 Week starts on Sunday; return value range is 0 to 53; week 1 is the first week that starts in this year 1 Week starts on Monday; return value range is 0 to 53; week 1 is the first week that has more than 3 days in this year 2 Week starts on Sunday; return value range is 1 to 53; week 1 is the first week that starts in this year 3 Week starts on Monday; return value range is 1 to 53; week 1 is the first week that has more than 3 days in this year 4 Week starts on Sunday; return value range is 0 to 53; week 1 is the first week that has more than 3 days in this year 5 Week starts on Monday; return value range is 0 to 53; week 1 is the first week that starts in this year 6 Week starts on Sunday; return value range is 1 to 53; week 1 is the first week that has more than 3 days in this year 7 Week starts on Monday; return value range is 1 to 53; week 1 is the first week that starts in this year The mode value of 3 can be used as of MySQL 4.0.5. The mode value of 4 and above can be used as of MySQL 4.0.17. mysql> SELECT WEEK('1998-02-20'); -> 7 mysql> SELECT WEEK('1998-02-20',0); -> 7 mysql> SELECT WEEK('1998-02-20',1); -> 8 mysql> SELECT WEEK('1998-12-31',1); -> 53 Note: In Version 4.0, WEEK(date,0) was changed to match the calendar in the USA. Before that, WEEK() was calculated incorrectly for dates in USA. (In effect, WEEK(date) and WEEK(date,0) was incorrect for all cases.) Note that if a date falls in the last week of the previous year, MySQL will return 0 if you don't use 2, 3, 6, or 7 as the optional mode argument: mysql> SELECT YEAR('2000-01-01'), WEEK('2000-01-01',0); -> 2000, 0 One might argue that MySQL should return 52 for the WEEK() function, because the given date actually occurs in the 52nd week of 1999. We decided to return 0 instead as we want the function to return ``the week number in the given year.'' This makes the usage of the WEEK() function reliable when combined with other functions that extract a date part from a date. If you would prefer the result to be evaluated with respect to the year that contains the first day of the week for the given date, you should use 2, 3, 6, or 7 as the optional mode argument. mysql> SELECT WEEK('2000-01-01',2); -> 52 Alternatively, use the YEARWEEK() function: mysql> SELECT YEARWEEK('2000-01-01'); -> 199952 mysql> SELECT MID(YEARWEEK('2000-01-01'),5,2); -> '52' WEEKDAY(date) Returns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 = Sunday): mysql> SELECT WEEKDAY('1998-02-03 22:23:00'); -> 1 mysql> SELECT WEEKDAY('1997-11-05'); -> 2 WEEKOFYEAR(date) Returns the calendar week of the date as a number in the range from 1 to 53. mysql> SELECT WEEKOFYEAR('1998-02-20'); -> 8 WEEKOFYEAR() is available as of MySQL 4.1.1. YEAR(date) Returns the year for date, in the range 1000 to 9999: mysql> SELECT YEAR('98-02-03'); -> 1998 YEARWEEK(date) YEARWEEK(date,start) Returns year and week for a date. The start argument works exactly like the start argument to WEEK(). Note that the year in the result may be different from the year in the date argument for the first and the last week of the year: mysql> SELECT YEARWEEK('1987-01-01'); -> 198653 Note that the week number is different from what the WEEK() function would return (0) for optional arguments 0 or 1, as WEEK() then returns the week in the context of the given year. Mysql 3 02/15/2024 _Misc Software Archive Backup Config Files config Config Files code //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_codesaver'; $LEVEL=3;$_SESSION['LEVEL']=3; } $debug=false;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="../lightbox"; $sessionListSave=''; define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); //Save this session when using ?RESET=1. Use commas if more than one accounting business //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_accounting';$_SESSION['LEVEL']=2; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Accounting Personal //$y=date('Y');$m=date('m');$filter="Y".$y."M".$m; //if($_GET["$filter"]==1){$_SESSION['LEVEL']=1;$LEVE=1;}else{require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");} if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accountingp'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accountingP'; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave="date_of1SAVE,date_of2SAVE"; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); accounting Sons //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_winterbros';$_SESSION['LEVEL']=2; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Email Accounts //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_emailAccts';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebdesign.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'JesusIsLord'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Windsor hair Shoppe //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_hairShoppe';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Invoices //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_invoices';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Iq of Post include("settings.php"); $appid="mysqli"; //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_Tips';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); Crop Map //require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;} else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_cropMap';$_SESSION['LEVEL']=3; } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com"; $sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one. define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true); setcookie("humans_21909", "", time() - 3600, "/"); _Misc Software 0 12/14/2025 Browsers Customizing Change The Default Download Location In Firefox download firefox Firefox to change the default download location in Firefox, open the menu (three horizontal lines) in the top-right corner, select Settings, and scroll down to the Downloads section under the General panel. Click "Browse" next to "Save files to" to choose a new folder, or select "Always ask me where to save files". Steps to Change Download Location: Access Settings: Click the menu button (equiv ) in the top right and select Settings.Locate Downloads: Scroll down to the Files and Applications section and find the Downloads option.Change Folder: Click Browse (or "Choose") to select a new folder for downloads.Alternative Option: Select "Always ask me where to save files" to choose a destination every time a download starts. Important Notes: You can set Firefox to save to custom locations, including desktop or specific folders.If you select "Always ask me where to save files," you will be prompted for a location with each download.Changes are saved automatically. Browsers 0 02/08/2026 Windows >=10 Query Cmd Ftype|clip cmd ftype Access.ACCDAExtension.16=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP "%1" Access.ACCDCFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.ACCDEFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.ACCDRFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /RUNTIME "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.ACCDTFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.ADEFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.Application.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.BlankDatabaseTemplate.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /NEWDB "%1" Access.BlankProjectTemplate.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /NEWDB "%1" Access.Extension.16=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP "%1" Access.MDBFile="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.MDEFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.Project.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.ShortCut.DataAccessPage.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenDataAccessPage "%1"] Access.ShortCut.Diagram.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenDiagram "%1"] Access.ShortCut.Form.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenForm "%1"] Access.Shortcut.Function.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /SHELLSYSTEM [OpenFunction "%1"] Access.ShortCut.Macro.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [ShellOpenMacro "%1"] Access.ShortCut.Module.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenModule "%1"] Access.ShortCut.Query.1=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP /SHELLSYSTEM [OpenQuery "%1"] Access.ShortCut.Report.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenReport "%1", 2] Access.ShortCut.StoredProcedure.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenStoredProcedure "%1"] Access.ShortCut.Table.1=C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE /NOSTARTUP /SHELLSYSTEM [OpenTable "%1"] Access.ShortCut.View.1="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP /SHELLSYSTEM [OpenView "%1"] Access.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" Access.WebApplicationReference.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" %2 %3 %4 %5 %6 %7 %8 %9 Access.WizardDataFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.WizardUserDataFile.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" Access.Workgroup.16="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" /NOSTARTUP "%1" accesshtmlfile="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" accessthmltemplate="C:Program FilesMicrosoft OfficeRootOffice16MSACCESS.EXE" acrobat="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" Acrobat.aaui="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.acrobatsecuritysettings.1="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.Document.DC="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.FDFDoc="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.pdfxml.1="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.RMFFile="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.XDPDoc="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Acrobat.XFDFDoc="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" acrobat2018="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" acrobat2019="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" acrobat2021.oauth2="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" acrobat2024="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" /u "%1" AcrobatBPDXFileType="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" AcrobatPDXFileType="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" AcroExch.Document="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" AcroExch.Document.7="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" Application.Manifest="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32dfshim.dll",ShOpenVerbApplication %1 Application.Reference="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32dfshim.dll",ShOpenVerbShortcut %1|%2 ArchiveFolder=%SystemRoot%Explorer.exe /idlist,%I,%L batfile="%1" %* BlackmagicRaw.Clip="C:Program Files (x86)Blackmagic DesignBlackmagic RAWBlackmagic RAW PlayerBlackmagicRAWPlayer.exe" "%1" Blend.sln.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEblend.exe" "%1" Blend.slnf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEblend.exe" "%1" bootstrap.vsto.1=rundll32.exe "c:Program Files (x86)Common FilesMicrosoft SharedVSTOvstoee.dll",InstallVstoSolution %1 brmFile="PrintBrmUI.exe" /import /file:"%1" CABFolder=%SystemRoot%Explorer.exe /idlist,%I,%L CATFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenCAT %1 CERFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenCER %1 CertificateStoreFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenSTR %1 certificate_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /certificate "%1" chm.file="%SystemRoot%hh.exe" %1 cmdfile="%1" %* comfile="%1" %* CompressedFolder=%SystemRoot%Explorer.exe /idlist,%I,%L contact_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /contact "%1" CRLFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenCRL %1 desktopthemepackfile=%SystemRoot%system32rundll32.exe %SystemRoot%system32themecpl.dll,OpenThemeAction %1 Diagnostic.Cabinet=%SystemRoot%system32msdt.exe /cab "%1" Diagnostic.Config=%SystemRoot%system32msdt.exe /path "%1" Diagnostic.Document=%SystemRoot%system32msdt.exe /path "%1" Diagnostic.Perfmon.Config=%SystemRoot%system32perfmon /sys /load "%1" Diagnostic.Perfmon.Document=%SystemRoot%system32perfmon /sys /open "%1" Diagnostic.Resmon.Config=%SystemRoot%system32perfmon /res /load "%1" DLNA-PLAYSINGLE="%ProgramFiles(x86)%Windows Media Playerwmplayer.exe" "%L" dqyfile=C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE "%1" dropbox-client="C:Program Files (x86)DropboxClientDropbox.exe" "custom-url+%1" Dropbox.Backup="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Binder="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.ExternalBackupLocation="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Paper="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.PaperT="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Passwords="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* Dropbox.Shortcut="C:Program Files (x86)DropboxClientDropbox.exe" /openext "%1" %* evtfile=%SystemRoot%system32eventvwr.exe /l:"%1" evtxfile=%SystemRoot%system32eventvwr.exe /l:"%1" Excel.Addin="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.AddInMacroEnabled="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Backup="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Chart=C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE "%1" Excel.Chart.8="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.CSV="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Macrosheet="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.OpenDocumentSpreadsheet.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Sheet.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Sheet.8="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.SheetBinaryMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.SheetMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.SLK="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Template="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.Template.8="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.TemplateMacroEnabled="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" Excel.Workspace="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" "%1" Excel.XLL="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" -xlls "%1" Excelhtmlfile="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" Excelhtmltemplate="C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE" exefile="%1" %* Explorer.AssocActionId.BurnSelection=%SystemRoot%explorer.exe Explorer.AssocActionId.EraseDisc=%SystemRoot%explorer.exe Explorer.AssocActionId.ZipSelection=%SystemRoot%explorer.exe Explorer.AssocProtocol.search-ms=%SystemRoot%Explorer.exe /separate,/idlist,%I,%L Expression.Blend.csproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.jsproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.sln.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.vbproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" Expression.Blend.vcxproj.5.0="C:Program Files (x86)Microsoft Visual Studio 11.0BlendBlend.exe" "%1" FaxCover.Document=C:WindowsSystem32fxscover.exe "%1" feed="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" feeds="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" FirefoxHTML-308046B0AF4A39CB="C:Program FilesMozilla Firefoxfirefox.exe" -osint -url "%1" FirefoxPDF-308046B0AF4A39CB="C:Program FilesMozilla Firefoxfirefox.exe" -osint -url "%1" FirefoxURL-308046B0AF4A39CB="C:Program FilesMozilla Firefoxfirefox.exe" -osint -url "%1" Folder=%SystemRoot%Explorer.exe FormsCentral.fcdt="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" "%1" GoogleEarth.kmlfile="C:Program FilesGoogleGoogle Earth Proclientgoogleearth.exe" "%1" GoogleEarth.kmzfile="C:Program FilesGoogleGoogle Earth Proclientgoogleearth.exe" "%1" group_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /Group "%1" hlpfile=%SystemRoot%winhlp32.exe %1 htafile=C:WindowsSysWOW64mshta.exe "%1" {1E460BD7-F1C3-4B2E-88BF-4E770A288AF5}%U{1E460BD7-F1C3-4B2E-88BF-4E770A288AF5} %* htmlfile="C:Program FilesInternet Exploreriexplore.exe" %1 http="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" "%1" https="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" "%1" IE.AssocFile.HTM="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.MHT="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.PARTIAL="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.SVG="C:Program FilesInternet Exploreriexplore.exe" %1 IE.AssocFile.URL="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32ieframe.dll",OpenURL %l IE.AssocFile.WEBSITE="C:Program FilesInternet Exploreriexplore.exe" -w "%l" %* IE.AssocFile.XHT="C:Program FilesInternet Exploreriexplore.exe" %1 IE.FTP="C:Program FilesInternet Exploreriexplore.exe" %1 IE.HTTP="C:Program FilesInternet Exploreriexplore.exe" %1 IE.HTTPS="C:Program FilesInternet Exploreriexplore.exe" %1 IMEDictionaryCompiler="%WINDIR%system32IMESHAREDimewdbld.exe" "%1" %* imesxfile="%WINDIR%system32IMESHAREDimesearch.exe" "%1" Intel.GraphicsControlPanel.igp.1=C:WINDOWSSystem32DriverStoreFileRepositorycui_dch.inf_amd64_03c6376789dc6e23GfxUIExN.exe %1 InternetShortcut="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32ieframe.dll",OpenURL %l iqyfile=C:Program FilesMicrosoft OfficeRootOffice16EXCEL.EXE "%1" IrfanView="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.aif="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ani="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.asf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.au="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.avi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.b3d="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.bmp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.clp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.cr2="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.cr3="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.crw="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.cur="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dcm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dcx="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dds="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.djvu="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.dxf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ecw="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.emf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.eps="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.exr="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.flv="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.g3="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.gif="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.hdp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.heic="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ico="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.iff="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jls="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jng="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jp2="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jpg="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jpm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.jxl="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mid="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mng="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mov="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mp3="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mpe="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.mpg="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ogg="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pbm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pcd="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pcx="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.pgm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.png="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ppm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.psd="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.psp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.qoi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ras="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.raw="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.rle="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.rmi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.sff="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.sgi="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.sid="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.swf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.tga="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.tif="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.ttf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wav="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wbmp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.webp="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wma="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wmf="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.wmv="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.xbm="C:Program FilesIrfanViewi_view64.exe" "%1" IrfanView.xpm="C:Program FilesIrfanViewi_view64.exe" "%1" JSEFile=C:WindowsSystem32WScript.exe "%1" %* JSFile=C:WindowsSystem32WScript.exe "%1" %* launchreader="C:Program FilesAdobeAcrobat DCAcrobatAcrobat.exe" LDAP="%ProgramFiles%Windows Mailwab.exe" "/ldap:%1" mailto="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" -c IPM.Note /mailto "%1" malwarebytes="C:Program FilesMalwarebytesAnti-Malwareassistant.exe" -uri "%1" mhtmlfile="C:Program FilesInternet Exploreriexplore.exe" %1 microsoft-edge="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" "%1" Microsoft.PowerShellConsole.1="C:WindowsSystem32WindowsPowerShellv1.0powershell.exe" -p "%1" Microsoft.ProvTool.Provisioning.1="%SystemRoot%System32provtool.exe" "%1" /source ShellOpen Microsoft.System.Update.1="%systemroot%system32wusa.exe" "%1" %* Microsoft.Website="C:Program FilesInternet Exploreriexplore.exe" -w "%l" %* Microsoft.Workfolders=C:WindowsSystem32control.exe /name Microsoft.WorkFolders MMS="%ProgramFiles(x86)%Windows Media Playerwmplayer.exe" "%L" ms-access=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-availablenetworks="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-controlcenter=%SystemRoot%system32ShellHost.exe url=%1 ms-excel=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-mmsys=%SystemRoot%System32rundll32.exe %SystemRoot%System32shell32.dll,Control_RunDLL %SystemRoot%System32mmsys.cpl %1 ms-msdt="%SystemRoot%system32msdt.exe" %1 ms-msime-imepad=C:WindowsSystem32IMESHAREDIMEPADSV.EXE %1 ms-msime-imjpdct=C:WindowsSystem32IMEIMEJPIMJPDCT.EXE %1 ms-office-ai=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-office-storage-host=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-olk-oauth="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /huboauth "%1" ms-olk-recall="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /select "%1" ms-personacard=%SystemRoot%system32ShellHost.exe UXFrameHost 0x0 Popup com.microsoft.windows.extensions.xaml.personacardmanager PersonaCardManager PersonaCardManagerControl SingleInstance true UseWinUI3 yes uri %1 Personality AnchoredPopup AnchorPointType TopLeft VerticalSizingStrategy ManuallySpecified HorizontalSizingStrategy ManuallySpecified Prelaunch true ms-powerpoint=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-publisher=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ms-rdx-document=%SystemRoot%system32rundll32.exe %SystemRoot%system32RDXService,OpenRDXDocument %1 ms-settings-connectabledevices="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-settings-displays-topology="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-shellhost=%SystemRoot%system32ShellHost.exe uri %1 ms-snaplaunch="%SystemRoot%SystemAppsMicrosoftWindows.Client.Core_cw5n1h2txyewysnaplauncherprotocol.exe" "%1" ms-virtualtouchpad="%SystemRoot%system32LaunchWinApp.exe" "%1" ms-woah=%SystemRoot%system32ShellHost.exe loadcomponent WindowsOobeAppHost --stringProperties Uri %1 WindowingBehavior DebugWindow ms-word=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" mscfile=%SystemRoot%system32mmc.exe "%1" %* MSDASC=Rundll32.exe "%CommonProgramFiles%SystemOLE DBoledb32.dll",OpenDSLFile %1 MSEdgeHTM="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" --single-argument %1 MSEdgeMHT="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" --single-argument %1 MSEdgePDF="C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe" --single-argument %1 Msi.Package="%SystemRoot%System32msiexec.exe" /i "%1" %* Msi.Patch="%SystemRoot%System32msiexec.exe" /p "%1" %* MSInfoFile=%SystemRoot%system32msinfo32.exe "%1" MSStorageSense=explorer ms-settings:storagesense msstylesfile=%SystemRoot%system32rundll32.exe %SystemRoot%system32shell32.dll,Control_RunDLL %SystemRoot%system32desk.cpl desk,@Appearance /Action:OpenMSTheme /file:"%1" nView.Profile=rundll32.exe "C:Program FilesNVIDIA CorporationnViewnView64.dll",nViewCmd loadprofile "%1" OfficeListShortcut="C:Program FilesMicrosoft OfficeRootOffice16MSPUB.EXE" %1 OfficeTheme.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" OneNote="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" onenote-cmd="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" onenote-cmd.URL.16="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Folder.1="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Notebook.1="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Package="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.ProtectedSection="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.Section.1="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" "%1" OneNote.TableOfContents="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /navigate "%1" OneNote.TableOfContents.12="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /navigate "%1" OneNote.URL.16="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" OneNoteDesktop="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" OneNoteDesktop.URL.16="C:Program FilesMicrosoft OfficeRootOffice16ONENOTE.EXE" /hyperlink "%1" opensearchdescription=%SystemRoot%explorer.exe OrgPlusWOPX.4="C:Program FilesMicrosoft OfficeRootOffice16ORGCHART.EXE" %1 Outlook.File.eml.15=C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE /eml "%1" Outlook.File.hol.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /hol "%1" Outlook.File.ics.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /ical "%1" Outlook.File.msg.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /f "%1" Outlook.File.oft.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /t "%1" Outlook.File.pst.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /pst "%1" Outlook.File.vcf.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /v "%1" Outlook.File.vcs.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /vcal "%1" Outlook.URL.feed.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" Outlook.URL.mailto.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" -c IPM.Note /mailto "%1" Outlook.URL.ms-olk-oauth.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /huboauth "%1" Outlook.URL.ms-olk-recall.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /select "%1" Outlook.URL.stssync.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" Outlook.URL.webcal.15="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" P7RFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenP7R %1 P7SFile=%SystemRoot%system32\rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %1 pbkfile=%SystemRoot%system32rasphone.exe -f "%1" PerfFile=%SystemRoot%system32mmc.exe %systemroot%system32perfmon.msc /F "%1" PFXFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenPFX %1 PhotoViewer.FileAssoc.Tiff=%SystemRoot%System32rundll32.exe "%ProgramFiles%Windows Photo ViewerPhotoViewer.dll", ImageView_Fullscreen %1 piffile="%1" %* PowerDirector21.0cdadjfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dlpfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dz3dtfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzafile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzblfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzepfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzlfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzmfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzpfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzsfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dztfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dztrfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0dzvcfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0pdlcpfile="C:Program Files (x86)CyberLinkShared filesEffectExtractor.exe" "%1" PowerDirector21.0pdlfile="C:Program FilesCyberLinkPowerDirector21PDR.exe" "%1" PowerDirector21.0pdmfile="C:Program FilesCyberLinkPowerDirector21PDR.exe" "%1" PowerDirector21.0pdsfile="C:Program FilesCyberLinkPowerDirector21PDR.exe" "%1" PowerPoint.Addin.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Addin.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" PowerPoint.OpenDocumentPresentation.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Show.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Show.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.ShowMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Slide.12=C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE "%1" /ou "%u" PowerPoint.Slide.8=C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE "%1" /ou "%u" PowerPoint.SlideMacroEnabled.12=C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE "%1" /ou "%u" PowerPoint.SlideShow.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" /s "%1" /ou "%u" PowerPoint.SlideShow.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" /s "%1" /ou "%u" PowerPoint.SlideShowMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" /s "%1" /ou "%u" PowerPoint.Template.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.Template.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.TemplateMacroEnabled.12="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" PowerPoint.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" PowerPoint.Wizard.8="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" "%1" /ou "%u" powerpointhtmlfile="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" powerpointhtmltemplate="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" powerpointxmlfile="C:Program FilesMicrosoft OfficeRootOffice16POWERPNT.EXE" prffile="%SystemRoot%System32rundll32.exe" "%SystemRoot%System32msrating.dll",ClickedOnPRF %1 Publisher.Document.16="C:Program FilesMicrosoft OfficeRootOffice16MSPUB.EXE" /ou "%u" "%1" Publisher.UriLink.16=C:Program FilesMicrosoft OfficeRootOffice16protocolhandler.exe "%1" ratfile="%SystemRoot%System32rundll32.exe" "%SystemRoot%System32msrating.dll",ClickedOnRAT %1 RDP.File="%systemroot%system32mstsc.exe" "%1" regedit=regedit.exe "%1" regfile=regedit.exe "%1" RemoteAssistance.1="%systemRoot%system32msra.exe" -openfile "%1" ResolveBinFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveDBKeyFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveDrpFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveTemplateBundle="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" ResolveTimelineFile="C:Program FilesBlackmagic DesignDaVinci ResolveResolve.exe" "%1" rlogin="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32url.dll",TelnetProtocolHandler %l SavedDsQuery=%SystemRoot%system32rundll32.exe %SystemRoot%system32dsquery.dll,OpenSavedDsQuery %1 scrfile="%1" /S scriptletfile="C:WindowsSystem32NOTEPAD.EXE" "%1" search=%SystemRoot%Explorer.exe /separate,/idlist,%I,%L search-ms=%SystemRoot%Explorer.exe /separate,/idlist,%I,%L SHCmdFile=%SystemRoot%explorer.exe SPCFile=%SystemRoot%system32rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %1 stssync="C:Program FilesMicrosoft OfficeRootOffice16OUTLOOK.EXE" /share "%1" svgfile="C:Program FilesInternet Exploreriexplore.exe" %1 telnet="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32url.dll",TelnetProtocolHandler %l tfs=C:Program FilesCommon FilesMicrosoft SharedTeam Foundation Server11.0TfsProtocolHandler.exe "%1" themefile=%SystemRoot%system32rundll32.exe %SystemRoot%system32themecpl.dll,OpenThemeAction %1 themepackfile=%SystemRoot%system32rundll32.exe %SystemRoot%system32themecpl.dll,OpenThemeAction %1 TIFImage.Document=%SystemRoot%System32rundll32.exe "%ProgramFiles%Windows Photo ViewerPhotoViewer.dll", ImageView_Fullscreen %1 tn3270="C:WindowsSystem32rundll32.exe" "C:WindowsSystem32url.dll",TelnetProtocolHandler %l Undecided=%SystemRoot%system32OpenWith.exe "%1" Unknown=%SystemRoot%system32OpenWith.exe "%1" VBEFile="%SystemRoot%System32WScript.exe" "%1" %* VBSFile="%SystemRoot%System32WScript.exe" "%1" %* vcard_wab_auto_file="%ProgramFiles%Windows Mailwab.exe" /vcard "%1" VCU.AutoPlay="C:Program Files (x86)AimersoftVideo Converter UltimateVideoConverterUltimate.exe" "3" "%1" VisioViewer.Viewer="%ProgramFiles% (x86)MicrosoftEdgeApplicationmsedge.exe" -ie-mode-file-url -- "%1" VisualStudio.accessor.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.accessor.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.AddIn.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.androidproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.appxmanifest.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.appxmanifest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.asa.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asa.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asax.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asax.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ascx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ascx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ashx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ashx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asm.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asm.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asmx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asmx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.asp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.asp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.aspx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.aspx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.AtlTraceTool.TraceFile="C:Program Files (x86)Microsoft Visual Studio 11.0Common7ToolsAtlTraceTool8.exe" /dde VisualStudio.bdcm.10.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.bdcr.10.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.bmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.bmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.c.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.c.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cd.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cjs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cod.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cod.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.coffee.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.coffee.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.config.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.config.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ContentInstaller.vscontent="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSContentInstaller.exe" "%1" VisualStudio.ContentInstaller.vsi="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSContentInstaller.exe" "%1" VisualStudio.coverage.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.coverage.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.coveragexml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cpp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cpp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cppm.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cs.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.csh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cshtml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cshtml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.csproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.csproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.css.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.css.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cts.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cur.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cur.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.cxx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.cxx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dds.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.def.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.def.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dgml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.dgsl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.diagsession.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.disco.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.disco.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.dmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.dsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.dsp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.dsw.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.dtd.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.dtd.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.edmx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fbx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fs.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fsi.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fsproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.fsscript.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fsx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.fx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.generictest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.gsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.gshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.h.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.h.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hdmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.hdmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.hh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hlsl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hlsl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hlsli.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hlsli.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hpp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hpp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hta.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hta.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.htm.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.htm.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.html.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.html.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.hxx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.hxx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.i.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.i.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ico.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ico.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.idl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.idl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.inc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.inc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.inl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.inl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ipp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.itrace.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.ixx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.js.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.js.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.json.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.jsonld.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.jsproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.jsproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.jsx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.Launcher.csproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.csproj.15.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.fsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.jsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.ls3proj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.lsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.shproj.15.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.sln="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.slnf="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.sqlproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.Launcher.vbproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vbproj.15.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcproj.1708aeb9="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcxitems.1708aeb9="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcxproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vcxproj.1708aeb9="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.Launcher.vsix="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.less.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.less.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ls3proj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.lsproj.11.0="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSLauncher.exe" "%1" VisualStudio.lst.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.lst.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mak.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mak.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.map.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.map.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.master.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.master.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mdmp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mdmp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.mdp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mfcribbon-ms.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.mfcribbon-ms.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mjs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mk.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.mk.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.mts.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.mtx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.natvis.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.odh.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.odh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.odl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.odl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.orderedtest.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.orderedtest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ORDesigner.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pkgdef.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pkgdef.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.pkgundef.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pkgundef.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.props.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.psess.8.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde "%1" VisualStudio.psh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.pshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.publishproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.publishproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.pubxml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.pubxml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.razor.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rc2.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rc2.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rct.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rct.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.rdlc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.res.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.res.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.resjson.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rgs.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.rgs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ruleset.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.ruleset.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.s.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.s.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.scss.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sdl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.sdl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.shproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sitemap.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.sitemap.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.skin.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.skin.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sln.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.sln.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.slnf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.snippet.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.snippet.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.sqlproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.sqlproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.srf.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.srf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.StvProj.10="C:Program Files (x86)Microsoft SDKsWindowsv10.0AbinNETFX 4.8 ToolsSvcTraceViewer.exe" "%1" VisualStudio.svc.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.svc.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.SvcLog.10="C:Program Files (x86)Microsoft SDKsWindowsv10.0AbinNETFX 4.8 ToolsSvcTraceViewer.exe" "%1" VisualStudio.targets.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.testrunconfig.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.testrunconfig.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.testsettings.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.testsettings.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.TextTemplating.11.0="%VsInstallDir%devenv.exe" /dde "%1" VisualStudio.tlh.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.tlh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.tli.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.tli.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.trx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.trx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.ts.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.tsx.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.tt.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.txt.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.uitest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vb.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vb.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vbhtml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vbhtml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vbproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vbproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcp.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcw.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcxitems.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcxproj.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.vcxproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vcxproj.filters.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vcxproj.filters.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsct.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsct.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsglog.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsh.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vshader.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsixlangpack.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsixlangpack.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsixmanifest.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsixmanifest.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsls.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /JoinWorkspace "%1" VisualStudio.vsmdi.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vsmdi.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vsp.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vsprops.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vsps.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.vstemplate.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.vstemplate.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.vstfs.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEVSWebLauncher.exe" /openTfsLinkAsIs "%1" VisualStudio.vsweb.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEVSWebLauncher.exe" /openuri "%1" VisualStudio.wiq.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDE\devenv.exe" /dde "%1" VisualStudio.wsdl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.wsdl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.wsf.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.wsf.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xamlx.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xdr.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xdr.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xml.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xoml.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" "%1" VisualStudio.xproj.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" "%1" VisualStudio.xsd.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xsd.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xsl.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xsl.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde VisualStudio.xslt.11.0="C:Program Files (x86)Microsoft Visual Studio 11.0Common7IDEdevenv.exe" /dde VisualStudio.xslt.1708aeb9="C:Program FilesMicrosoft Visual Studio2022ProfessionalCommon7IDEdevenv.exe" /dde vstfs="C:Program Files (x86)Common FilesMicrosoft SharedMSEnvVSWebLauncher.exe" /openTfsLinkAsIs "%1" vsweb+diag="C:Program Files (x86)Microsoft Visual StudioSharedVsWebProtocolSelectorMicrosoft.VisualStudio.VsWebProtocolSelector.exe" "%1" vsweb+githubsi="C:Program Files (x86)Microsoft Visual StudioSharedGitHubProtocolHandlerMicrosoft.VisualStudio.GitHubProtocolHandler.exe" "%1" vsweb+teamstoolkit="C:Program Files (x86)Microsoft Visual StudioSharedVsWebProtocolSelectorMicrosoft.VisualStudio.VsWebProtocolSelector.exe" "%1" WAB.AssocProtocol.LDAP="%ProgramFiles%Windows Mailwab.exe" "/ldap:%1 Windows >=10 0 12/02/2025 _Misc Software Query Cmd Prompt cmd Windows IP Configuration Host Name . . . . . . . . . . . . : SWDWin11 Primary Dns Suffix . . . . . . . : Node Type . . . . . . . . . . . . : Hybrid IP Routing Enabled. . . . . . . . : No WINS Proxy Enabled. . . . . . . . : No Ethernet adapter Ethernet: Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Intel(R) Ethernet Connection (14) I219-LM Physical Address. . . . . . . . . : 00-BE-43-92-F1-B8 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Link-local IPv6 Address . . . . . : fe80::d3d4:2c32:399d:fd94%13(Preferred) IPv4 Address. . . . . . . . . . . : 192.168.0.206(Preferred) Subnet Mask . . . . . . . . . . . : 255.255.255.0 Lease Obtained. . . . . . . . . . : Tuesday, December 2, 2025 3:52:35 PM Lease Expires . . . . . . . . . . : Tuesday, December 2, 2025 6:52:34 PM Default Gateway . . . . . . . . . : 192.168.0.1 DHCP Server . . . . . . . . . . . : 192.168.0.1 DHCPv6 IAID . . . . . . . . . . . : 201375299 DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2A-B9-2E-D4-00-BE-43-92-F1-B8 DNS Servers . . . . . . . . . . . : 192.168.0.1 NetBIOS over Tcpip. . . . . . . . : Enabled Wireless LAN adapter Wi-Fi: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Intel(R) Wi-Fi 6E AX210 160MHz Physical Address. . . . . . . . . : F4-CE-23-B4-C7-B5 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Wireless LAN adapter Local Area Connection* 1: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter Physical Address. . . . . . . . . : F4-CE-23-B4-C7-B6 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Wireless LAN adapter Local Area Connection* 2: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter #2 Physical Address. . . . . . . . . : F6-CE-23-B4-C7-B5 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Ethernet adapter Bluetooth Network Connection: Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network) Physical Address. . . . . . . . . : F4-CE-23-B4-C7-B9 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Module Name Display Name Driver Type Link Date ============ ====================== ============= ====================== 1394ohci 1394 OHCI Compliant Ho Kernel 3ware 3ware Kernel 5/18/2015 4:28:03 PM ACPI Microsoft ACPI Driver Kernel AcpiAudioCom ACPI Audio Compositor Kernel AcpiDev ACPI Devices driver Kernel acpiex Microsoft ACPIEx Drive Kernel acpipagr ACPI Processor Aggrega Kernel AcpiPmi ACPI Power Meter Drive Kernel acpitime ACPI Wake Alarm Driver Kernel Acx01000 Acx01000 Kernel ADP80XX ADP80XX Kernel 4/9/2015 2:49:48 PM AFD Ancillary Function Dri Kernel afunix afunix Kernel ahcache Application Compatibil Kernel amdgpio2 AMD GPIO Client Driver Kernel 2/7/2019 2:32:20 AM amdi2c AMD I2C Controller Ser Kernel 3/19/2019 10:57:33 PM AmdK8 AMD K8 Processor Drive Kernel AmdPPM AMD Processor Driver Kernel amdsata amdsata Kernel 5/14/2015 6:14:52 AM amdsbs amdsbs Kernel 12/11/2012 2:21:44 PM amdwps AMD Workload Profiling Kernel amdxata amdxata Kernel 4/30/2015 6:55:35 PM AppID AppID Driver Kernel AppleSSD Apple Solid State Driv Kernel 11/11/2019 2:24:17 PM applockerflt Smartlocker Filter Dri Kernel AppvStrm AppvStrm File System AppvVemgr AppvVemgr File System AppvVfs AppvVfs File System arcsas Adaptec SAS/SATA-II RA Kernel 4/9/2015 1:12:07 PM AsyncMac RAS Asynchronous Media Kernel atapi IDE Channel Kernel b06bdrv QLogic Network Adapter Kernel 5/25/2016 1:03:08 AM bam Background Activity Mo Kernel BasicDisplay BasicDisplay Kernel BasicRender BasicRender Kernel bcmfn2 bcmfn2 Service Kernel 10/31/2016 8:09:15 PM Beep Beep Kernel bfs Brokering File System File System bindflt Windows Bind Filter Dr File System bowser Browser File System BthA2dp Microsoft Bluetooth A2 Kernel BthEnum Bluetooth Enumerator S Kernel BthHFEnum Microsoft Bluetooth Ha Kernel BthLEEnum Bluetooth Low Energy D Kernel BthMini Bluetooth Radio Driver Kernel BTHMODEM Bluetooth Modem Commun Kernel BthPan Bluetooth Device (Pers Kernel BTHPORT Bluetooth Port Driver Kernel BTHUSB Bluetooth Radio USB Dr Kernel bttflt Microsoft Hyper-V VHDP Kernel buttonconver Service for Portable D Kernel CAD Charge Arbitration Dri Kernel CDD Canonical Display Driv Kernel cdfs CD/DVD File System Rea File System cdrom CD-ROM Driver Kernel cht4iscsi cht4iscsi Kernel 2/5/2019 6:51:31 AM cht4vbd Chelsio Virtual Bus Dr Kernel 2/5/2019 6:47:51 AM CimFS CimFS File System circlass Consumer IR Devices Kernel CldFlt Windows Cloud Files Fi File System CLFS Common Log (CLFS) Kernel CmBatt Microsoft ACPI Control Kernel CNG CNG Kernel cnghwassist CNG Hardware Assist al Kernel CompositeBus Composite Bus Enumerat Kernel condrv Console Driver Kernel CSC Offline Files Driver Kernel dam Desktop Activity Moder Kernel dbx dbx File System 2/11/2019 9:39:19 AM DellInstrume DellInstrumentation Se Kernel 9/19/2024 12:53:04 AM devmap Usermode Device Mapper Kernel Dfsc DFS Namespace Client D File System disk Disk Driver Kernel DisplayMux Microsoft DisplayMux Kernel dmvsc dmvsc Kernel drmkaud Microsoft Trusted Audi Kernel DXGKrnl LDDM Graphics Subsyste Kernel e1dexpress Intel(R) PRO/1000 PCI Kernel 2/19/2025 3:10:08 AM ebdrv QLogic 10 Gigabit Ethe Kernel 11/15/2020 3:12:10 AM ebdrv0 QLogic Legacy Ethernet Kernel 11/7/2020 3:07:41 AM EhStorClass Enhanced Storage Filte Kernel EhStorTcgDrv Microsoft driver for s Kernel ErrDev Microsoft Hardware Err Kernel ExecutionCon CPU Scheduler for High Kernel exfat exFAT File System Driv File System ExpCoSvc ExpCoSvc Kernel 1/4/2022 2:00:18 PM fastfat FAT12/16/32 File Syste File System fdc Floppy Disk Controller Kernel FileCrypt FileCrypt File System FileInfo File Information FS Mi File System Filetrace Filetrace File System flpydisk Floppy Disk Driver Kernel FltMgr FltMgr File System FsDepends File System Dependency File System fse Flow steering engine Kernel fvevol BitLocker Drive Encryp Kernel gencounter Microsoft Hyper-V Gene Kernel genericusbfn Generic USB Function C Kernel GenPass Microsoft GenPass Driv Kernel GPIOClx0101 Microsoft GPIO Class E Kernel GSCAuxDriver Intel(R) Graphics Syst Kernel 3/3/2021 5:13:06 AM GSCx64 Intel(R) Graphics Syst Kernel 4/26/2021 7:49:50 AM HdAudAddServ Microsoft 1.1 UAA Func Kernel HDAudBus Microsoft UAA Bus Driv Kernel HidBatt HID UPS Battery Driver Kernel HidBth Microsoft Bluetooth HI Kernel hidi2c Microsoft I2C HID Mini Kernel hidinterrupt Common Driver for HID Kernel HidIr Microsoft Infrared HID Kernel hidspi Microsoft SPI HID Mini Kernel HidSpiCx HidSpi KMDF Class Exte Kernel HidUsb Microsoft HID Class Dr Kernel hnswfpdriver HNS WFP Driver Kernel HpSAMD HpSAMD Kernel 3/26/2013 3:36:54 PM Hsp Microsoft Pluton Servi Kernel HTTP HTTP Service Kernel hvcrash hvcrash Kernel hvservice Microsoft Hypervisor S Kernel hvsocketcont hvsocketcontrol Kernel HwNClx0101 Microsoft Hardware Not Kernel hwpolicy Hardware Policy Driver Kernel hyperkbd hyperkbd Kernel HyperVideo HyperVideo Kernel I3CHost I3C Host Controller Se Kernel i8042prt i8042 Keyboard and PS/ Kernel iagpio Intel Serial IO GPIO C Kernel 7/23/2018 3:04:46 AM iai2c Intel(R) Serial IO I2C Kernel 7/23/2018 3:04:39 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 4/19/2018 1:53:24 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 4/17/2018 3:25:15 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 4/17/2018 1:07:03 AM iaLPSS2i_GPI Intel(R) Serial IO GPI Kernel 5/15/2018 11:46:36 PM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 4/19/2018 1:52:58 AM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 4/17/2018 3:24:40 AM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 7/14/2019 11:12:12 PM iaLPSS2i_I2C Intel(R) Serial IO I2C Kernel 5/15/2018 11:46:02 PM iaLPSS2_GPIO Intel(R) Serial IO GPI Kernel 1/18/2021 6:17:15 PM iaLPSS2_I2C_ Intel(R) Serial IO I2C Kernel 1/18/2021 6:16:45 PM iaLPSS2_SPI_ Intel(R) Serial IO SPI Kernel 1/18/2021 6:17:31 PM iaLPSS2_UART Intel(R) Serial IO UAR Kernel 1/18/2021 6:17:05 PM iaLPSSi_GPIO Intel(R) Serial IO GPI Kernel 2/2/2015 2:00:09 AM iaLPSSi_I2C Intel(R) Serial IO I2C Kernel 2/24/2015 8:52:07 AM iaStorAC Intel(R) Chipset SATA/ Kernel 9/19/2022 8:43:23 AM iaStorAfs iaStorAfs File System 9/19/2022 8:42:25 AM iaStorAVC Intel Chipset SATA RAI Kernel 9/5/2019 6:07:32 AM iaStorV Intel RAID Controller Kernel 4/11/2011 12:48:16 PM ibbus Mellanox InfiniBand Bu Kernel 6/19/2019 7:20:09 AM ibtusb Intel(R) Wireless Blue Kernel 7/20/2025 12:22:16 PM igfxn igfxn Kernel 8/18/2025 11:42:26 PM IndirectKmd Indirect Displays Kern Kernel IntcAudioBus Intel(R) Smart Sound T Kernel 3/25/2021 1:52:51 PM IntcAzAudAdd Service for Realtek HD Kernel 12/27/2024 2:16:18 AM IntcOED Intel(R) Smart Sound T Kernel 3/25/2021 1:54:48 PM intelide intelide Kernel intelpep Intel(R) Power Engine Kernel intelpmax Intel(R) Dynamic Devic Kernel IntelPMT Intel(R) Platform Moni Kernel intelppm Intel Processor Driver Kernel iorate Disk I/O Rate Filter D Kernel IpFilterDriv IP Traffic Filter Driv Kernel IPMIDRV IPMIDRV Kernel IPNAT IP Network Address Tra Kernel IPT IPT Kernel isapnp isapnp Kernel iScsiPrt iScsiPort Driver Kernel ItSas35i ItSas35i Kernel 3/1/2021 3:15:20 AM kbdclass Keyboard Class Driver Kernel kbdhid Keyboard HID Driver Kernel kbldfltr kbldfltr Kernel kdnic Microsoft Kernel Debug Kernel kdnic_legacy Microsoft Kernel Debug Kernel KSecDD KSecDD Kernel KSecPkg KSecPkg Kernel KslD KslD Kernel ksthunk Kernel Streaming Thunk Kernel l1vhlwf Nested Network Virtual Kernel l2bridge Bridge Driver Kernel lltdio Link-Layer Topology Di Kernel LSI_SAS LSI_SAS Kernel 3/25/2015 1:36:48 PM LSI_SAS2i LSI_SAS2i Kernel 8/2/2017 7:29:59 AM LSI_SAS3i LSI_SAS3i Kernel 8/21/2020 1:33:28 AM luafv UAC File Virtualizatio File System mausbhost MA-USB Host Controller Kernel mausbip MA-USB IP Filter Drive Kernel mbamchameleo mbamchameleon File System 9/22/2025 6:07:46 AM MbamElam MbamElam Kernel 1/31/2025 3:27:36 PM MBAMFarflt MBAMFarflt File System 10/6/2025 11:58:18 AM MBAMSwissArm MBAMSwissArmy Kernel 8/28/2025 9:11:10 AM MbbCx MBB Network Adapter Cl Kernel megasas2i megasas2i Kernel 1/22/2020 2:57:48 AM megasas35i megasas35i Kernel 1/12/2021 12:59:10 AM megasr megasr Kernel 6/3/2013 4:02:39 PM MEIx64 Intel(R) Management En Kernel 8/15/2024 12:36:31 AM Microsoft_Bl Microsoft Bluetooth Av Kernel mlx4_bus Mellanox ConnectX Bus Kernel 6/19/2019 7:21:08 AM MMCSS Multimedia Class Sched Kernel Modem Modem Kernel monitor Microsoft Monitor Clas Kernel mouclass Mouse Class Driver Kernel mouhid Mouse HID Driver Kernel mountmgr Mount Point Manager Kernel mpi3drvi mpi3drvi Kernel 11/16/2021 3:22:38 PM mpsdrv Windows Defender Firew Kernel MRxDAV WebDav Client Redirect File System mrxsmb SMB MiniRedirector Wra File System mrxsmb20 SMB 2.0 MiniRedirector File System MsBridge Microsoft MAC Bridge Kernel Msfs Msfs File System msgpiowin32 Common Driver for Butt Kernel mshidkmdf Pass-through HID to KM Kernel mshidumdf Pass-through HID to UM Kernel msisadrv msisadrv Kernel MSKSSRV Microsoft Streaming Se Kernel MsLldp Microsoft Link-Layer D Kernel MSPCLOCK Microsoft Streaming Cl Kernel MSPQM Microsoft Streaming Qu Kernel MsQuic MsQuic Kernel MsQuicPrev MSQUIC Kernel MsRPC MsRPC Kernel MsSecCore Microsoft Security Cor Kernel MsSecFlt Microsoft Security Eve Kernel MsSecWfp Microsoft Security WFP Kernel mssmbios Microsoft System Manag Kernel MSTEE Microsoft Streaming Te Kernel MTConfig Microsoft Input Config Kernel Mup Mup File System mvumis mvumis Kernel 5/23/2014 2:39:04 PM NativeWifiP NativeWiFi Filter Kernel ndfltr NetworkDirect Service Kernel 6/19/2019 7:18:42 AM NDIS NDIS System Driver Kernel NdisCap Microsoft NDIS Capture Kernel NdisImPlatfo Microsoft Network Adap Kernel NdisTapi Remote Access NDIS TAP Kernel Ndisuio NDIS Usermode I/O Prot Kernel NdisVirtualB Microsoft Virtual Netw Kernel NdisWan Remote Access NDIS WAN Kernel ndiswanlegac Remote Access LEGACY N Kernel NDKPerf NDKPerf Driver Kernel NDKPing NDKPing Driver Kernel ndproxy NDIS Proxy Driver Kernel Ndu Windows Network Data U Kernel NetAdapterCx Network Adapter WDF Cl Kernel NetBIOS NetBIOS Interface File System NetBT NetBT Kernel netvsc netvsc Kernel NetworkPriva Microsoft Network Priv Kernel Netwtw14 ___ Intel(R) Wireless Kernel 7/5/2025 1:15:36 PM Npfs Npfs File System npsvctrig Named pipe service tri Kernel nsiproxy NSI Proxy Service Driv Kernel Ntfs Ntfs File System Null Null Kernel nvdimm Microsoft NVDIMM devic Kernel NVHDA Service for NVIDIA Hig Kernel 9/29/2024 11:37:46 PM nvlddmkm nvlddmkm Kernel 6/17/2025 2:04:53 AM nvmedisk Microsoft NVMe disk dr Kernel nvraid nvraid Kernel 4/21/2014 12:28:42 PM nvstor nvstor Kernel 4/21/2014 12:34:03 PM P9Rdr Plan 9 Redirector Driv Kernel Parport Parallel port driver Kernel partmgr Partition driver Kernel passthrupars PassthroughParser Kernel pci PCI Bus Driver Kernel pciide pciide Kernel pcmcia pcmcia Kernel pcw Performance Counters f Kernel pdc pdc Kernel PEAUTH PEAUTH Kernel percsas2i percsas2i Kernel 3/14/2016 6:50:11 PM percsas3i percsas3i Kernel 6/1/2018 3:47:02 PM PktMon Packet Monitor Driver Kernel PktMonApi Packet Monitor Export Kernel PlutonHeci Microsoft Pluton Secur Kernel PlutonHsp2 Microsoft Pluton Servi Kernel pmem Microsoft persistent m Kernel PNPMEM Microsoft Memory Modul Kernel portcfg portcfg Kernel PptpMiniport WAN Miniport (PPTP) Kernel PRM Microsoft PRM Driver Kernel Processor Processor Driver Kernel Psched QoS Packet Scheduler Kernel pvhdparser pvhdparser Kernel pvscsi pvscsi Storage Control Kernel 5/19/2021 9:55:26 PM QWAVEdrv QWAVE driver Kernel Ramdisk Windows RAM Disk Drive Kernel RasAcd Remote Access Auto Con Kernel RasAgileVpn WAN Miniport (IKEv2) Kernel Rasl2tp WAN Miniport (L2TP) Kernel RasPppoe Remote Access PPPOE Dr Kernel RasSstp WAN Miniport (SSTP) Kernel rdbss Redirected Buffering S File System rdpbus Remote Desktop Device Kernel RDPDR Remote Desktop Device Kernel rdyboost ReadyBoost Kernel ReFS ReFS File System ReFSv1 ReFSv1 File System RFCOMM Bluetooth Device (RFCO Kernel rhproxy Resource Hub proxy dri Kernel RoutePolicy Microsoft Route Policy Kernel rspndr Link-Layer Topology Di Kernel RTSUER Realtek USB Card Reade Kernel 12/7/2023 2:54:26 AM s3cap s3cap Kernel sbp2port SBP-2 Transport/Protoc Kernel scfilter Smart card PnP Class F Kernel scmbus Microsoft Storage Clas Kernel sdbus sdbus Kernel SdcaHidInbox SoundWire HID Driver Kernel SdcaMfdInbox SoundWire Audio Multif Kernel sdstor SD Storage Port Driver Kernel SensorsSimul UMDF Reflector service Kernel SerCx Serial UART Support Li Kernel SerCx2 Serial UART Support Li Kernel Serenum Serenum Filter Driver Kernel Serial Serial port driver Kernel sermouse Serial Mouse Driver Kernel sfloppy High-Capacity Floppy D Kernel SiSRaid2 SiSRaid2 Kernel 9/24/2008 12:28:20 PM SiSRaid4 SiSRaid4 Kernel 10/1/2008 3:56:04 PM SmartSAMD SmartSAMD Kernel 2/21/2019 10:54:44 AM smbdirect smbdirect File System spaceparser spaceparser Kernel spaceport Storage Spaces Driver Kernel SpbCx Simple Peripheral Bus Kernel srv2 Server SMB 2.xxx Drive File System srvnet srvnet File System stexstor stexstor Kernel 11/26/2012 5:02:51 PM storahci Microsoft Standard SAT Kernel storflt Microsoft Hyper-V Stor Kernel stornvme Microsoft Standard NVM Kernel storqosflt Storage QoS Filter Dri File System storufs Microsoft Universal Fl Kernel storvsc storvsc Kernel storvsp storvsp Kernel swenum Software Bus Driver Kernel Tcpip TCP/IP Protocol Driver Kernel Tcpip6 @todo.dll,-100;Microso Kernel tcpipreg @%SystemRoot%System32 Kernel tdx NetIO Legacy TDI Suppo Kernel terminpt Microsoft Remote Deskt Kernel ThermalFilte Microsoft Thermal Filt Kernel TPM TPM Kernel TsUsbFlt Remote Desktop USB Hub Kernel TsUsbGD Remote Desktop Generic Kernel tsusbhub Remote Desktop USB Hub Kernel tunnel Microsoft Tunnel Minip Kernel UASPStor USB Attached SCSI (UAS Kernel UcmCx0101 USB Connector Manager Kernel UcmTcpciCx01 UCM-TCPCI KMDF Class E Kernel UcmUcsiAcpiC UCM-UCSI ACPI Client Kernel UcmUcsiCx010 UCM-UCSI KMDF Class Ex Kernel UCPD UCPD File System Ucx01000 USB Host Support Libra Kernel UdeCx USB Device Emulation S Kernel udfs udfs File System UEFI Microsoft UEFI Driver Kernel UevAgentDriv UevAgentDriver File System Ufx01000 USB Function Class Ext Kernel UfxChipidea USB Chipidea Controlle Kernel ufxsynopsys USB Synopsys Controlle Kernel uiomap Microsoft UIO Mapper D Kernel umbus UMBus Enumerator Drive Kernel UmPass Microsoft UMPass Drive Kernel UnionFS UnionFS File System UrsChipidea Chipidea USB Role-Swit Kernel UrsCx01000 USB Role-Switch Suppor Kernel UrsSynopsys Synopsys USB Role-Swit Kernel usb-platform Usb Platform Detection Kernel Usb4DeviceRo USB4 Device Router Ser Kernel Usb4HostRout USB4 Host Router Servi Kernel usbaudio USB Audio Driver (WDM) Kernel usbaudio2 USB Audio 2.0 Service Kernel usbccgp Microsoft USB Generic Kernel usbcir eHome Infrared Receive Kernel usbehci Microsoft USB 2.0 Enha Kernel usbhub Microsoft USB Standard Kernel USBHUB3 SuperSpeed Hub Kernel usbohci Microsoft USB Open Hos Kernel usbprint Microsoft USB PRINTER Kernel usbser Microsoft USB Serial D Kernel USBSTOR USB Mass Storage Drive Kernel usbuhci Microsoft USB Universa Kernel USBXHCI USB xHCI Compliant Hos Kernel vdrvroot Microsoft Virtual Driv Kernel VerifierExt Driver Verifier Extens Kernel VfpExt Microsoft Azure VFP Sw Kernel vhdmp vhdmp Kernel vhdparser vhdparser Kernel vhf Virtual HID Framework Kernel Vid Vid Kernel VirtualRende VirtualRender Kernel vmbus Virtual Machine Bus Kernel VMBusHID VMBusHID Kernel vmbusproxy vmbusproxy Kernel vmbusr Virtual Machine Bus Pr Kernel vmgid Microsoft Hyper-V Gues Kernel VMSNPXY VmSwitch NIC Proxy Dri Kernel VMSP VmSwitch Protocol Driv Kernel VmsProxy VmSwitch Proxy Driver Kernel VMSVSF VmSwitch Extensibility Kernel VMSVSP VmSwitch Extensibility Kernel volmgr Volume Manager Driver Kernel volmgrx Dynamic Volume Manager Kernel volsnap Volume Shadow Copy dri Kernel volume Volume driver Kernel vpci Microsoft Hyper-V Virt Kernel vpcivsp Microsoft Hyper-V PCI Kernel vsmraid vsmraid Kernel 4/22/2014 1:21:41 PM VSPerfDrv110 Performance Tools Driv Kernel 7/1/2012 9:25:47 PM VSTXRAID VIA StorX Storage RAID Kernel 1/21/2013 12:00:28 PM vwifibus Virtual Wireless Bus D Kernel vwififlt Virtual WiFi Filter Dr Kernel vwifimp Virtual WiFi Miniport Kernel WacomPen Wacom Serial Pen HID D Kernel wanarp Remote Access IP ARP D Kernel wanarpv6 Remote Access IPv6 ARP Kernel wcifs Windows Container Isol File System WdBoot Microsoft Defender Ant Kernel Wdf01000 Kernel Mode Driver Fra Kernel WdFilter Microsoft Defender Ant File System wdiwifi WDI Driver Framework Kernel WdmCompanion WdmCompanionFilter Kernel WdNisDrv Microsoft Defender Ant Kernel WFPLWFS Microsoft Windows Filt Kernel Wificx Wifi Network Adapter C Kernel WiManH WiMan Service Kernel 8/12/2024 6:39:11 AM WIMMount WIMMount File System WinAccelCx01 Microsoft Accelerator Kernel WindowsTrust Windows Trusted Execut Kernel WindowsTrust Microsoft Windows Trus Kernel wini3ctarget Generic driver for I3C Kernel WinMad WinMad Service Kernel 6/19/2019 7:18:11 AM WinNat Windows NAT Driver Kernel WINUSB WinUsb Driver Kernel WinVerbs WinVerbs Service Kernel 6/19/2019 7:18:12 AM WmiAcpi Microsoft Windows Mana Kernel Wof Windows Overlay File S File System WpdUpFltr WPD Upper Class Filter Kernel ws2ifsl Winsock IFS Driver Kernel wtd wtd Kernel WudfPf User Mode Driver Frame Kernel WUDFRd Windows Driver Foundat Kernel WUDFWpdFs WPD File System driver Kernel xboxgip Xbox Game Input Protoc Kernel xinputhid XINPUT HID Filter Driv Kernel ZTDNS ZTDNS Kernel MBAMWebProte MBAMWebProtection Kernel 5/28/2025 7:42:56 AM ESProtection Malwarebytes Anti-Expl Kernel 6/3/2025 2:41:04 AM MBAMProtecti MBAMProtection Kernel 7/18/2025 9:07:12 AM OS Name: Microsoft Windows 11 Pro OS Version: 10.0.26100 N/A Build 26100 OS Manufacturer: Microsoft Corporation OS Configuration: Standalone Workstation OS Build Type: Multiprocessor Free Active Connections Proto Local Address Foreign Address State PID TCP 0.0.0.0:135 0.0.0.0:0 LISTENING 1696 RpcEptMapper [svchost.exe] TCP 0.0.0.0:445 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 0.0.0.0:2869 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 0.0.0.0:5040 0.0.0.0:0 LISTENING 12236 CDPSvc [svchost.exe] TCP 0.0.0.0:17500 0.0.0.0:0 LISTENING 20244 [Dropbox.exe] TCP 0.0.0.0:20321 0.0.0.0:0 LISTENING 18816 [Resolve.exe] TCP 0.0.0.0:49152 0.0.0.0:0 LISTENING 18816 [Resolve.exe] TCP 0.0.0.0:49664 0.0.0.0:0 LISTENING 1384 Can not obtain ownership information TCP 0.0.0.0:49665 0.0.0.0:0 LISTENING 1208 Can not obtain ownership information TCP 0.0.0.0:49666 0.0.0.0:0 LISTENING 2152 Schedule [svchost.exe] TCP 0.0.0.0:49667 0.0.0.0:0 LISTENING 3540 SessionEnv [svchost.exe] TCP 0.0.0.0:49668 0.0.0.0:0 LISTENING 3640 EventLog [svchost.exe] TCP 0.0.0.0:49669 0.0.0.0:0 LISTENING 4580 [spoolsv.exe] TCP 0.0.0.0:49674 0.0.0.0:0 LISTENING 1332 Can not obtain ownership information TCP 127.0.0.1:843 0.0.0.0:0 LISTENING 20244 [Dropbox.exe] TCP 127.0.0.1:8884 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 127.0.0.1:17600 0.0.0.0:0 LISTENING 20244 [Dropbox.exe] TCP 127.0.0.1:20321 127.0.0.1:64108 ESTABLISHED 18816 [Resolve.exe] TCP 127.0.0.1:43227 0.0.0.0:0 LISTENING 5544 Can not obtain ownership information TCP 127.0.0.1:60000 127.0.0.1:62832 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:62830 127.0.0.1:62831 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:62831 127.0.0.1:62830 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:62832 127.0.0.1:60000 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63972 127.0.0.1:63973 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63973 127.0.0.1:63972 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63974 127.0.0.1:63975 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:63975 127.0.0.1:63974 ESTABLISHED 20244 [Dropbox.exe] TCP 127.0.0.1:64108 127.0.0.1:20321 ESTABLISHED 18816 [Resolve.exe] TCP 192.168.0.206:139 0.0.0.0:0 LISTENING 4 Can not obtain ownership information TCP 192.168.0.206:49675 20.59.87.227:443 ESTABLISHED 5736 WpnService [svchost.exe] TCP 192.168.0.206:49706 52.96.64.226:443 ESTABLISHED 14392 [Microsoft.Notes.exe] TCP 192.168.0.206:49707 52.96.64.226:443 ESTABLISHED 14392 [Microsoft.Notes.exe] TCP 192.168.0.206:51068 23.217.9.11:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:52918 23.217.9.12:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:53685 13.71.196.234:8883 ESTABLISHED 18212 [SupportAssistAgent.exe] TCP 192.168.0.206:56912 74.179.65.112:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:58348 23.215.223.150:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:58900 23.215.223.150:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:60031 20.9.155.153:443 ESTABLISHED 19620 [MicrosoftSecurityApp.exe] TCP 192.168.0.206:60032 162.125.40.1:443 ESTABLISHED 20244 [Dropbox.exe] TCP 192.168.0.206:60033 162.125.40.2:443 ESTABLISHED 20244 [Dropbox.exe] TCP 192.168.0.206:62716 54.163.113.199:443 CLOSE_WAIT 5544 Can not obtain ownership information TCP 192.168.0.206:63915 23.217.9.12:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63916 23.217.9.16:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63917 23.217.9.16:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63918 23.211.124.141:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63919 23.211.124.141:443 CLOSE_WAIT 16292 [LockApp.exe] TCP 192.168.0.206:63935 20.59.87.227:443 ESTABLISHED 7400 [OneDrive.exe] TCP 192.168.0.206:64498 23.217.9.21:443 ESTABLISHED 21072 [msedge.exe] TCP 192.168.0.206:64505 23.215.223.150:443 ESTABLISHED 21072 [msedge.exe] TCP [::]:135 [::]:0 LISTENING 1696 RpcEptMapper [svchost.exe] TCP [::]:445 [::]:0 LISTENING 4 Can not obtain ownership information TCP [::]:2869 [::]:0 LISTENING 4 Can not obtain ownership information TCP [::]:17500 [::]:0 LISTENING 20244 [Dropbox.exe] TCP [::]:49664 [::]:0 LISTENING 1384 Can not obtain ownership information TCP [::]:49665 [::]:0 LISTENING 1208 Can not obtain ownership information TCP [::]:49666 [::]:0 LISTENING 2152 Schedule [svchost.exe] TCP [::]:49667 [::]:0 LISTENING 3540 SessionEnv [svchost.exe] TCP [::]:49668 [::]:0 LISTENING 3640 EventLog [svchost.exe] TCP [::]:49669 [::]:0 LISTENING 4580 [spoolsv.exe] TCP [::]:49674 [::]:0 LISTENING 1332 Can not obtain ownership information TCP [::1]:42050 [::]:0 LISTENING 7592 [OneDrive.Sync.Service.exe] TCP [::1]:49670 [::]:0 LISTENING 5464 [jhi_service.exe] UDP 0.0.0.0:123 *:* 25476 W32Time [svchost.exe] UDP 0.0.0.0:5050 *:* 12236 CDPSvc [svchost.exe] UDP 0.0.0.0:5353 *:* 3096 Dnscache [svchost.exe] UDP 0.0.0.0:5353 *:* 20836 [msedge.exe] UDP 0.0.0.0:5353 *:* 20836 [msedge.exe] UDP 0.0.0.0:5353 *:* 21072 [msedge.exe] UDP 0.0.0.0:5353 *:* 21072 [msedge.exe] UDP 0.0.0.0:5355 *:* 3096 Dnscache [svchost.exe] UDP 0.0.0.0:17500 *:* 20244 [Dropbox.exe] UDP 0.0.0.0:54760 *:* 3096 Dnscache [svchost.exe] UDP 0.0.0.0:64176 *:* 18816 [Resolve.exe] UDP 0.0.0.0:64840 *:* 3096 Dnscache [svchost.exe] UDP 127.0.0.1:1900 *:* 4988 SSDPSRV [svchost.exe] UDP 127.0.0.1:49918 127.0.0.1:49918 4856 iphlpsvc [svchost.exe] UDP 127.0.0.1:53190 *:* 4988 SSDPSRV [svchost.exe] UDP 192.168.0.206:137 *:* 4 Can not obtain ownership information UDP 192.168.0.206:138 *:* 4 Can not obtain ownership information UDP 192.168.0.206:1900 *:* 4988 SSDPSRV [svchost.exe] UDP 192.168.0.206:5353 *:* 18816 [Resolve.exe] UDP 192.168.0.206:53189 *:* 4988 SSDPSRV [svchost.exe] UDP [::]:123 *:* 25476 W32Time [svchost.exe] UDP [::]:5353 *:* 21072 [msedge.exe] UDP [::]:5353 *:* 3096 Dnscache [svchost.exe] UDP [::]:5353 *:* 20836 [msedge.exe] UDP [::]:5355 *:* 3096 Dnscache [svchost.exe] UDP [::]:54760 *:* 3096 Dnscache [svchost.exe] UDP [::]:64177 *:* 18816 [Resolve.exe] UDP [::]:64840 *:* 3096 Dnscache [svchost.exe] UDP [::1]:1900 *:* 4988 SSDPSRV [svchost.exe] UDP [::1]:5353 *:* 18816 [Resolve.exe] UDP [::1]:53188 *:* 4988 SSDPSRV [svchost.exe] UDP [fe80::d3d4:2c32:399d:fd94%13]:1900 *:* 4988 SSDPSRV [svchost.exe] UDP [fe80::d3d4:2c32:399d:fd94%13]:53187 *:* 4988 SSDPSRV [svchost.exe] _Misc Software 0 12/02/2025 Vb.net Customizing Code Behinnd MR Button Webtools chr MR Web Tools ? seperates values chr(032032?chr(032 use ascii "bof" BEGIN OF FILE "eof" END OF FILE "lf" remove double CrLf "td" Replace tabs with dash "ts" tab to spaces "tc" tab to comma "lfc" replace line feeds with commas "lb-" Replace line breaks with - "{GET}" EXTRACT BETWEEN { } "{DEL}" 'Delete BETWEEN { } Vb.net 0 11/29/2024 Php Archive Code Zoom Backup Code zoom format html_entity_decode Codezoom.php <?php //compiled version: 7.2022.912.1815 $REPORT_builder.="<script> function Clipboard(txt) { var copyText = document.getElementById(txt); copyText.select(); copyText.setSelectionRange(0, 99999); navigator.clipboard.writeText(copyText.value); }</script>"; $pageLevel=3; $title="code View"; // `Startup Config` embed point $appid="638069743707776546";$appidLast=""; error_reporting( error_reporting() & ~E_NOTICE ); require_once("mystuff.php"); require_once("functions.php"); $r=new mysqli_swd(); //if(file_exists("header_global.php")) require_once("header_global.php"); //if(file_exists("header.php")){ include("header.php"); }else{ echo $REPORT_builder; } $codeid=$_GET["PID"]; //$codeid = ereg_replace('[^0-9]', '', $codeid); $sql="SELECT code,viewed,viewed_date,show_html FROM code WHERE codeid = '$codeid'"; $r->dbsql($sql); $code=html_entity_decode(stripslashes($r->data1[0])); $sql="UPDATE `code` SET `viewed`='".($r->data1[1]+1)."',`viewed_date`='".date("Y-m-d")."' WHERE codeid = '$codeid'";$r->dbsql($sql); $REPORT_builder.="<div class='div1'><textarea id='code' name='code' style=min-height:500px;width:100%;>$code</textarea></div> <input type='button' name='keywords_clipboard' style='margin-top:25px;' value='Save Code' onclick="Clipboard('code');"> <input type=button onclick="location.href='codeView.php?BACK=1#$codeid';" value='R E T U R N'> </body></html>"; echo $REPORT_builder; ?> Php 0 12/28/2022 Php Archive Color Change Script color convert javascript step Home Page div {float:left;} ---------------- ---------------- -------------------- ---Test---- R: G: B: Try it yourself: R: G: B:Transfer RGB Color Values Color Hex Code Color Hex Code Color Hex Code Alice blue #F0F8FF Antique white #FAEBD7 Aqua #00FFFF Aquamarine #7FFFD4 Azure #F0FFFF Beige #F5F5DC Bisque #FFE4C4 Black #000000 Blanche dalmond #FFEBCD Blue #0000FF Blue violet #8A2BE2 Brown #A52A2A Burlywood #DEB887 Cadet blue #5F9EA0 Chartreuse #7FFF00 Chocolate #D2691E Coral #FF7F50 Cornflower blue #6495ED Cornsilk #FFF8DC Crimson #DC143C Cyan #00FFFF Dark blue #00008B Dark cyan #008B8B Dark goldenrod #B8860B Dark gray #A9A9A9 Dark green #006400 Dark khaki #BDB76B Dark magenta #8B008B Dark olive green #556B2F Dark orange #FF8C00 Dark orchid #9932CC Dark red #8B0000 Dark salmon #E9967A Dark seagreen #8DBC8F Dark slate blue #483D8B Dark slate gray #2F4F4F Dark turquoise #00DED1 Dark violet #9400D3 Deep pink #FF1493 Deep sky blue #00BFFF Dim gray #696969 Dodger blue #1E90FF Firebrick #B22222 Floral white #FFFAF0 Forest green #228B22 Fuchsia #FF00FF Gainsboro #DCDCDC Ghost white #F8F8FF Gold #FFD700 Goldenrod #DAA520 Gray #808080 Green #008000 Green yellow #ADFF2F Honeydew #F0FFF0 Hot pink #FF69B4 Indian red #CD5C5C Indigo #4B0082 Ivory #FFFFF0 Khaki #F0E68C Lavender #E6E6FA Lavender blush #FFF0F5 Lawngreen #7CFC00 Lemon chiffon #FFFACD Light blue #ADD8E6 Light coral #F08080 Light cyan #E0FFFF Light goldenrod yellow #FAFAD2 Light green #90EE90 Light grey #D3D3D3 Light pink #FFB6C1 Light salmon #FFA07A Light seagreen #20B2AA Light sky blue #87CEFA Light slate gray #778899 Light steel blue #B0C4DE Light yellow #FFFFE0 Lime #00FF00 Lime green #32CD32 Linen #FAF0E6 Magenta #FF00FF Maroon #800000 Medium aquamarine #66CDAA Medium blue #0000CD Medium orchid #BA55D3 Medium purple #9370DB Medium sea green #3CB371 Medium slate blue #7B68EE Medium spring green #00FA9A Medium turquoise #48D1CC Medium violet red #C71585 Midnight blue #191970 Mint cream #F5FFFA Misty rose #FFE4E1 Moccasin #FFE4B5 Navajo white #FFDEAD Navy #000080 Old lace #FDF5E6 Olive drab #6B8E23 Orange #FFA500 Orange red #FF4500 Orchid #DA70D6 Pale goldenrod #EEE8AA Pale green #98FB98 Pale turquoise #AFEEEE Pale violet red #DB7093 Papaya whip #FFEFD5 Peach puff #FFDAB9 Peru #CD853F Pink #FFC8CB Plum #DDA0DD Powder blue #B0E0E6 Purple #800080 Red #FF0000 Rosy brown #BC8F8F Royal blue #4169E1 Saddle brown #8B4513 Salmon #FA8072 Sandy brown #F4A460 Sea green #2E8B57 Sea shell #FFF5EE Sienna #A0522D Silver #C0C0C0 Sky blue #87CEEB Slate blue #6A5ACD Snow #FFFAFA Spring green #00FF7F Steelblue #4682B4 Tan #D2B48C Teal #008080 Thistle #D8BFD8 Tomato #FF6347 Turquoise #40E0D0 Violet #EE82EE Wheat #F5DEB3 White #FFFFFF Whitesmoke #F5F5F5 Yellow #FFFF00 Yellow green #9ACD32 "; Php 7 12/28/2022 Php Files Config.php config Config.php config.php-> require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php"); if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='hairshoppe'; $_SESSION['LEVEL']=10; $_SESSION["EMPLOYEE"]=1;} else{ $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_hairShoppe'; }// if($_SESSION['EMPLOYEE']==""){ echo "Login Again";exit; } } $LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebdesign.com|127.0.0.1"; $sessionListSave="EMPLOYEE";$lightbox="https://www.softwarewebdesign.com"; define('SWD_KEY', 'KingOfKings'); setcookie("humans_21909", "", time() - 3600, "/"); //define('SWD_AUTHENTICATE', true); // inactivate75.php activate75.php -> if($bypass!=true){ $user='softwax3_build99';$password='Web2Build.now';$database='softwax3_SoftwareUsers'; $connection = swd_mysql("localhost", $user,$password,$database); //if($appid>"636390303046554897"){$qu=new mysqli_swd();}else{$qu=new dbase();} $qu=new mysqli_swd(); $sql="SELECT lock_device FROM users WHERE device_name='".$_COOKIE["machine_id"]."'"; $qu->dbsql($sql); if($qu->num==0 || $qu->data1[0]==1) { echo "You are locked out";exit; } $_SESSION['LEVEL']=10; mysqli_close($connection); define('SWD_AUTHENTICATE', true); }define('SWD_KEY', 'JesusIsLord'); if($bypass==true){define('SWD_AUTHENTICATE', true);} Php 1 05/11/2025 Vb.net Database Delete A Record From A DAO Recordset delete recordset Sub DeleteDuplicateShippers() Dim dbsNorthwind As DAO.Database Dim rstShippers As DAO.Recordset Dim strSQL As String Dim strName As String On Error GoTo ErrorHandler Set dbsNorthwind = CurrentDb strSQL = "SELECT * FROM Shippers ORDER BY CompanyName, ShipperID" Set rstShippers = dbsNorthwind.OpenRecordset(strSQL, dbOpenDynaset) ' If no records in Shippers table, exit. If rstShippers.EOF Then Exit Sub strName = rstShippers![CompanyName] rstShippers.MoveNext Do Until rstShippers.EOF If rstShippers![CompanyName] = strName Then rstShippers.Delete Else strName = rstShippers![CompanyName] End If rstShippers.MoveNext Loop Exit Sub ErrorHandler: MsgBox "Error #: " & Err.Number & vbCrLf & vbCrLf & Err.Description End Function Vb.net 0 10/09/2022 WP Plugin Plug-in Keep Colorado Free wordpress admin plugin shortcode membership form Custom dbh; function MemberCheck($atts){ global $wpdb; global $appid;global $connection; //print_r ($atts);exit; $dis= $_COOKIE["Member"]; //if($dis!="true"){ header("Location:https://www.keepcofree.com/member-login/");exit; } if(substr($dis,0,4)!="true" || $dis=="true"){ ?>dbsql($sql); if($atts["level"]==1)return; if($atts["level"]==2 && $r->data1["paid"]==0){ ?> WP Plugin 3 12/22/2022 Php Function Protecting Passwords Encrypt Decrypt security password Security Code App $qu=new mysqli_swd();$sql="SELECT loginid,username,password FROM loginInfo";$qu->dbsql($sql); $ciphering = "AES-128-CTR";$iv_length = openssl_cipher_iv_length($ciphering);$options = 0;$encryption_iv = '1234567891011121'; $encryption_key = SWD_KEY; if(SWD_KEY!="JesusIsLord"){ECHO "SHIT";EXIT;} for($i=1;$i<=$qu->num;$i++){ $row=$qu->dbRow($qu->data); $username=addslashes(openssl_encrypt($row[1], $ciphering,$encryption_key, $options, $encryption_iv)); $password= addslashes(openssl_encrypt($row[2], $ciphering,$encryption_key, $options, $encryption_iv)); $sql="UPDATE loginInfo SET username='$username',password='$password' WHERE loginid=".$row[0];$r->dbsql($sql); } exit; Php 3 02/22/2024 Windows >=10 Customizing Remove Keyboard remove keyboard Windows 11 To remove a keyboard layout in Windows 10, you need to12: Press the Windows key on the keyboard and click on Settings. Click on Time & Language, then click on Language. Under the "Preferred languages" section, select the current default language and click the Options button. Under the "Keyboards" section, select the keyboard layout you want to remove and click the Remove button. Learn more: Windows >=10 0 08/11/2024 WP Plugin Plug-in Scriptures show table of records Custom dbh; $table='';$terms='';$where="";$AND='WHERE'; $orderby="ORDER BY dateof DESC"; //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> $pageLevel=3;$bypass=true;$varView="https://jesusovergangs.com/demo/"; $savedPosts=array(); $savedGets=array(); $_POST['resetSM']=isset($_POST['resetSM'])?$_POST['resetSM']:''; if($_POST['resetSM']!=""){ foreach($_SESSION as $k=>$value) { unset($_SESSION[$k]); } foreach($_GET as $k=>$value) { unset($_GET[$k]); } foreach($_POST as $k=>$value) { unset($_POST[$k]); } } else { $savedPosts= json_decode(stripslashes($_SESSION["jsonPost"]),JSON_OBJECT_AS_ARRAY); $savedGets= json_decode(stripslashes($_SESSION["jsonGet"]),JSON_OBJECT_AS_ARRAY); } ///echo $savedPosts["SEARCH"]."=============".$_POST['SEARCH']; print_r ($savedPosts); $_POST['value']=isset($_POST['value']) ? $_POST['value'] : ''; $_GET['RESET']=isset($_GET['RESET']) ? $_GET['RESET'] : ''; $_GET['prn']=isset($_GET['prn'])?$_GET['prn']:''; $_GET['BACK']=isset($_GET['BACK'])?$_GET['BACK']:''; $_POST['inside_search']=isset($_POST['inside_search'])?$_POST['inside_search']:$savedPosts['inside_search']; if($_POST['inside_search']=="on"){ $checked1="checked"; $anywhere="%"; } $_GET['URL']=isset($_GET['URL'])?$_GET['URL']:''; $_POST['BUTTON']=isset($_POST['BUTTON'])?$_POST['BUTTON']:''; $_POST['SEARCH']=isset($_POST['SEARCH'])?$_POST['SEARCH']:$savedPosts["SEARCH"]; $search1= $_POST['SEARCH']; $_POST['updaterecord1']=isset($_POST['updaterecord1'])?$_POST['updaterecord1']:$savedPosts["updaterecord1"]; $FID1=$_POST['updaterecord1']; $_POST['resetLG']=isset($_POST['resetLG'])?$_POST['resetLG']:''; $_REQUEST['txWhere']=isset($_REQUEST['txWhere'])?$_REQUEST['txWhere']:''; $txWhere=$_REQUEST["txWhere"]; $_REQUEST['txOrderby']=isset($_REQUEST['txOrderby'])?$_REQUEST['txOrderby']:$savedPosts["txOrderby"]; $txOrderby= htmlspecialchars($_REQUEST['txOrderby'],ENT_QUOTES); //echo">>>>".$txOrderby; $ALL=isset($_GET['ALL'])?$_GET['ALL']:''; $_GET['MULTINPUT']=isset($_GET['MULTINPUT'])?$_GET['MULTINPUT']:''; $_GET['PDS_']=isset($_GET['PDS_'])?$_GET['PDS_']:''; $_GET['PDS_KILL']=isset($_GET['PDS_KILL'])?$_GET['PDS_KILL']:''; $_GET['INX']=isset($_GET['INX'])?$_GET['INX']:$savedGets['INX']; $INX=$_GET['INX']; $_GET['VIEW']=isset($_GET['VIEW'])?$_GET['VIEW']:''; $_GET['NUM']=isset($_GET['NUM'])?$_GET['NUM']:''; $_GET['ALPHA']=isset($_GET['ALPHA'])?$_GET['ALPHA']:''; $_GET['SB']=isset($_GET['SB'])?$_GET['SB']:''; $_GET['report']=isset($_GET['report'])?$_GET['report']:''; $part['query']=isset($part['query'])?$part['query']:''; $part['fragment']=isset($part['fragment'])?$part['fragment']:''; $prn=$_GET["prn"]; $_SESSION['INSIDE']=isset($_SESSION['INSIDE'])?$_SESSION['INSIDE']:''; //$_SESSION['MULTINPUT']=isset($_SESSION['MULTINPUT'])?$_SESSION['MULTINPUT']:'';$_SESSION['MULIUPDATEFIELD']=isset($_SESSION['MULIUPDATEFIELD'])?$_SESSION['MULIUPDATEFIELD']:''; $_SESSION['TABLENAME']=isset($_SESSION['TABLENAME']) ? $_SESSION['TABLENAME'] : ''; $_SESSION['PDS_SAVE']=isset($_SESSION['PDS_SAVE'])?$_SESSION['PDS_SAVE']:''; $_SESSION['SORTBY']=isset($_SESSION['SORTBY'])?$_SESSION['SORTBY']:''; $_SESSION['FIELDSAVE']=isset($_SESSION['FIELDSAVE'])?$_SESSION['FIELDSAVE']:''; $_SESSION['SEARCHSAVE']=isset($_SESSION['SEARCHSAVE'])?$_SESSION['SEARCHSAVE']:''; $_SESSION['URLSAVE']=isset($_SESSION['URLSAVE'])?$_SESSION['URLSAVE']:''; $ALPHA=$_GET['ALPHA']; if($ALPHA!=''){ $_SESSION['ALPHA_SAVE']=$ALPHA; } ELSE $ALPHA=$_SESSION['ALPHA_SAVE']; if($_POST["SEARCH"]!=""){$_SESSION['ALPHA_SAVE']="";$ALPHA="";} if($txWhere!="") {$whereCondition=$AND.$txWhere; $AND=" AND ";} if($ALPHA!=""){$whereAlpha="$AND $FID1 LIKE '$ALPHA%'";$AND=" AND ";} //store data for restart //echo $jsonSess = json_encode($_SESSION); $_SESSION["jsonPost"]= json_encode($_POST); $_SESSION["jsonGet"]= json_encode($_GET); $dis.=""; $dis1='';$dis.=""; $dis.="$dis1"; if($LEVEL>3){$dis.="";}else {$dis.="";} $title1="n "; //vb.net comboSearchFields function start $selectme=array();$ftitle=explode(".",$FID1); $selectme[$ftitle[1]]="selected"; $title1.="dateofn"; $title1.="commentn"; // `Report Search Fields` $title1.="n"; $dis.=$title1; // `Report Search2` $dis.="Look Inside Data Conditions:Order: "; // `Report Start Task` $dis.="n"; function CreateLinks($inx,$num,$range){ global $ALPHA; global $VIEW;global $txWhere; $ratio=(int)($num/$range);$start=1;$maxlinks=30; if($ratio<$num/$range)$ratio+=1; $end=$ratio; if($ratio>$maxlinks){ $start=$inx/$range-$maxlinks/2; if($start<1)$start=1; $end=$start+$maxlinks; if($end>$ratio){ $end=$ratio;$start=$end-$maxlinks; } } for($i=$start;$i<=$end;$i++){ switch($VIEW){ case 2: $submenu.="$i |"; break; default: $submenu.="$i |"; } } $dis1.=$submenu; return $dis1; } //Form variables on update $maxrec=20; $whereInnerjoin="";$whereSearch="";$AND=" WHERE "; $table='';$terms='';$where=""; $orderby=" ORDER BY dateof DESC"; if($txOrderby!="")$orderby=" ORDER BY ".$txOrderby; //global $wbdb; $connection=$wbdb->dbh; $whereInnerjoin="";$whereCondition="";$whereAlpha="";$whereSearch="";$AND="WHERE "; $table='';$terms='';$where="";$AND='WHERE '; $t0="scripture_comment";$tables.="$t0";$r=new mysqli_swd(); $terms.="$t0.commentid,$t0.dateof,$t0.comment,$t0.caregoryid"; if($search1!=''){ $sec1=substr($search1,0,1); if($sec1=="<" || $sec1==">"){ $search1=substr($search1,1,strlen($search1)-1); switch($sec1){ case "<": $whereSearch.=$AND.$FID1." <= '$search1'";$AND=' AND ';break; case ">": $whereSearch.=$AND.$FID1." >= '$search1'";$AND=' AND ';break; } } else { $whereSearch.=$AND.$FID1." LIKE '".$anywhere.$search1."%'"; $AND=' AND '; } } if(function_exists("global_search_filter")){ $whereSearch.=global_search_filter($t0); } // `Report Terms` $innerjoin="SELECT $terms FROM $tables ".$whereInnerjoin.$whereSearch.$txWhere.$orderby; $NUM=$r->num; //asss // `Sql Where` MODIFY VARIOUS WHERE'S // echo $innerjoin."".$countrecs.""; $cancel==false; //CREATE ORDER BY if($NUM>$maxrec && $report=='') echo CreateLinks($INX,$NUM,$maxrec); // `Sql Where` MODIFY VARIOUS WHERE'S $cancel==false; //CREATE ORDER BY if($SB=="``"){ $SB=$_SESSION["SORTBY"]; }else{ if($_SESSION["SORTBY"]==$SB)$SB=$SB." DESC"; $_SESSION["SORTBY"]=$SB; } $cancel==false; // `Sql Report` 1st Custom Changes to SQL [$t?,$table,$where,$whereAlpha,$whereSearch,$orderby] & Back?RETID= if($SB=="``" || $SB=="")$sort="`dateof` DESC".$txOrderby; //include txtbox order by else{ $sort=$SB.$txOrderby; } //Prepare multiple column sort. if(gettype($sortColumn)=='array'){ for($ii=1;$ii<=count($sortColumn);$ii++){ if(strpos("|".$sort,stripDESC($sortColumn[$ii]))==0) $sort.=",".$sortColumn[$ii]; } } // `Sort Report Header Links` $orderby=" ORDER BY $sort"; //$_SESSION["SORTBY"]=$sort; // `Sql Where` append to innerjoin // `Sort Report Header Links` if($INX=="")$INX=0; $query=$innerjoin; $r->dbsql($query);$result=$r->data;$NUM=$r->num; if($NUM>$maxrec){ $dis.= CreateLinks($INX,$NUM,$maxrec); $query=$innerjoin." LIMIT ".$INX.",".$maxrec; }else{ $query=$innerjoin; } //$countrecs="SELECT count(commentid) FROM innerjoin"; $query2=$countrecs; //END DESIGN CODE //$innerjoin="SELECT $terms FROM $tables $where"; $grouping=false; $r->dbsql($query);$result=$r->data;$num=$r->num; $disTitle="Dateof Comment"; //if($grouping==true)echo "$disTitle";else echo "".$disTitle; rem line in vb $cnt=0;// =============== START PRINTING VALUES =========== $dis.="".$disTitle; // add line in vb for($i=1;$i<=$num;$i++){ $row=$r->dbRow($result); $defaultField='One of these fields listed below'; $commentid=$row['commentid']; $dateof=$row['dateof']; $dateof=convertmdy($dateof); $comment=$row['comment']; $comment=ShortenString($comment); $caregoryid=$row['caregoryid']; // `Report Format` //Create Totals Here $cnt++;//manually assign the defaultField varaible from extracted terms. if($lastfield!=$defaultField && $grouping==true){ $dis.="n"; $dis.="$defaultField $disTitlen"; $lastfield=$defaultField; } if($class=='')$class='class=alt'; else $class=''; $cnt++;$dis.="n"; $dis.="$dateof $comment"; //$dis.=" $commentid $dateof $comment $caregoryid"; $dis.=""; //Generate Totals Here } return $dis.""; } include("WPfunctions.php"); add_shortcode("shit", "Scriptures"); ?> WP Plugin 1 12/22/2022 Css Formatting Set Styling For Jesus Loves Humor Website 2013 theme jesus loves humor Jesusloveshumor place in the style.css body {overflow:visible;} table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt} textarea{ font-size:8pt; } hr.cell_split{color:red;} tr.alt{background-color:#EEEEEE;} td{font-family:verdana;font-size:8pt;border:1px solid #000000;} .navletters {margin:0 7px 0 7px; } td.code_mod {max-width: 600px;} td.description_mod {min-width:300px;} td.description_mod div{min-width:275px;} div.scroll{overflow:auto;text-align:left;min-width:200px;max-width:600px;max-height:200px; } input[type="button"],input[type="submit"]{ background-color: #64c9ea; border: none; border-radius: 2px; box-shadow: none; color: #fff; cursor: pointer; padding: 5px 5px; min-width:10px;margin:5px;} input[type="text"],input[type="select"] {font-family:verdana;font-size:10pt;margin:5px;padding: 2px 2px;width:70%} td.file_mod{width:200px;} .entry-content {max-width:1200px; } Css 2 04/16/2025 Php Archive Software Web Activation.php reg75 Reg75.php dbsql($sql); $row=$qu->data1; $device_name=isset($row['device_name'])?$row['device_name']:''; $device_name=$device_name; $lock_device=isset($row['lock_device'])?$row['lock_device']:0; $lock_device_=$lock_device; if($_COOKIE["machine_id"]=="")setcookie("machine_id",$device_name,time()+60*60*24*700 ,"/","softwarewebdesign.com"); for($i=1;$i<=7;$i++){ switch($i){ case 1: $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accounting'; break; case 2: $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accountingP';break; case 3: $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_cropMap';break; case 4: $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_hairShoppe';break; case 5: $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_emailAccts';break; case 6: $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_invoices';break; case 7: $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_Tips';break; default: } //MAKE SURE USER IS IN THE APPLICATIONS ADMIN DATABASE $connection = mysqli_connect($server, $user,$password); mysqli_select_db($connection, $database); //$db = mysql_pconnect($server, $user,$password); mysql_select_db($database); $qu=new mysqli_swd(); $sql="SELECT * FROM useradmin WHERE lastname='$device_name'";$qu->dbsql($sql); if($qu->num==0){ $sql="INSERT INTO `useradmin`(`userid`, `lastname`, `firstname`, `email`, `username`, `password`, `level`, `logintimes`, `lastlogin`, `accesspages`, `ipaddress`, `locked`) VALUES (NULL,'$device_name','fnmae','email1','uname','[passvalue-6]',10,10,'','[value-11]','[value-12]',$lock_device)";$qu->dbsql($sql); } else { $sql="UPDATE `useradmin` SET `lastname`='$device_name',`locked`= $lock_device WHERE lastname='$device_name'"; $qu->dbsql($sql); } } } if($_GET["EM"]==1){ setcookie("machine_id","INACTIVE",time()+60*60*24*700 ,"/","softwarewebdesign.com");header("location:index75.php");exit; } $ID=$_GET["ID"];if($ID=="")$ID=0; $FORM=$_REQUEST['FORM']; $user='softwax3_build99';$password='Web2Build.now';$database='softwax3_SoftwareUsers';// swd 10/23/19 $connection = mysqli_connect($server, $user,$password); mysqli_select_db($connection, $database);// swd 10/23/19 if($FORM==2){ setcookie("machine_id",$_GET["DEVICE"],time()+60*60*24*700 ,"/","softwarewebdesign.com"); header("location:index75.php"); exit; } if($FORM==""){ $FORM=0;$caption99="NEW"; } $appid="1975"; $PID=$_GET['PID']; if($PID>0){ UpdateDbases($PID); header("location:reg75.php"); exit; } //LOAD MASTER USERS DATABASE $qu=new mysqli_swd();$sql="SELECT * FROM users ORDER BY device_name";$qu->dbsql($sql); $result=$qu->data; $varVerify="admin31/usersVerify.php"; $varView="/reg75.php"; ?> users View Not Found The requested URL /reg75.php was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Apache Server at www.softwarewebdesign.com Port 443 Current Users UseridDevice NameDevice TypeLock Device"; for($i=1;$i<=$qu->num;$i++){ //echo $qu->num; $row=$qu->dbRow($result); $userid=isset($row['userid'])?$row['userid']:''; $userid_=$userid; $device_name=isset($row['device_name'])?$row['device_name']:''; $device_name=$device_name; $device_name_=$device_name; $device_type=isset($row['device_type'])?$row['device_type']:''; $device_type_=$device_type; $lock_device=isset($row['lock_device'])?$row['lock_device']:''; $lock_device_=$lock_device; echo" $device_name$device_type"; if($class=='')$class='class=alt'; else $class=''; //if($LEVEL>8)$dis.=""; } echo ""; //if($NUM>$maxrec && $report=='') echo CreateLinks($INX,$NUM,$maxrec); // `End Report` /* if(strpos($_SERVER["SERVER_NAME"],"ww.")!=1 || $_SERVER["HTTPS"]!="on") { header("location:https://www.softwarewebdesign.com/reg75.php"); exit; } setcookie("user_id","GreatOne",time()+60*60*24*700 ,"/","softwarewebdesign.com"); setcookie("password_id","Agriculture",time()+60*60*24*700 ,"/","softwarewebdesign.com"); //if($_POST["machine"]!="")setcookie("machine_id",$_POST["machine"],time()+60*60*24*700 ,"/","softwarewebdesign.com"); header("location:https://www.softwarewebdesign.com/index75.php"); */ $sql="SELECT * FROM users WHERE userid=$ID";$qu->dbsql($sql); $row=$qu->data1; if($qu->num>0)$caption99="Update"; $userid=isset($row['userid'])?$row['userid']:0; $userid_=$userid; $device_name=isset($row['device_name'])?$row['device_name']:''; $device_name=$device_name; $device_name_=$device_name; $device_type=isset($row['device_type'])?$row['device_type']:0; $device_type_=$device_type; $lock_device=isset($row['lock_device'])?$row['lock_device']:0; $lock_device_=$lock_device; ?> Form Users Form Device Name: Device type> Smart Phone > Tablet > Laptop > Desktop Lock Device: > Php 2 01/30/2023 WP Themes Archive Software Web Design Home Page Code page plugin ?? Executive Pro /public_html/SWDHome/wp-content/themes/executive-pro/pagesw.php <?php /** * Genesis Framework. * Template Name: SWpages * * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. * Please do all modifications in the form of a child theme. * * @package GenesisTemplates * @author StudioPress * @license GPL-2.0+ * @link http://my.studiopress.com/themes/genesis/ */ //* This file handles pages, but only exists for the sake of child theme forward compatibility. /* Moved to admin panel function include_link() { $_SESSION["LEVEL"]=10; echo"Access <a href='/admin31/LoginScreen.php?UR=s0ftw8r3&PD=w3bd3s1gn' target='NewWindow'>Secondary Admin</a>"; } */ function include_page() { global $page1;global $wpdb; global $row; $dirSW="/wp-content/themes/executive-pro"; switch($page1){ case 48: include(get_theme_root_uri()."/executive-pro/colorconvert.php");break; case 53: //InsertCodeSW($page1); break; //BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES BEGIN OF NOTES $PDS_=$_GET['PDS_'];$PDS_ = ereg_replace('[^0-9]', '', $PDS_); $SB=$_GET["SB"]; $url=site_url()."?page_id=53&PDS_=$PDS_";$varView="?page_id=53&PDS_=$PDS_&SB=$SB"; $SB="`".$_GET["SB"]."`"; //compiled version: 1.2013.212.0512 function stripDESC($var1){ $m=strpos($var1,'DESC'); if($m>0)$var1=substr($var1,0,$m-1); return $var1; } function CreateLinks($inx,$num,$range,$ALPHA,$VIEW,$varView){ $ratio=(int)($num/$range);$start=1;$maxlinks=30; if($ratio<$num/$range)$ratio+=1; $end=$ratio; if($ratio>$maxlinks){ $start=$inx/$range-$maxlinks/2; if($start<1)$start=1; $end=$start+$maxlinks; if($end>$ratio){ $end=$ratio;$start=$end-$maxlinks; } } for($i=$start;$i<=$end;$i++){ switch($VIEW){ case 2: $submenu.="<A Href='$varView&INX=".($i-1)*$range."&NUM=$num&ALPHA=$ALPHA&VIEW=$VIEW'>$i</A>&nbsp;|&nbsp;"; break; default: $submenu.="<A Href='$varView&INX=".($i-1)*$range."&NUM=$num&ALPHA=$ALPHA&VIEW=$VIEW'>$i</A>&nbsp;|&nbsp;"; } } $dis1.=$submenu; return $dis1; } //include("../admin31/mystuff.php"); //include("../admin31/functions.php"); $varForm="codeForm.php"; // HEADER CODE HERE $prn=$_GET["prn"]; $AC=$_GET["AC"]; $AC = ereg_replace('[^0-9]', '', $AC); switch ($AC){ default: echo "<div id='swnotes' style='float:right;'>"; $sessionListSave='@'.$sessionListSave; $defaultSearchField="code.title"; $_SESSION["TABLENAME"]="code"; $INX=$_GET["INX"];$NUM=$_GET["NUM"];$ALPHA=$_GET["ALPHA"];$VIEW=$_GET["VIEW"];$report=$_GET["report"]; $BUTTON=$_POST['BUTTON'];$search1=$_POST["SEARCH"];$FID=$_POST["updaterecord"]; if($_POST["resetSM"]=="*")$search1="*"; if($_POST["resetLG"]=="**")$search1="**"; if($_GET['PDS_KILL']!='')$_SESSION['PDS_SAVE']=''; //if($PDS_!=''){ $_SESSION['PDS_SAVE']=$PDS_;$_SESSION['INX1']=$_GET['INX']; $_SESSION['NUM1']=$_GET['NUM']; $_SESSION['ALPHA1']=$_GET['ALPHA'] ; $_SESSION['VIEW1']=$_GET['VIEW'];$INX=0;$NUM=0;$ALPHA='';$VIEW=0; } //ELSE $PDS_=$_SESSION['PDS_SAVE']; // `Start Report` $sql="SELECT * FROM language ORDER BY language"; $rlang=mysql_query($sql);$numlang=mysql_numrows($rlang); for($i=1;$i<=$numlang;$i++){ $l=mysql_fetch_array($rlang); $lang[$l[0]]=$l[1]; } if($_SESSION["FIELDSAVE"]=="")$_SESSION["FIELDSAVE"]=$defaultSearchField; if($FID==""){ $FID=$_SESSION["FIELDSAVE"]; } else $_SESSION["FIELDSAVE"]=$FID; if($search1=="*" || $search1=="**"){ $_SESSION["SEARCHSAVE"]=""; if($search1=="**"){ $_SESSION['PDS_SAVE']="";$PDS_=""; } $search1=""; } if($search1==""){ $search1=$_SESSION["SEARCHSAVE"]; } else{ $INX="";$_SESSION["SEARCHSAVE"]=$search1; } if($_POST["inside_search"]=="on" || $_SESSION['INSIDE']=='on'){ $_SESSION['INSIDE']='on';$checked1='checked';$anywhere='%'; } //* Place in Alpha Choice ** if($prn==""){ for($i=65;$i<=90;++$i){ $dis1.="<a class='locate' href='$varView&VIEW=2&ALPHA=".chr($i)."'>".chr($i)."&nbsp;&nbsp;&nbsp;</a>"; } echo $dis1; // ** END ALPHA CHOICE ** // `Report Before Search` echo "<form name='search' method='post' action='$varView'><table width=300><tr>"; echo "<td class=search><input name='SEARCH' type='text' size=20 maxlength=60 value='".$search1."' title='** or * Reset Search.'> <input name='resetSM' type='submit' value='*'><input name='resetLG' type='submit' value='**'><br>"; echo "<select name='updaterecord' size=1>n"; if($FID=="code.title")$FID="code.title"; if($FID=='code.title')echo "<option selected value='code.title'>titlen"; else echo"<option value='code.title'>titlen"; if($FID=='code.code')echo "<option selected value='code.code'>coden"; else echo"<option value='code.code'>coden"; if($FID=='code.keywords')echo "<option selected value='code.keywords'>keywordsn"; else echo"<option value='code.keywords'>keywordsn"; // `Report Search Fields` echo"</select>n"; // `Report Search2` echo "<input name='BUTTON' type='submit' value='SEARCH'>&nbsp;&nbsp;<input type='checkbox' name='inside_search' title='Check me to look inside the data.' $checked1>&nbsp;&nbsp;Look inside data </form>"; // `Report Start Task` echo "</table>"; } //Form variables on update $maxrec=40;if($report==1 || $prn==1)$maxrec=500000; $table='';$terms='';$where='';$AND='WHERE'; $t1="operation";$tables.="$t1,"; $terms.="$t1.operation,"; if(strpos('|'.$where,'WHERE')>0)$AND="AND"; else if($AND=='')$AND="WHERE"; $where.=" $AND code.operationid=operation.operationid";$AND=' AND'; $t0="code";$tables.="$t0"; $terms.="$t0.codeid,$t0.operationid,$t0.title,$t0.code,$t0.keywords, $t0.languageid,$t0.show_html,$t0.make_public,$t0.viewed,$t0.viewed_date"; // `Report Terms` $cancel==false; // `Sql Report` if($PDS_!='' && $cancel==false){ $where.=" $AND $t0.languageid='$PDS_'";$AND='AND'; } if($SB=="``"){ $SB=$_SESSION["SORTBY"]; }else{ if($_SESSION["SORTBY"]==$SB)$SB=$SB." DESC"; $_SESSION["SORTBY"]=$SB; } if($SB=="``" || $SB=="")$sort="`operation`"; else{ $sort=$SB; // `Sort Report Header Links` } if($SB!=""){ $innerjoin=stripDESC($SB);$innerjoin=str_replace("`","",$innerjoin); if(strpos($terms,".".$innerjoin)==0){ $SB="``";$_SESSION["SORTBY"]="";$search1=""; $_SESSION["SEARCHSAVE"]=""; $sort='`operation`'; } } $innerjoin="SELECT $terms FROM $tables $where"; $countrecs="SELECT count(codeid) FROM $tables $where"; $whereAlpha="$AND $FID LIKE '$ALPHA%'"; if($FID!=''){ $whereSearch=" $AND $FID LIKE '".$anywhere.$search1."%'";$AND='AND'; } else { $whereSearch="$AND $FID LIKE '".$anywhere.$search1."%'";$AND='AND'; } if(strpos('|'.$search1,'=')==1){ if(strpos($innerjoin,'WHERE')==0)$AND='WHERE';$search1=substr($search1,1,strlen($search1)-1); $whereSearch=" $AND $search1";$AND='AND'; } $sortcount=0; $orderby=" ORDER BY $sort"; // `Sql Where` append to innerjoin //*************** START REPORT VIEWS ========================== switch($VIEW){ case 2: //======= REPORT ALPHA ========== $whereSearch=str_replace('WHERE','AND',$whereSearch); switch($INX){ case '': $query=$innerjoin.$whereAlpha.$whereSearch; $INX=0; default: $query=$innerjoin.$whereAlpha.$whereSearch." ORDER BY $sort LIMIT ".$INX.",".$maxrec; } $query2=$countrecs.$whereAlpha.$whereSearch; break; // ============= END ALPAHA ================================== default: // next VIEW switch($search1){ case ''://no search used switch($INX){ case '': $query=$innerjoin; $INX=0; default: $query=$innerjoin.$orderby." LIMIT ".$INX.",".$maxrec; } $query2=$countrecs; break; default://SEARCH USED HERE switch($INX){ case '': $query=$innerjoin.$whereSearch; $INX=0; default: $query=$innerjoin.$whereSearch.$orderby." LIMIT ".$INX.",".$maxrec; } $query2=$countrecs.$whereSearch; break; } // end search } // end report $result2=mysql_query($query2); $row2=mysql_fetch_array($result2);$NUM=$row2[0]; $result99=mysql_query($query); $numcode=mysql_numrows($result99); if($VIEW=='')$VIEW=0; if($report!=1){ if($prn==""){ if($NUM>$maxrec) echo CreateLinks($INX,$NUM,$maxrec,$ALPHA,$VIEW,$varView);$dis1=''; echo "<br><form action='$varForm?FORM=0&PID=$PID&INX=$INX&NUM=$NUM&ALPHA=$ALPHA&VIEW=$VIEW' method=post><input type=button value='Printer Friendly' onclick="location.href='$varView?ALPHA=$ALPHA&VIEW=$VIEW&prn=1'"></form>"; } } // == START PRINTING HEADERS OR CHECK FOR DATA REPORT ==== $width="style='width:900px;'"; $dis1.="<table border=1 class=view $width><tr>"; $dis1.="<td class=view ><a href='$varView&SB=languageid'>Languageid</a></td><td class=view><a href='$varView&SB=operation'>Operation</a></td> <td class=view ><a href='$varView&SB=title'>Title</a></td> <td class=view ><a href='$varView&SB=code'>Code</a></td> <td class=view ><a href='$varView&SB=keywords'>Keywords</a></td> <td class=view ><a href='$varView&SB=viewed'>Viewed</a></td><td>Details</td>"; // `Report Append Title` $dis1.="</tr>"; echo $dis1; $cnt=0;// =============== START PRINTING VALUES =========== for($i=1;$i<=$numcode;$i++){ $rcode=mysql_fetch_array($result99); $operation=stripslashes($rcode['operation']); $codeid=$rcode['codeid']; $operationid=$rcode['operationid']; $title=$rcode['title']; $title=stripslashes($title); $keywords=$rcode['keywords']; $keywords=stripslashes($keywords); $languageid=$rcode['languageid']; $show_html=$rcode['show_html']; $make_public=$rcode['make_public']; $viewed=$rcode['viewed']; $viewed_date=$rcode['viewed_date']; $code=$rcode['code']; if($show_html==1) { $code="<textarea rows=4 cols=40>".stripslashes($code)."</textarea>"; } else { $code="<textarea rows=4 cols=40>".stripslashes($code)."</textarea>"; } // `Report Format` if($class=='')$class='class=alt'; else $class=''; $cnt++;$dis.="n<tr $class>"; $dis.="<td class=view>$lang[$languageid]</td> <td class=view>$operation</td> <td class=view>$title</td> <td class=view>$code</td> <td class=view>$keywords</td> <td class=viewnumber align=right>$viewed</td><td class=view><a href='$varView&AC=1&PID=$codeid' name='$codeid'>Get Results</a></td> "; // `Report Append Variable` $dis.="</tr>"; //Generate Totals Here } echo "$dis</table></div>"; if($NUM>$maxrec) echo CreateLinks($INX,$NUM,$maxrec,$ALPHA,$VIEW,$varView); $urlreturn=$varView;if($_GET['URL']!='' || $_SESSION['URLSAVE']!=''){ if($_GET['URL']!=''){ $_SESSION['URLSAVE']=$_GET['URL']; } $urlreturn=$_SESSION['URLSAVE']; } // `End Report` break; case 1: $maxrec=40; $PID=$_GET["PID"]; $PID = ereg_replace('[^0-9]', '', $PID); $table='';$terms='';$where='';$AND=''; $t0="code";$tables.="$t0"; $terms.="$t0.codeid,$t0.title,$t0.code,$t0.show_html,$t0.make_public"; $where="WHERE codeid=$PID"; $innerjoin="SELECT $terms FROM $tables $where"; $query=$innerjoin; $result99=mysql_query($query);$num=mysql_numrows($result99); $dis1.="<div id='swnotes' style='width:880px;float:right;'>"; echo $dis1; $cnt=0;// =============== START PRINTING VALUES =========== for($i=1;$i<=$num;$i++){ $rcode=mysql_fetch_array($result99); $codeid=$rcode['codeid']; $show_html=$rcode['show_html']; $title=$rcode['title']; $title=stripslashes($title); //$code=stripslashes($code); if($show_html==0)$code="<textarea cols=100 rows=30>$code</textarea>"; $make_public=$rcode['make_public']; if($show_html==1) {$b[0]='checked'; $code=stripslashes($rcode['code']); $code=str_replace(chr(10),"<br>",$code); } else { $b[0]=''; $code="<textarea cols=60 rows=40>".stripslashes($rcode['code'])."</textarea>"; } if($make_public==1)$b[1]='checked'; else $b[1]=''; $dis1=array("show_html"=>"<input type='checkbox' name='show_html' ".$b[0].">","make_public"=>"<input type='checkbox' name='make_public' ".$b[1].">","bulldung"=>"scoopshovel"); //REPORT FORMAT here if($class=='')$class='class=alt'; else $class=''; $cnt++;$dis.="<h3>$title</h3>$code</td>"; $dis.=""; } echo $dis; echo "<p><input type=button name='return' value='Return' onclick="location.href='$varView#$PID';"></p></div>"; $sql="UPDATE code SET viewed=viewed+1, viewed_date='".date("Y-m-d")."' WHERE codeid=$codeid"; mysql_query($sql); break; } break; // END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES END OF NOTES case 89: InsertCodeSW($page1); break; default: echo admin_url()."<br>". site_url()."<br>". content_url()."<br>". includes_url()."<br>". wp_upload_dir()."<br>". get_template_directory_uri()."<br>". ABSPATH."<br>". get_theme_root_uri(); } } $page1=$post->ID; if(is_user_logged_in()){ add_action('genesis_before_sidebar_widget_area', 'include_link'); } add_action('genesis_entry_footer', 'include_page'); /* add_action('genesis_after_post_content', 'include_page'); function include_page() { global $wpdb; $page_id = genesis_get_custom_field('products'); $page_data = get_page( $page_id ); $title = $page_data->post_title; switch($page_data->ID){ case 69: echo "product prices coming soon"; break; default: echo "why are we here"; break; } } */ genesis(); WP Themes 1 12/22/2022 _Misc Software Customizing Windows windows turn off disable speed up Windows 11 00:00:00 Win11 - 10 things to turn off disable startup apps 00:50:03 ctrl + shift + ESC for task manager 01:18:04 2. Kill notification & tips 01:51:18 3. Shut down back ground apps 03:00:10 4. Stop online search in the start menu. 04:35:13 5. Kill widgets. 05:03:17 6. Reduce telemetry and diagnostics. 05:41:02 7. Disable ads in Explorer and the lock screen 06:08:24 kill the "fun facts and tips". 07:18:20 8. Kill Cortana and co-pilot. 07:44:19 9. Kill activity history and timeline. 08:51:17 10. stop auto reboots after updates 09:55:00 11. TURN OFF REMOTE ASSISTANCE. 10:23:15 12. Optional windows features you do not need 11:44:11 13. Kill the hibernation file if you don't hibernate. 13:03:26 another Microsoft update. 14:08:00 2. Searching index. 14:39:01 turn off search history. 15:12:26 turn off search highlights. 15:59:19 set my files to classic. 16:27:00 add excluded files folders you do not want searched. 16:41:12 3. Delivery optimization. 17:11:14 turn off delivery optimization. 17:33:13 turn off downloads from other devices. 17:50:19 5. Suggested apps in start menu ads. 18:31:27 turn off shell recommendations for tips. 23:00:27 god mode 23:23:13 made fixing windows simple. 27:27:27 stop windows from spying. 31:54:18 five PC tricks you should do 32:09:06 god mode code 32:58:26 windows 10 end-of-life. 40:43:16 are you still running Windows 10? 46:41:08 password locked out of windows. 53:45:10 END [video width="720" height="486" mp4="https://softwarewebdesign.com/SWDHome/wp-content/uploads/2025/11/Win11Howto20251129.mp4"][/video] Windows 10 tips near the at 32 min mark _Misc Software 0 11/29/2025 WP Files WPfunctions.php function mysql plugin quickarray=$value;return true; } function tableOption($query){ global $connection; $q = mysqli_query($connection,$query); //mysql_query($query); $num_fields = mysqli_num_fields($q); for($ii = 0; $ii < $num_fields; $ii++) { //$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n"; $fieldinfo=mysqli_field_flags($q,$ii); if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; } } } function dbRow($result){ return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH } function dbTable($result,$k){ $table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo""; $this->fieldlength = $table_info->max_length; $this->fieldname = $table_info->name; $this->fieldtable = $table_info->table; $this->fieldtype = $table_info->type; $this->fieldflag = $table_info->flags; } function dbsql2($query){ $this->insertoption=$query; } function dbsql($query){ global $db; global $dc;global $debug; global $appid; global $connection; global $wpdb; // $result=mysqli_query($connection,$query); // or die(mysqli_error().' from '.$query); //;mysql_query($query) $result=mysqli_query($wpdb->dbh,$query); if(!$result){ if($debug==true){ echo "Error:".$query;exit; }else{ echo "Error:".substr($query,0,1000);exit;} } $sql= strtolower($query); if(strpos($sql,"nsert into")==1)$AC=1; if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); } if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3; switch($AC){ case 1: $this->id=mysqli_insert_id($connection); break; case 2: if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; } if($this->num==0) return false; if($appid!=""){ $this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0); $this->data=$result; }else{ if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result); else $this->data=$result; } $this->fields = mysqli_num_fields($result); return true; break; case 3: return true; break; } // end switch } } // end class function sizepicture($picture,$maxwidth,$maxheight){ list($width, $height, $type, $attr) = getimagesize($picture); if($width==0)$width=1;if($height==0)$height=1; $size[2]=$width;$size[3]=$height; $hratio=$height/$maxheight; $wratio=$width/$maxwidth; if ($wratio>$hratio){ $ratio=$width/$height; if($width>$maxwidth){ $height=(int)($maxwidth/$ratio);$width=$maxwidth; } }else{ $ratio=$height/$width; if($height>$maxheight){ $width=(int)($maxheight/$ratio);$height=$maxheight; } } $size[0]=$width;$size[1]=$height; return $size; } function replaceForm($longadd){ $longadd=stripslashes($longadd); $longadd=str_replace(chr(160),chr(32),$longadd); $longadd=str_replace("'","'",$longadd); $longadd=str_replace(chr(34),""",$longadd); return $longadd; } function replacePunctuation($longadd){ $longadd=stripslashes($longadd); $longadd=str_replace(chr(160),chr(32),$longadd); return $longadd; } function radiochecked($var,$item){ if($var==$item) return "checked"; else return ""; } function checkboxchecked($value){ if($value==1) return "checked"; else return ""; } function checkhtml($var){ $var2=strip_tags($var); if($var2!=$var){ echo "Mail Server Crashed";exit; } if(strpos("|".$var,"http:")>0){ echo "Mail Server Crashed";exit; } $var=addslashes($var); return $var; } function stripDESC($var1){ $m=strpos($var1,'DESC'); if($m>0)$var1=substr($var1,0,$m-1); return $var1; } function ShortenString($var1){ global $prn; $var1=stripslashes($var1); $var1=str_replace(chr(160),chr(32),$var1); $var1=str_replace(chr(13),'',$var1); if(strlen($var1)>100 && $prn==''){ // $var1=substr($var1,0,40).'....'; //$var1="".$var1.""; } //if($var1=='')$var1='? '; if(strpos($var1,'.location')>0 || strpos($var1,'.href')>0)$var1='spam'; return $var1; } function checkBlanks($value){ if($value!="")return "".$value; else return ""; } function convertmdy($date1){ if($date1==""||$date1=="0000-00-00"){ $date1="";return date("m/d/y"); } $new=strtotime($date1); $date1= date('m/d/Y',$new); return $date1; } function convertmdytime($date1){ if($date1==""||$date1=="0000-00-00"){ $date1="";return $date1; } $time=strtotime($date1); $date1= date('m/d/Y H:i:s',$time); return $date1; } function convertdate($date1){ if($date1=="") return date('Y-m-d'); $date1=str_replace("/","|",$date1); $date1=str_replace("-","|",$date1); $time=explode("|",$date1); if(strlen($time[0])==1) $time[0]="0".$time[0]; if(strlen($time[1])==1) $time[1]="0".$time[1]; $new=trim($time[2])."-".$time[0]."-".$time[1]; $date1= date('Y-m-d',strtotime($new)); return $date1; } function convertdatetime($date1){ if($date1=="") return date("Y-m-d H:i:s"); $date1=str_replace("/","|",$date1);$date1=str_replace(" ","|",$date1);$date1=str_replace(":","|",$date1); $date1=str_replace("-","|",$date1); $time=explode("|",$date1); if(strlen($time[0])==1) $time[0]="0".$time[0]; if(strlen($time[1])==1) $time[1]="0".$time[1]; $date1=trim($time[2])."-".$time[0]."-".$time[1]." ".$time[3].":".$time[4].":".$time[5]; $date1= date('Y-m-d H:i:s',strtotime($date1)); return $date1; } ?> WP 0 07/29/2022 Browsers Customizing 10 Handy Firefox About:config Hacks firefox configuration fire fox Takeaway: If you really want to fine-tune your Firefox functionality, you have to roll up your sleeves and tinker with the about:config page. Jack Wallen shares some simple hacks to make Firefox work the way you want. Unless you�re a Firefox power user, you may not be familiar with the about:config page. The Firefox about:config page is not so much a page as it is a somewhat hidden configuration section. It�s hidden because it�s fairly powerful and not nearly as simple to use as the standard Preferences window. In the about:config page, you have to know what you are doing or you can mess things up a bit. In fact, when you attempt to go to that page for the first time, you have to accept an agreement (which is really just a warning) before you can continue. How this page works is simple. You reach the page by entering about:config in the address bar. There are entries (one per line) that handle various types of configurations. Each entry has a searchable keyword. The entries can be of Boolean, integer, or string value. Entries contain Name, Status, Type, and Value. Typically, you will be modifying only the Value, by double-clicking on it and making the change. With all of that in mind, let�s take a look at 10 of the best ways you can �hack� the about:config page. Tip If Firefox is fubar�d because you accidentally misconfigured about:config, you can fix it in one of two ways: Make a backup of your prefs.js file before you start editing. Then, if something goes wrong, you can restore it by copying it over the corrupt file. If you can�t restore via a backup prefs.js file, you can exit Firefox and issue the command firefox -safe-mode to bring up the Firefox Safe Mode screen. Then, just select Reset All User Preferences To Firefox Defaults. Note: This will restore all user preferences to their default values. 1: Speed up Firefox This hack requires a few steps. Search for pipelining in the filter and you should see: network.http.pipelining: Change this to true. network.http.proxy.pipelining: Change this to true. network.http.pipelining.maxrequests: Change this to 8. Now search for max-connections and you should see: network.http.max-connections: Change this to 96. network.http.max-connections-per-server: Change this to 32. 2: Disable antivirus scanning This is only for the Windows version. If you�re downloading large files, this scanning can seriously slow things down. And since you will most likely scan the downloaded file anyway, you�ll probably want to disable this. Of course, if you are uber paranoid (not a bad trait for computing), you might want to leave this entry alone. To disable antivirus scanning, search for scanWhenDone and you should see: browser.download.manager.scanWhenDone: Change this to false. 3: Open Javascript popups as tabs If a popup window lacks the features of a browser window, Firefox will handle it like a popup. If you would prefer to open all windows, including popups, as new tabs, you need to tell Firefox in about:config. Search for newwindow and you will see three entries. Of those three entries, you will want to modify: browser.link.open_newwindow.restriction: Change this to 0. 4: Spell checking in all fields By default, Firefox checks spelling only in multiple-line text boxes. You can set it to check spelling in all text boxes. Search for spellcheckdefault and you should see: layout.spellcheckDefault: Change this to 2. 5: Open search bar results in new tab When you use the search bar, the results display in the current tab. This can be a nuisance because you will navigate out of the page you are currently in. To make sure Firefox always opens search results in a new tab, search for openintab and you should see: browser.search.openintab: Change this to true. 6: Auto export bookmarks In Firefox 3, bookmarks are automatically saved and exported for you. The only problem is that by default, they�re saved as places.sqlite instead of the more convenient bookmarks.html. To change this setting so that they can be easily re-imported, search for autoExportHTML and you should see: browser.bookmarks.autoExportHTML: Change this to true. 7: Disable extension install delay One of the few gripes I have with Firefox is the silly countdown you must endure every time you want to install an extension. Fortunately, this can be disabled. Search for enable_delay and you should see: security.dialog_enable_delay: Change this to 0. 8: View source code in an external editor When you need to view the source of a page, it opens up in browser popup. Most developers would probably like to have that opened in their favorite editor instead of having to cut and paset. To do this, there are two entries to modify. Search for view_source.editor and you will see: view_source.editor.external: Change this to true. view_source.editor.path: Change this to the explicit path to your editor of choice. 9: Get more add-on search results When you do a search in the Add-on window, you�ll see just five results. You might find it more efficient to increase this number. Search for getAddons and you should see: extension.getAddons.maxResults: Change this to 10 (or higher, if you want to see even more). 10: Redefine the Backspace button Did you know you can configure Firefox to use the backspace button to either go back a page or go up a page? This keeps power users from having to go back and forth from the keyboard to the mouse. Search for backspace and you will see: browser.backspace_action: Change this to 0 for previous page and 1 for page up. Browsers 1867 09/09/2023 Css Formatting ??????Keeping Place Holders placeholder Persistent background text Css 0 01/07/2026 Css Formatting @media media screen Developer CSS In CSS, @media screen is a component of media queries, which are a powerful feature enabling responsive web design. It allows the application of specific CSS styles based on the characteristics of the device displaying the content, specifically targeting screen-based devices like computer monitors, laptops, smartphones, and tablets. Here's how it works: @media Rule: The @media at-rule introduces a media query block. This rule conditionally applies CSS styles based on the result of the media query. screen Media Type: The screen keyword within the @media rule specifies that the enclosed styles should only apply when the content is being displayed on a screen. This distinguishes it from other media types like print (for printed output) or speech (for screen readers). Conditions (Media Features): Following the screen media type, you can add conditions or "media features" enclosed in parentheses. These conditions specify characteristics of the device or viewport that must be met for the styles to apply. Common media features include: min-width: Applies styles when the viewport width is equal to or greater than the specified value. max-width: Applies styles when the viewport width is equal to or less than the specified value. orientation: Checks if the device is in portrait or landscape mode. min-resolution / max-resolution: Targets devices based on their pixel density. Logical Operators: You can combine multiple conditions using logical operators like and, or (represented by a comma ,), and not. /* Default styles for all screen sizes */ body { background-color: red; } /* Styles applied only when the screen width is 768px or wider */ @media screen and (min-width: 768px) { body { background-color: green; } } /* Styles applied only when the screen width is 600px or less */ @media screen and (max-width: 600px) { body { background-color: blue; } } In this example: The body will have a red background by default. If the screen width is 768px or more, the background will turn green. If the screen width is 600px or less, the background will turn blue. By using @media screen with various media features and logical operators, developers can create responsive designs that adapt to different screen sizes and device characteristics, providing an optimized user experience across a wide range of devices. @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){#branding .logo a img.normal_logo.show_logo,.side_logo a img.normal_logo{display:none} #branding .logo a img.retina_logo.show_logo,.side_logo a img.retina_logo{display:block} }@media only screen and (max-device-width:1023px) and (-webkit-min-device-pixel-ratio:2){#branding .logo a img.retina_logo.original_logo{display:block} #branding .logo a img.original_logo.normal_logo,#branding .logo a img.retina_logo.custom_logo{display:none !important} }@media only screen and (min-width:1000px){.vc_shape-divider-wrap[data-style="clouds"] .vc_shape-divider{min-width:1700px} }@media(min-width:1024px){.minimal_layout .wp-block-image{max-width:none;margin-left:-15%;margin-right:-15%} .clients_carousel.gallery_expanded{overflow:visible} .clients_carousel.gallery_expanded .owl-stage-outer{overflow:visible} .clients_carousel.gallery_expanded .owl-stage-outer .owl-stage{height:100%} }@media(min-width:1030px){.clients_carousel.gallery_expanded[data-items-margin=yes] .owl-item div{padding-right:50px} }@media screen and (min-width:1170px){.flat_images figure.modern_portfolio_layout.cols-2{width:47%} }@media screen and (max-width:1024px){.mobile-panel-open{overflow:hidden} .mobile_view{display:inherit;visibility:visible} .desktop_view{display:none;visibility:hidden} #branding .logo a img.original_logo.desktop_logo,.side_logo a img.desktop_logo{display:none} #branding .logo a img.mobile_logo,.side_logo a img.mobile_logo{display:inherit} #branding .logo a img.custom_logo.normal_logo{display:none} #branding .logo.mobile_logo_render a img.original_logo,#branding .logo.mobile_logo_render a img.custom_logo{display:none !important} }@media(max-width:1024px){.wrapper-out .container{max-width:100%} .creativo-enable-parallax{background-position:center center !important;background-attachment:scroll !important;background-size:cover} .single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel .owl-stage-outer .owl-item div{padding:0} .single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel,.single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel .owl-stage-outer{overflow:hidden} .single-creativo_portfolio [data-gallery-width=expanded] .owl-carousel .owl-stage{height:0} }@media only screen and (max-width:1024px){.grid-masonry.masonry-cols-5 .posts-grid-item,.grid-masonry.masonry-cols-4 .posts-grid-item,.grid-masonry.masonry-cols-3 .posts-grid-item,.grid-masonry.masonry-cols-2 .posts-grid-item{width:calc(50% - 1rem)} }@media only screen and (max-width:1023px) and (-webkit-min-device-pixel-ratio:1){#branding .logo a img.original_logo.normal_logo{display:block} #branding .logo a img.custom_logo.normal_logo,#branding .logo a img.show_logo.custom_logo{display:none} }@media only screen and (max-width:1000px){.vc_shape-divider-wrap[data-style="clouds"] .vc_shape-divider{min-width:800px} .vc_shape-divider{height:75%} .vc_shape-divider-wrap[data-style="clouds"] .vc_shape-divider{height:55%} }@media(max-width:960px){.cr-recent-posts-container .cr-grid-masonry.masonry-cols-5 .posts-grid-item,.cr-recent-posts-container .cr-grid-masonry.masonry-cols-4 .posts-grid-item,.cr-recent-posts-container .cr-grid-masonry.masonry-cols-3 .posts-grid-item{width:49.9%} .instagram_footer_wrap ul,. Css 1 10/13/2025 Windows <=8 Network Access Skydrive Like You Would A Hard Drive skydrive sky drive map network cid windows live account Windows 7 may differ the Windows 8 procedure. Log in to your skydrive account to get your cid: First you need to get your cid= number after logging into your Microsoft Skydrive account using your browser. It will have a format like https://skydrive.live.com/?mkt=en-US&v=FirstRunView#cid=8aca12345b98765. Yours may be slightly different since this was the first time I logged in to my account, but the number at the end. This is the url to map: https://d.docs.live.net/8aca12345b98765/ Open Windows File Explorer Highlight the word "Computer" on the left hand side. The network drive Icon will appear at the top middle. Click it. Use one of the higher drive letters and copy and past the new url into the folder box. Then save. Windows will try to connect if it can and prompt you for your windows live account user name and password Now you can copy and save files to your new drive. Just remember the files will only write and read based on your internet connection and speed. Similar to windows 8 http://rashedtalukder.com/how-to-map-skydrive-folder-on-windows-rt-desktop-mode/ Windows <=8 1136 09/09/2023 WP Database Access Wordpress Connection String connection string wordpress Source File wpdb() is located in wp-includes/wp-db.php. "$wbdb->dbh" WP 2 09/09/2023 Windows >=10 Customizing Add A Program To Startup In Windows start up applications Windows C:UsersSteveAppDataRoamingMicrosoftWindowsStart MenuProgramsStartup C:UserssteveAppDataRoamingMicrosoftInternet ExplorerQuick LaunchUser PinnedTaskBar To add a program to startup in Windows, you can copy and paste the program's shortcut into the Startup folder. You can also use the Startup Apps option in the Windows search bar. Steps Open the Start menu and find the app you want to add to startup Right-click the app and select Open file location Right-click the app again to create a shortcut Press the Windows logo key + R Type shell:startup and press Enter to open the Startup folder Copy and paste the shortcut from the file location to the Startup folder Windows >=10 1 02/06/2025 Php Date Add Day add day $date = date('m/d/Y',strtotime($date.' + 2 days')); [compare difference] $date = date('Y-m-d',strtotime(date('Y-m-d').' + 10 days')); $priority="";if(strtotime($date)>strtotime($daterequested)) $priority="!"; [Subraction] $date = date('Y-m-d',strtotime(date('Y-m-d'))-(10*24*60*60)); "; echo (31*24); ?> Php 3 09/09/2023 Microsoft Excel Customizing Adding A Color To Alternate Rows color alternate rows Filter List Adding a color to alternate rows or columns (often called color banding) can make the data in your worksheet easier to scan. To format alternate rows or columns, you can quickly apply a preset table format. By using this method, alternate row or column shading is automatically applied when you add rows and columns. Table with color applied to alternate rows Here's how: Select the range of cells that you want to format. Go to Home > Format as Table. Pick a table style that has alternate row shading. To change the shading from rows to columns, select the table, under Table Design, and then uncheck the Banded Rows box and check the Banded Columns box. Microsoft Excel 0 12/08/2025 WP Customizing Adding A Link To The Admin Panel plugin function.php hyperlink wordpress admin http://wordpress.org/support/topic/add-link-to-admin-panel 2 cases 1. Plugin use this plugin : (it'll add a new menu item in your admin panel) <?php /* Plugin Name: Add-Admin-Menu Author: Sanjay Menon */ function mt_add_pages() { // The first parameter is the Page name(admin-menu), second is the Menu name(menu-name) //and the number(5) is the user level that gets access add_menu_page('admin-menu', 'menu-name', 5, __FILE__, 'mt_toplevel_page'); } // mt_oplevel_page() displays the page content for the custom Test Toplevel menu function mt_toplevel_page() { echo ' <div class="wrap"> <h2>New admin menu</h2> <li><a href="http://www.icore.net.tc"><h3>Author Homepage</h3></a></li> </div>'; } add_action('admin_menu', 'mt_add_pages'); ?> OR 2. function.php You just have to put that piece of code in "functions.php" file inside your WordPress Theme. function mt_add_pages() { add_menu_page('admin-menu', 'menu-name', 5, __FILE__, 'mt_toplevel_page'); } function mt_toplevel_page() { echo ' <div class="wrap"> <h2>New admin menu</h2> <li><a href="http://www.icore.net.tc"><h3>Author Homepage</h3></a></li> </div>'; } add_action('admin_menu', 'mt_add_pages'); EXAMPLE 2: You may already have developed your own cool admin. No problem, have wordpress link to your admin and use the example modification to check to see if the user is logged in via wordpress. Just add a link to come back. This way wordpress will not mess up your styling you use in your admin. <?php /* Plugin Name: swd_admin Description: Link to swd admin Author: Software Web Design Version: 0.1 example mystuff modification session_start(); include("config.php"); require_once("../wp-load.php"); if(!is_user_logged_in() && $bypass!=true){ echo "This site is under construction"; exit; } else { $wordpress=true; $LEVEL=10; $_SESSION['LEVEL']=10; } */ add_action('admin_menu', 'swd_setup_menu'); function swd_setup_menu(){ add_menu_page( 'SWD Plugin Page', 'Go to SWD Admin', 'manage_options', 'admin-plugin', 'swd_menu' ); } function swd_menu(){ echo "<h1>SWD Menu</h1>"; echo " <a href='/swd-admin/boardOfDirectorsView.php'>Board Passwords</a> <a href='/swd-admin/directorsView.php'>Directors</a> <a href='/swd-admin/libraryView.php'>Library</a> <a href='/swd-admin/libraryCategoryView.php'>Library Categories</a>"; } ?> WP 2389 09/09/2023 WP Customizing Adding Sessions To Wordpress session function Wordpress Apps To add session_start() using a WordPress hook, the recommended approach is to hook into the init action with an early priority in your theme's functions.php file or a custom plugin. Recommended Code Snippet Add the following code to your active theme's functions.php file: php function register_my_session() { if (!session_id()) { session_start(); } } add_action('init', 'register_my_session', 1); WP 1 01/09/2026 _Misc Software Setup Aimersoft Converter Ultimate IFO Option convert movies DVD file IFO How to load DVD folders, ISO files and IFO files? Last Revised: 2013-08-28 11:14:46 2 FAQ for the following product: DVD Ripper Video Converter Pro DVD to iPad Converter You can follow the two ways below to load DVD folders, ISO files and IFO files. 1. Please click the arrow on the right of the DVD button, and then select Load DVD Folder, Load ISO Files or Load IFO Files to load the files into the program from your hard drive or disc. 2. Please click the File menu and select the corresponding command to load files into the program from your hard drive or disc. Note: 1. If you select Load DVD Folder, the whole DVD folder will open. It is suggested to select the VIDEO_TS folder, and then you can load all files in this folder including trailers or commercials into the program. 2. If you select Load IFO Files, you had better choose the biggest IFO file containing the main movie, which will help you save much time because you needn't convert unnecessary parts. Tip: You can right click the IFO files to choose Property to check the size of them. http://support.aimersoft.com/how-tos/Load-DVD-folder-ISO-IFO.html _Misc Software 1052 09/09/2023 Mysql Database Alter Table change table alter table [Add More Fields] ALTER TABLE warehouse ADD fire_protection tinyint(4) NOT NULL default '0' AFTER interstate, ADD fire_water tinyint(4) NOT NULL default '0' AFTER fire_protection, ADD fire_inertgas tinyint(4) NOT NULL default '0' AFTER fire_water, ADD fire_CO2 tinyint(4) NOT NULL default '0' AFTER fire_inertgas; [rename fields] ALTER TABLE `warehouse` CHANGE `AMPERAGE` `amperage` SMALLINT(6) DEFAULT '0' NOT NULL RENAME TABLE current_db.tbl_name TO other_db.tbl_name; ALTER TABLE orders ADD `responsecode` tinyint(4) NOT NULL default '0', ADD `responsesubcode` tinyint(4) NOT NULL default '0', ADD `reasoncode` tinyint(4) NOT NULL default '0', ADD `reasontext` varchar(255) NOT NULL default '', ADD `authcode` varchar(20) NOT NULL default '', ADD `avscode` varchar(5) NOT NULL default '', ADD `transid` tinyint(4) NOT NULL default '0'; [EMPTY TABLE] TRUNCATE TABLE table Mysql 2 09/09/2023 Mysql Query Alter Tables add field delete alter table rename update table auto increment engine collation [Collation] To change the default character set and collation of a table including those of existing columns (note the convert to clause): alter table convert to character set utf8mb4 collate utf8mb4_unicode_ci; [Reset auto increment to the lowest possible value] ALTER TABLE tablename AUTO_INCREMENT = 1 [rename Engine] ALTER TABLE tablename ENGINE = INNODB; [Single Add] ALTER TABLE `equipment` ADD `hp` SMALLINT NOT NULL AFTER `price`; [Add Multiple Fields] ' the field before this was interstate. ALTER TABLE warehouse ADD fire_protection tinyint(4) NOT NULL default '0' AFTER interstate, ADD fire_water tinyint(4) NOT NULL default '0' AFTER fire_protection, ADD fire_inertgas tinyint(4) NOT NULL default '0' AFTER fire_water, ADD fire_CO2 tinyint(4) NOT NULL default '0' AFTER fire_inertgas; [rename fields] Example: To rename a column named prod_name to product_full_name while keeping its data type as VARCHAR(100) and NOT NULL constraint: ALTER TABLE lastbackup CHANGE COLUMN table_folder source VARCHAR(75) NOT NULL; ALTER TABLE lastbackup CHANGE COLUMN database_name source_from VARCHAR(30) NOT NULL; ALTER TABLE `eqMaintenance` CHANGE `filter2id` `filter_options` varchar(60) RENAME TABLE current_db.tbl_name TO other_db.tbl_name; ALTER TABLE orders ADD `responsecode` tinyint(4) NOT NULL default '0', ADD `responsesubcode` tinyint(4) NOT NULL default '0', ADD `reasoncode` tinyint(4) NOT NULL default '0', ADD `reasontext` varchar(255) NOT NULL default '', ADD `authcode` varchar(20) NOT NULL default '', ADD `avscode` varchar(5) NOT NULL default '', ADD `transid` tinyint(4) NOT NULL default '0'; [EMPTY TABLE] TRUNCATE TABLE table Mysql 1770 09/09/2023 Javascript String Array Information length array size count Array Object Properties Property Description constructor Returns the function that created the Array object's prototype length Sets or returns the number of elements in an array prototype Allows you to add properties and methods to an Array object Array Object Methods Method Description concat() Joins two or more arrays, and returns a copy of the joined arrays indexOf() Search the array for an element and returns it's position join() Joins all elements of an array into a string lastIndexOf() Search the array for an element, starting at the end, and returns it's position pop() Removes the last element of an array, and returns that element push() Adds new elements to the end of an array, and returns the new length reverse() Reverses the order of the elements in an array shift() Removes the first element of an array, and returns that element slice() Selects a part of an array, and returns the new array sort() Sorts the elements of an array splice() Adds/Removes elements from an array toString() Converts an array to a string, and returns the result unshift() Adds new elements to the beginning of an array, and returns the new length valueOf() Returns the primitive value of an array Javascript 1296 09/09/2023 Vb.net String Array Manipulation count split explode [Return number of element in array] dotg.count= items in array [Split a patterned string into separate elements like a csv file] myfile="dog,10,cat,40,fish,50" dotg=split(myfile,",") Vb.net 1039 09/09/2023 Html Formatting Ascii Table Improved ascii Ascii Lookup DEC OCT HEX BIN Symbol HTML Number HTML Name Description 00000000000000NUL?? Null character10010100000001SOH? Start of Heading20020200000010STX? Start of Text30030300000011ETX? End of Text40040400000100EOT? End of Transmission50050500000101ENQ? Enquiry60060600000110ACK? Acknowledge70070700000111BEL? Bell, Alert80100800001000BS? Backspace90110900001001HT ? Horizontal Tab100120A00001010LF? Line Feed110130B00001011VT? Vertical Tabulation120140C00001100FF? Form Feed130150D00001101CR? Carriage Return140160E00001110SO? Shift Out150170F00001111SI? Shift In160201000010000DLE? Data Link Escape170211100010001DC1? Device Control One (XON)180221200010010DC2? Device Control Two190231300010011DC3? Device Control Three (XOFF)200241400010100DC4? Device Control Four210251500010101NAK? Negative Acknowledge220261600010110SYN? Synchronous Idle230271700010111ETB? End of Transmission Block240301800011000CAN? Cancel250311900011001EM? End of medium260321A00011010SUB? Substitute270331B00011011ESC? Escape280341C00011100FS? File Separator290351D00011101GS? Group Separator300361E00011110RS? Record Separator310371F00011111US? Unit Separator DEC OCT HEX BIN Symbol HTML Number HTML Name Description 320402000100000SP ? Space330412100100001!!!Exclamation mark340422200100010"""Double quotes (or speech marks)350432300100011###Number sign360442400100100$$$Dollar370452500100101%%%Per cent sign380462600100110&&&Ampersand390472700100111'''Single quote400502800101000((&lparen;Open parenthesis (or open bracket)410512900101001))&rparen;Close parenthesis (or close bracket)420522A00101010***Asterisk430532B00101011+++Plus440542C00101100,,,Comma450552D00101101--? Hyphen-minus460562E00101110...Period, dot or full stop470572F00101111///Slash or divide48060300011000000? Zero49061310011000111? One50062320011001022? Two51063330011001133? Three52064340011010044? Four53065350011010155? Five54066360011011066? Six55067370011011177? Seven56070380011100088? Eight57071390011100199? Nine580723A00111010:::Colon590733B00111011;;;Semicolon600743C00111100<<<Less than (or open angled bracket)610753D00111101===Equals620763E00111110>>>Greater than (or close angled bracket)630773F00111111???Question mark641004001000000@@@At sign651014101000001AA? Uppercase A661024201000010BB? Uppercase B671034301000011CC? Uppercase C681044401000100DD? Uppercase D691054501000101EE? Uppercase E701064601000110FF? Uppercase F711074701000111GG? Uppercase G721104801001000HH? Uppercase H731114901001001II? Uppercase I741124A01001010JJ? Uppercase J751134B01001011KK? Uppercase K761144C01001100LL? Uppercase L771154D01001101MM? Uppercase M781164E01001110NN? Uppercase N791174F01001111OO? Uppercase O801205001010000PP? Uppercase P811215101010001QQ? Uppercase Q821225201010010RR? Uppercase R831235301010011SS? Uppercase S841245401010100TT? Uppercase T851255501010101UU? Uppercase U861265601010110VV? Uppercase V871275701010111WW? Uppercase W881305801011000XX? Uppercase X891315901011001YY? Uppercase Y901325A01011010ZZ? Uppercase Z911335B01011011[[[Opening bracket921345C01011100Backslash931355D01011101]]]Closing bracket941365E01011110^^^Caret - circumflex951375F01011111___Underscore961406001100000```Grave accent971416101100001aa? Lowercase a981426201100010bb? Lowercase b991436301100011cc? Lowercase c1001446401100100dd? Lowercase d1011456501100101ee? Lowercase e1021466601100110ff? Lowercase f1031476701100111gg? Lowercase g1041506801101000hh? Lowercase h1051516901101001ii? Lowercase i1061526A01101010jj? Lowercase j1071536B01101011kk? Lowercase k1081546C01101100ll? Lowercase l1091556D01101101mm? Lowercase m1101566E01101110nn? Lowercase n1111576F01101111oo? Lowercase o1121607001110000pp? Lowercase p1131617101110001qq? Lowercase q1141627201110010rr? Lowercase r1151637301110011ss? Lowercase s1161647401110100tt? Lowercase t1171657501110101uu? Lowercase u1181667601110110vv? Lowercase v1191677701110111ww? Lowercase w1201707801111000xx? Lowercase x1211717901111001yy? Lowercase y1221727A01111010zz? Lowercase z1231737B01111011{{{Opening brace1241747C01111100|||Vertical bar1251757D01111101}}}Closing brace1261767E01111110~~˜Equivalency sign - tilde1271777F01111111DEL? Delete DEC OCT HEX BIN Symbol HTML Number HTML Name Description 1282008010000000€€€Euro sign1292018110000001 Unused1302028210000010‚‚‚Single low-9 quotation mark1312038310000011ƒƒƒLatin small letter f with hook1322048410000100„„„Double low-9 quotation mark1332058510000101………Horizontal ellipsis1342068610000110 Dagger1352078710000111‡‡‡Double dagger1362108810001000ˆˆˆModifier letter circumflex accent1372118910001001‰‰‰Per mille sign1382128A10001010 Latin capital letter S with caron1392138B10001011‹‹‹Single left-pointing angle quotation1402148C10001100ŒŒŒLatin capital ligature OE1412158D10001101 Unused1422168E10001110ŽŽŽLatin capital letter Z with caron1432178F10001111 Unused1442209010010000 Unused1452219110010001‘‘‘Left single quotation mark1462229210010010’’’Right single quotation mark1472239310010011“““Left double quotation mark1482249410010100”””Right double quotation mark1492259510010101•••Bullet1502269610010110–––En dash1512279710010111———Em dash1522309810011000˜˜˜Small tilde1532319910011001™™™Trade mark sign1542329A10011010šššLatin small letter S with caron1552339B10011011›››Single right-pointing angle quotation mark1562349C10011100œœœLatin small ligature oe1572359D10011101 Unused1582369E10011110žžžLatin small letter z with caron1592379F10011111ŸŸŸLatin capital letter Y with diaeresis160240A010100000NBSP Non-breaking space161241A110100001¡¡¡Inverted exclamation mark162242A210100010¢¢¢Cent sign163243A310100011£££Pound sign164244A410100100¤¤¤Currency sign165245A510100101¥¥¥Yen sign166246A610100110¦¦¦Pipe, broken vertical bar167247A710100111§§§Section sign168250A810101000¨¨¨Spacing diaeresis - umlaut169251A910101001©©©Copyright sign170252AA10101010ªªªFeminine ordinal indicator171253AB10101011«««Left double angle quotes172254AC10101100¬¬¬Negation173255AD10101101SHYSoft hyphen174256AE10101110®®®Registered trade mark sign175257AF10101111¯¯¯Spacing macron - overline176260B010110000°°°Degree sign177261B110110001±±±Plus-or-minus sign178262B210110010²²²Superscript two - squared179263B310110011³³³Superscript three - cubed180264B410110100´´´Acute accent - spacing acute181265B510110101µµµMicro sign182266B610110110¶¶¶Pilcrow sign - paragraph sign183267B710110111···Middle dot - Georgian comma184270B810111000¸¸¸Spacing cedilla185271B910111001¹¹¹Superscript one186272BA10111010ºººMasculine ordinal indicator187273BB10111011»»»Right double angle quotes188274BC10111100¼¼¼Fraction one quarter189275BD10111101½½½Fraction one half190276BE10111110¾¾¾Fraction three quarters191277BF10111111¿¿¿Inverted question mark192300C011000000ÀÀÀLatin capital letter A with grave193301C111000001ÁÁÁLatin capital letter A with acute194302C211000010ÂÂÂLatin capital letter A with circumflex195303C311000011ÃÃÃLatin capital letter A with tilde196304C411000100ÄÄÄLatin capital letter A with diaeresis197305C511000101ÅÅÅLatin capital letter A with ring above198306C611000110ÆÆÆLatin capital letter AE199307C711000111ÇÇÇLatin capital letter C with cedilla200310C811001000ÈÈÈLatin capital letter E with grave201311C911001001ÉÉÉLatin capital letter E with acute202312CA11001010 ÊÊÊLatin capital letter E with circumflex203313CB11001011ËËËLatin capital letter E with diaeresis204314CC11001100ÌÌÌLatin capital letter I with grave205315CD11001101ÍÍÍLatin capital letter I with acute206316CE11001110ÎÎÎLatin capital letter I with circumflex207317CF11001111ÏÏÏLatin capital letter I with diaeresis208320D011010000ÐÐÐLatin capital letter ETH209321D111010001ÑÑÑLatin capital letter N with tilde210322D211010010ÒÒÒLatin capital letter O with grave211323D311010011ÓÓÓLatin capital letter O with acute212324D411010100ÔÔÔLatin capital letter O with circumflex213325D511010101ÕÕÕLatin capital letter O with tilde214326D611010110ÖÖÖLatin capital letter O with diaeresis215327D711010111×××Multiplication sign216330D811011000ØØØLatin capital letter O with slash217331D911011001ÙÙÙLatin capital letter U with grave218332DA11011010ÚÚÚLatin capital letter U with acute219333DB11011011ÛÛÛLatin capital letter U with circumflex220334DC11011100ÜÜÜLatin capital letter U with diaeresis221335DD11011101ÝÝÝLatin capital letter Y with acute222336DE11011110ÞÞÞLatin capital letter THORN223337DF11011111ßßßLatin small letter sharp s - ess-zed224340E011100000 Latin small letter a with grave225341E111100001áááLatin small letter a with acute226342E211100010âââLatin small letter a with circumflex227343E311100011ãããLatin small letter a with tilde228344E411100100äääLatin small letter a with diaeresis229345E511100101åååLatin small letter a with ring above230346E611100110æææLatin small letter ae231347E711100111çççLatin small letter c with cedilla232350E811101000èèèLatin small letter e with grave233351E911101001éééLatin small letter e with acute234352EA11101010êêêLatin small letter e with circumflex235353EB11101011ëëëLatin small letter e with diaeresis236354EC11101100ìììLatin small letter i with grave237355ED11101101íííLatin small letter i with acute238356EE11101110îîîLatin small letter i with circumflex239357EF11101111ïïïLatin small letter i with diaeresis240360F011110000ðððLatin small letter eth241361F111110001ñññLatin small letter n with tilde242362F211110010òòòLatin small letter o with grave243363F311110011óóóLatin small letter o with acute244364F411110100ôôôLatin small letter o with circumflex245365F511110101õõõLatin small letter o with tilde246366F611110110öööLatin small letter o with diaeresis247367F711110111÷÷÷Division sign248370F811111000øøøLatin small letter o with slash249371F911111001ùùùLatin small letter u with grave250372FA11111010úúúLatin small letter u with acute251373FB11111011ûûûLatin small letter u with circumflex252374FC11111100üüüLatin small letter u with diaeresis253375FD11111101ýýýLatin small letter y with acute254376FE11111110þþþLatin small letter thorn255377FF11111111ÿÿÿLatin small letter y with diaeresis Html 1 09/24/2025 Css Archive Assembly.css Backup assembly css floating header line height Library 1st part runs everything. Rest formatting is in the xxxCustom.css and floatingheader.css //* begin auto css 4.2020.801.1875 */ input, textarea, select,a {font-family:verdana;font-size:10pt;margin-top:3px;} /* Checkbox element, when checked */ input[type="checkbox"] { box-shadow: 0 0 0 1px hotpink; } table.reportActionTable {max-width:1200px;min-width:800px;} td.viewnumber{text-align:right;} .button_cell{min-width:125px;} .tableInput {min-width:100px;} table.formtablewidth {width:100%;max-width:600px;} textarea.textareaDimension{ width:98%; min-height: 100px; } textarea.descriptionPUR { height:300px; } textarea.descriptionFIL { height:200px; } textarea.NoteBox{ width:100%; max-width:600px; min-width:400px; min-height: 300px; } hr.cell_split{color:red;} img {border:0px;border-style:inset;border-color:black} UL {margin-left:20px;margin-bottom:0in;margin-top:0in;font-size:10pt;} LI {margin:1px 1px 1px 1px} LI.large {margin:1px 1px 1px 1px;font-size:16pt} body{margin-left:27px;margin-top:0px;font-size:10pt;font-family:Verdana} p{font-family:verdana;font-size:12pt} p.menu{font-family:verdana;font-size:12pt;margin-right:20px;margin-top:.5em} table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt} tr.alt{background-color:#FFEFD5;} td{font-family:verdana;font-size:10pt;border:1px solid #000000;padding:3px;} td.debt{color:red;} div {font-size:10pt;zoom:1;} div.scroll{overflow:auto;text-align:left;min-width:200px;max-width:600px;max-height:200px; } .navletters {margin:0 7px 0 7px; } h1 {font-size:26pt; } textarea.descriptionLED {height:250px; } ..ui-datepicker.ui-datepicker-multi { min-width: 30% !important; /* Makes the multi-month datepicker responsive to its parent container */ } .ui-datepicker { min-width: 38em; /* Adjust the pixel value as needed .ui-datepicker table { width: 100%; } */ font-size: 10pt; /* Adjust font size to fit more months if necessary */ } @media screen and (max-width: 1100px) { body{ zoom:1;} } /* end auto css 4.2020.801.1875 */ Old archived stuff .navletters{margin:0 5px 0 10px;} .fertilizer {font-size:14pt;margin-left:75px;page-break-after: always;} A:link {text-decoration:underline;color:#330033;font-size:8pt} A:visited {text-decoration:none;color:#0033FF;font-size:8pt} A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial} A.menu:visited {text-decoration:none;color:#666666;font-size:8pt} A:hover.menu {color:#ffcc66;font-size:8pt} A.menu:active {text-decoration:none;color:#666666;font-size:8pt} A:link.calendar {text-decoration:underline;color:#330033;font-size:8pt} A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial} .navletters{margin:0 5px 0 10px;} input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px} input[type="checkbox"] { border: 2px solid #2c4358; } input.txwhere {min-width:300px;} table.formtablewidth {width:100%;max-width:800px;} table.reportActionTable {max-width:1200px;min-width:800px;} textarea.textareaDimension{ width:100%;min-height: 200px; } hr.cell_split{color:red;} img {border:0px;border-style:inset;border-color:black} UL {margin-left:20px;margin-bottom:0in;margin-top:0in;} LI {margin:1px 1px 1px 1px} LI.large {margin:1px 1px 1px 1px;font-size:16pt} body{margin-left:25px;margin-top:0px;font-size:10pt;font-family:Verdana} /* body {min-width:4150px;} */ p{font-family:verdana;font-size:10pt} p.menu{font-family:verdana;font-size:8pt;margin-right:20px;margin-top:.5em} table{border-color:black;border-collapse:collapse;mso-padding-alt:0in 5.4pt 0in 5.4pt;} tr.alt{background-color:#D1EED0;} td{font-family:verdana;font-size:8pt;border:1px solid #000000;padding:3px;} td.small{font-family:verdana;font-size:6pt} td.menu{font-family:verdana;font-size:7pt} p.title{font-family:verdana;font-size:12pt;font-weight:bold} p.large{font-family:verdana;font-size:22pt} input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px} #menud table{border:none;border-color:#000000;width:150;border-collapse:collapse;background-color:#CCCCCC} #menud td.menuon {background-color:#66FF00;color:#000000;border:1pt solid #000000;text-align:right} #menud td.menuoff {background-color:#0033FF;color:#FFFFFF;border:1pt solid #000000;text-align:right} #menud tr.space{height:15px} #menud td.space{Border-top:0px;Border-bottom: 0px solid;Border-right:1pt solid #000000;Border-left:1pt solid #000000} #menud tr{height:20px} #menud p{font-family:Verdana;font-size:10pt;font-weight:bold;margin-left:5px;margin-right:5px} input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px} div.scroll{overflow:auto;text-align:left;max-width:450px;max-height:150px; } #lightbox{ position: absolute; left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;} #lightbox img{ width: auto; height: auto;} #lightbox a img{ border: none; } #outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; } #imageContainer{ padding: 10px; } #loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; } #hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; } #imageContainer>#hoverNav{ left: 0;} #hoverNav a{ outline: none;} #prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; } #prevLink { left: 0; float: left;} #nextLink { right: 0; float: right;} #prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; } #nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; } #imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100% ; } #imageData{ padding:0 10px; color: #666; } #imageData #imageDetails{ width: 70%; float: left; text-align: left; } #imageData #caption{ font-weight: bold; } #imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; } #imageData #bottomNavClose{ width: 66px; float: right; padding-bottom: 0.7em; outline: none;} #overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; } Css 8 01/22/2025 Css Customizing Assembly.css Instructions assembly vb.net phpscript whs transaction zoom Developer customize top and bottom table: input.txwhere {min-width:300px;} length of where textbox table.formtablewidth {width:100%;max-width:800px;} table.reportActionTable {max-width:1200px;min-width:800px;} width of bottom table textarea.textareaDimension{ width:100%;min-height: 200px; } hr.cell_split{color:red;} color of line in merged cells .navletters{margin:0 5px 0 10px;} input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px} input[type="checkbox"] { border: 2px solid #2c4358; } table.formtablewidth {width:100%;max-width:800px;} textarea.textareaDimension{ width:100%;min-height: 200px; } table.reportActionTable {max-width:1200px;min-width:800px;} A:link {text-decoration:underline;color:#330033;font-size:8pt} A:visited {text-decoration:none;color:#0033FF;font-size:8pt} A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial} A.menu:visited {text-decoration:none;color:#666666;font-size:8pt} A:hover.menu {color:#ffcc66;font-size:8pt} A.menu:active {text-decoration:none;color:#666666;font-size:8pt} A:link.calendar {text-decoration:underline;color:#330033;font-size:8pt} A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial} A:visited.calendar {text-decoration:underline;color:#666666;font-size:8pt} A:hover.calendar {color:#ffcc66;font-size:8pt} A:active.calendar {text-decoration:underline;color:#666666;font-size:8pt} hr.cell_split{color:#FFFF00;} img {border:0px;border-style:inset;border-color:black} UL {margin-left:20px;margin-bottom:0in;margin-top:0in;} LI {margin:1px 1px 1px 1px} LI.large {margin:1px 1px 1px 1px;font-size:16pt} body{margin-left:30px;margin-top:0px;font-size:10pt;font-family:Verdana} p{font-family:verdana;font-size:10pt} p.menu{font-family:verdana;font-size:8pt;margin-right:20px;margin-top:.5em} table{border-color:#CCCCCC;border-collapse:collapse;} tr.alt{background-color:#EEEEEE;} td.debt{ color:red; } td{font-family:verdana;font-size:8pt;border:1px solid #CCCCCC;padding:3px 4px 3px 6px;} td.small{font-family:verdana;font-size:6pt} td.menu{font-family:verdana;font-size:7pt} p.title{font-family:verdana;font-size:12pt;font-weight:bold} p.large{font-family:verdana;font-size:22pt} input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px} #menud table{border:none;border-color:#000000;width:150;border-collapse:collapse;background-color:#CCCCCC} #menud td.menuon {background-color:#66FF00;color:#000000;border:1pt solid #000000;text-align:right} #menud td.menuoff {background-color:#0033FF;color:#FFFFFF;border:1pt solid #000000;text-align:right} #menud tr.space{height:15px} #menud td.space{Border-top:0px;Border-bottom: 0px solid;Border-right:1pt solid #000000;Border-left:1pt solid #000000} #menud tr{height:20px} #menud p{font-family:Verdana;font-size:10pt;font-weight:bold;margin-left:5px;margin-right:5px} input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px} div.scroll{overflow:auto;text-align:left;min-width:450px;max-width:600px;max-height:200px; } textarea.descriptionLED {height:250px; } @media screen and (max-width: 1100px) { body{ zoom:2.5;} } Css 0 01/22/2025 Javascript Text Box Auto Clear Text Box Input text - auto clear w FIND A STORE onblur="this.value=(this.value=='') ? 'Enter a Zip Code' : this.value;" onfocus="clearText(this);" value="Enter a Zip Code" /> Javascript 1460 09/09/2023 _Misc Software Formatting Auto Number In Excel auto number Excel Column You can automatically number a column in Excel using the Fill Handle, Fill Series, or the ROW function to create a sequential numbering system easily. Method 1: Using the Fill Handle Enter Initial Numbers: In the first two cells of the column where you want to start numbering, enter the numbers 1 and 2 (or any starting numbers you prefer). Select Cells: Highlight both cells containing the numbers. Use the Fill Handle: Move your cursor to the bottom-right corner of the selection until you see a small plus sign (the Fill Handle). Drag or Double-Click: Click and drag the Fill Handle down to fill the column with sequential numbers, or double-click it to auto-fill the column based on adjacent data. 2 2 Sources Method 2: Using the Fill Series Option Enter Starting Value: Type 1 in the first cell of the column. Access Fill Options: Go to the Home tab, click on Fill, and select Series from the dropdown menu. Configure Series: In the Series dialog box, choose Columns for Series in, set the Step Value to 1, and specify the Stop Value based on how many rows you want to number. Click OK: This will fill the column with a sequential series of numbers. 2 2 Sources Method 3: Using the ROW Function Enter the Formula: In the first cell of the column, type the formula =ROW(A1) (adjust the cell reference based on your starting position). This will return the row number of the cell. Drag the Fill Handle: Use the Fill Handle to drag the formula down the column. Each cell will display its corresponding row number, which updates automatically if rows are added or deleted. 2 2 Sources Tips Adjust Starting Point: If you want to start numbering from a different number, you can modify the formula accordingly (e.g., =ROW(A1)-4 to start from 1 in row 5). Manual Updates: If you use the Fill Handle or Fill Series, remember that these numbers won't automatically update if you add or remove rows; you may need to redo the process to maintain accuracy. 1 By following these methods, you can efficiently auto-number columns in Excel to keep your data organized and easily readable. _Misc Software 0 07/21/2025 Php Function Automatically Make Urls Clickable hyperlinks click email url link function _make_url_clickable_cb($matches) { $ret = ''; $url = $matches[2]; if ( empty($url) ) return $matches[0]; // removed trailing [.,;:] from URL if ( in_array(substr($url, -1), array('.', ',', ';', ':')) === true ) { $ret = substr($url, -1); $url = substr($url, 0, strlen($url)-1); } //return $matches[1] . "$url" . $ret; return $matches[1] . "$url" . $ret; } function _make_web_ftp_clickable_cb($matches) { $ret = ''; $dest = $matches[2]; $dest = 'http://' . $dest; if ( empty($dest) ) return $matches[0]; // removed trailing [,;:] from URL if ( in_array(substr($dest, -1), array('.', ',', ';', ':')) === true ) { $ret = substr($dest, -1); $dest = substr($dest, 0, strlen($dest)-1); } return $matches[1] . "$dest" . $ret; } function _make_email_clickable_cb($matches) { $email = $matches[2] . '@' . $matches[3]; return $matches[1] . "$email"; } function MakeHyperlink($ret) { $ret = ' ' . $ret; // in testing, using arrays here was found to be faster $ret = preg_replace_callback('#([\s>])([\w]+?://[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is', '_make_url_clickable_cb', $ret); $ret = preg_replace_callback('#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is', '_make_web_ftp_clickable_cb', $ret); $ret = preg_replace_callback('#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret); // this one is not in an array because we need it to run last, for cleanup of accidental links within links $ret = preg_replace("#(]+?>|>))]+?>([^>]+?)#i", "$1$3", $ret); $ret = trim($ret); return $ret; } Php 1617 09/09/2023 Css Formatting Background Changes background css fixed url background- hand property for: background-color body {background-color: coral;} background-image body { background-image: url("paper.gif"); background-color: #cccccc; } background-position body { background-image: url('w3css.gif'); background-repeat: no-repeat; background-attachment: fixed; background-position: center; } background-size #example1 { background: url(mountain.jpg); background-repeat: no-repeat; background-size: auto; } #example2 { background: url(mountain.jpg); background-repeat: no-repeat; background-size: 300px 100px; } background-repeat body { background-image: url("paper.gif"); background-repeat: repeat-y; } background-origin #example1 { border: 10px dashed black; padding: 25px; background: url(paper.gif); background-repeat: no-repeat; background-origin: content-box; } background-clip Specify how far the background should extend within an element: div { border: 10px dotted black; padding: 15px; background: lightblue; background-clip: padding-box; } background-attachment A background-image that will not scroll with the page (fixed): body { background-image: url("img_tree.gif"); background-repeat: no-repeat; background-attachment: fixed; } How to position a background-image on x-axis: div { background-image: url('w3css.gif'); background-repeat: no-repeat; background-position-x: center; } How to position a background-image on y-axis: div { background-image: url('w3css.gif'); background-repeat: no-repeat; background-position-y: center; } <table> <tr> <th>Value</th> <th>Description</th> <th>CSS</th> </tr> <tr> <td> <i> background-color </i> </td> <td>Specifies the background color to be used</td> <td>body { background-color:yellow; } h1 { background-color:#00ff00; } p { background-color:rgb(255,0,255); } </td> </tr> <tr> <td> <i> background-position</i> </td> <td>Specifies the position of the background images</td> <td>body { background-image:url('smiley.gif'); background-repeat:no-repeat; background-attachment:fixed; background-position:center; } </td> </tr> <tr> <td> <i> background-size</i> </td> <td>Specifies the size of the background images</td> <td> div { background:url(img_flwr.gif); background-size:80px 60px; background-repeat:no-repeat; } </td> </tr> <tr> <td> <i> background-repeat </i> </td> <td>Specifies how to repeat the background images</td> <td>body { background-image:url('paper.gif'); background-repeat:repeat-y; } </td> </tr> <tr> <td> <i> background-origin </i> </td> <td>Specifies the positioning area of the background images</td> <td>div { background-image:url('smiley.gif'); background-repeat:no-repeat; background-position:left; background-origin:content-box; } </td> </tr> <tr> <td> <i> background-clip </i> </td> <td>Specifies the painting area of the background images</td> <td>div { background-color:yellow; background-clip:content-box; } </td> </tr> <tr> <td> <i> background-attachment </i> </td> <td>Specifies whether the background images are fixed or scrolls with the rest of the page</td> <td>body { background-image:url('w3css.gif'); background-repeat:no-repeat; background-attachment:fixed; } </td> </tr> <tr> <td> <i> background-image </i> </td> <td>Specifies ONE or MORE background images to be used</td> <td>body { background-image:url('paper.gif'); background-color:#cccccc; } </td> </tr> </table> body { background-image: url(../images/backg.gif); background-repeat: no-repeat; background-position: top center; background-attachment: fixed } background-color:white;opacity:.5;filter:alpha(opacity=50); // for firefox and IE background-color: transparent; color: orange; Css 1621 09/09/2023 _Misc Software Archive Backup Google Earth My Places google earth backup Google Earth Pro Move saved locations to a new computer You can move locations you've saved in Google Earth to a different computer. Saved locations are called placemarks, and they're automatically saved to your computer. Step 1: Find location file Windows Press Ctrl + Esc + r or Windows key + r. . In the "Open" box, enter "%USERPROFILE%AppDataLocalLowGoogleGoogleEarth". If you're using Windows XP, enter "%USERPROFILE%Application DataGoogleGoogleEarth" instead. Select OK. In the directory, you'll see a file called "myplaces.kml". This file has your saved locations. Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml." Mac Open the Finder. At the top of the screen, click Go. Hold down Option or Alt, then click Library and then Application support and then Google Earth. You'll see a file called "myplaces.kml". This file has your saved locations. Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml." Step 2: Move location file There are a few ways you can transfer the file with your saved locations to another computer: Save the file in Google Drive Email the file to yourself Save the file to a USB drive Tip: Back up your myplaces.kml file to a removable device, like USB drive. _Misc Software 0 01/23/2025 Javascript Function Bearing Bearing heading latitude longitude GPS function bearing(startLat, startLng, destLat, destLng){ startLat = toRadians(startLat); startLng = toRadians(startLng); destLat = toRadians(destLat); destLng = toRadians(destLng); y = Math.sin(destLng - startLng) * Math.cos(destLat); x = Math.cos(startLat) * Math.sin(destLat) - Math.sin(startLat) * Math.cos(destLat) * Math.cos(destLng - startLng); brng = Math.atan2(y, x); brng = toDegrees(brng); return (brng + 360) % 360; } Javascript 2 09/09/2023 _Misc Software Setup Bluehost Email Setup On Pop3 email bluehost Outook These are results for bluehost pop3 email setup Search instead for blue host pop3 email setup AI Overview To set up Bluehost email with POP3, configure your mail client using incoming server mail.yourdomain.com (or pop.titan.email for professional email) on port 995 with SSL, and outgoing server mail.yourdomain.com (or smtp.titan.email) on port 465 or 587 with SSL/TLS. POP3 downloads messages to your device, making them accessible offline but often removing them from the server. Key Bluehost POP3 Settings Username: Full email address (e.g., user@example.com) Password: Password for your email account Incoming Server (POP3): mail.yourdomain.com (or pop.titan.email) Incoming Port: 995 Security: SSL/TLS Outgoing Server (SMTP): mail.yourdomain.com (or smtp.titan.email) Outgoing Port: 465 (or 587) Authentication: Required for outgoing server (use same username/password) Setup Steps by Device Gmail (Web): Go to Settings > "Accounts and Import" > "Check mail from other accounts" > Add a mail account > Select POP3 and enter the settings above. Windows 10 Mail: Search for Mail > Accounts > Add Account > Advanced Setup > Internet email > Fill in POP3 details. Android (Gmail App): Settings > Add account > Other > Select POP3 > Enter details. Note: Ensure "Leave a copy of messages on server" is checked in your email client settings if you want to access mail from multiple devices _Misc Software 0 02/19/2026 Css Formatting Bullets And Numbering bullets li ul ol 5.6.3 'list-style-type' Value: disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none Initial: disc Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A This property is used to determine the appearance of the list-item marker if 'list-style-image' is 'none' or if the image pointed to by the URL cannot be displayed. OL { list-style-type: decimal } /* 1 2 3 4 5 etc. */ OL { list-style-type: lower-alpha } /* a b c d e etc. */ OL { list-style-type: lower-roman } /* i ii iii iv v etc. */ 5.6.4 'list-style-image' Value: | none Initial: none Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A This property sets the image that will be used as the list-item marker. When the image is available it will replace the marker set with the 'list-style-type' marker. UL { list-style-image: url(http://png.com/ellipse.png) } 5.6.5 'list-style-position' Value: inside | outside Initial: outside Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A The value of 'list-style-position' determines how the list-item marker is drawn with regard to the content. For a formatting example see section 4.1.3. 5.6.6 'list-style' Value: [disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none] || [inside | outside] || [ | none] Initial: not defined for shorthand properties Applies to: elements with 'display' value 'list-item' Inherited: yes Percentage values: N/A The 'list-style' property is a shorthand notation for setting the three properties 'list-style-type', 'list-style-image' and 'list-style-position' at the same place in the style sheet. UL { list-style: upper-roman inside } UL UL { list-style: circle outside } LI.square { list-style: square } Setting 'list-style' directly on 'LI' elements can have unexpected results. Consider: level 1 level 2 Since the specificity (as defined in the cascading order) is higher for the first rule in the style sheet in the example above, it will override the second rule on all 'LI' elements and only 'lower-alpha' list styles will be used. It is therefore recommended to set 'list-style' only on the list type elements: OL.alpha { list-style: lower-alpha } UL { list-style: disc } In the above example, inheritance will transfer the 'list-style' values from 'OL' and 'UL' elements to 'LI' elements. A URL value can be combined with any other value: UL { list-style: url(http://png.com/ellipse.png) disc } In the example above, the 'disc' will be used when the image is unavailable. Css 2134 09/09/2023 Microsoft Excel Form Button To Go To A Certain Sheet button sheet Solution 1 Alternately, if you are using a Macro Enabled workbook: Add any control at all from the Developer -> Insert (Probably a button) When it asks what Macro to assign, choose New. For the code for the generated module enter something like: Thisworkbook.Sheets("Sheet Name").Activate Microsoft Excel 2 09/09/2023 Vb.net Function Calling A Click Event call Vb.net Events Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Button2_Click(Sender, e) End Sub BTbulkMove_Click(sender As Object, e As EventArgs) translates to BTbulkMove_Click(sender, e) BTtest_Click(sender As Object, e As EventArgs) translates to BTtest_Click(sender, e) Vb.net 0 08/21/2025 Css Formatting Centering A Table center table The old way to center a table was easy: ... The "align" attribute has been deprecated, however, in favor of CSS (Cascading Style Sheets), and this is a good thing. However, it's not so obvious how to center a table using CSS. The obvious way might appear to use the CSS "text-align: center;" somewhere, maybe like one of these: OR ... OR, if you get really desperate, ... None of these will work. The table itself will be left-aligned, but all the content in the table cells will be centered. Why? Because "text-align" applies to inline content, not to a block-level element like "table". Method 1 To center a table, you need to set the margins, like this: table.center {margin-left:auto; margin-right:auto;} And then do this: ... At this point, Mozilla and Opera will center your table. Internet Explorer 5.5 and up, however, needs you to add this to your CSS as well: body {text-align:center;} Method 2 If you want your table to be a certain percentage width, you can do this: table#table1 {width:70%; margin-left:15%; margin-right:15%;} And then in your HTML/XHTML, you would do this: ... Note that I was using an id to describe the table. You can only use an id once on a page. If you had many tables on a page that you wanted to be the same width and centered, you would do this in your CSS: table.center {width:70%; margin-left:15%; margin-right:15%;} And this in your HTML: ... ... Method 3 If you want your table to be of fixed width, define your CSS like this: div.container {width:98%; margin:1%;} table#table1 {text-align:center; margin-left:auto; margin-right:auto; width:100px;} tr,td {text-align:left;} Set "width:100px" to whatever width you need. "text-align: center" is there for Internet Explorer, which won't work without it. Unfortunately, "text-align: center" will center all the text inside your table cells, but we counter that by setting "tr" and "td" to align left. In your HTML, you would then do this: ... Once again, I'm using an id. If you need to center several tables the same way, use a class instead of an id. Css 1744 09/09/2023