How to Code 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 Microsoft Excel Formatting Cleaning Table Row Cells Using Vba clean clear cells table Crop Production Xls Sub ClearRowBasedOnValue() Dim tbl As ListObject Dim i As Long ' Set the table object (Replace "Table1" with your actual table name) Set tbl = ActiveSheet.ListObjects("Table1") ' Loop through the rows from bottom to top For i = tbl.ListRows.Count To 1 Step -1 ' Check if the cell in a specific column (e.g., "Status") matches your criteria If tbl.ListRows(i).Range(1, tbl.ListColumns("Status").Index).Value = "Clear" Then ' Clear specific cells in that row by column name tbl.ListRows(i).Range(1, tbl.ListColumns("Data1").Index).ClearContents tbl.ListRows(i).Range(1, tbl.ListColumns("Data2").Index).ClearContents ' Alternatively, clear a range of columns in that row ' tbl.ListRows(i).Range.ClearContents End If Next i End Sub Sub ClearRowConstantsByFilter() Dim tbl As ListObject Dim row As Range Dim filterCriteria As String ' Set your table name Set tbl = ActiveSheet.ListObjects("Table1") ' Define what value you are looking for to trigger the clear filterCriteria = "DeleteMe" ' Loop through each row in the table's data area For Each row In tbl.ListObject.DataBodyRange.Rows ' "Filter" check: Only act if the first column matches our criteria If row.Cells(1, 1).Value = filterCriteria Then On Error Resume Next ' Avoid error if no constants exist in the row ' Clear everything in the row EXCEPT formulas row.SpecialCells(xlCellTypeConstants).ClearContents On Error GoTo 0 End If Next row End Sub Microsoft Excel 0 05/21/2026 Microsoft Excel Customizing Creating Ranges In Excel range Crops Quick Methods to Name Ranges Method 1: Using the Name Box (Fastest) Select the cells or range you want to name. Click into the Name Box (the empty box just to the left of the formula bar). Type a name (remember: no spaces or special characters are allowed; use underscores instead of spaces, like Total_Sales). Press Enter to save the name. Microsoft Excel 0 05/18/2026 Php Internet Drag And Drop File Upload drag drop upload Uplioad Drag and Drop File Upload Drag & drop your file here or Browse File =========== CREATE UPLOAD.PHP NEXT===================== 'error', 'message' => 'No file uploaded or upload error occurred.']); exit; } $file = $_FILES['uploaded_file']; // Security definitions $allowedExtensions = ['jpg', 'jpeg', 'png', 'pdf', 'zip']; $maxFileSize = 5 * 1024 * 1024 * 100; // 5 Megabytes $uploadDir = 'uploads/'; // Validate size if ($file['size'] > $maxFileSize) { echo json_encode(['status' => 'error', 'message' => 'File size exceeds the SET limit.']); exit; } // Validate extension $fileExtension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION)); if (!in_array($fileExtension, $allowedExtensions)) { echo json_encode(['status' => 'error', 'message' => 'Invalid file extension type.']); exit; } // Create target directory if it does not exist if (!is_dir($uploadDir)) { mkdir($uploadDir, 0755, true); } // Sanitize filename to prevent directory traversal attacks $safeFilename = time() . '_' . preg_replace("/[^a-zA-Z0-9._-]/", "", $file['name']); $targetFilePath = $uploadDir . $safeFilename; // Move file from temporary directory to storage location if (move_uploaded_file($file['tmp_name'], $targetFilePath)) { echo json_encode([ 'status' => 'success', 'message' => 'File successfully uploaded!', 'filename' => $safeFilename ]); } else { echo json_encode(['status' => 'error', 'message' => 'Failed to save uploaded file.']); } } else { echo json_encode(['status' => 'error', 'message' => 'Invalid HTTP request method.']); } Php 0 06/27/2026 _Misc Software Archive Dumps Of Code dump archive save Developer /wp-content/uploads/movies/RevelationSong-KariJobe.mp4 /wp-content/uploads/movies/in20260705.mp4 _Misc Software 0 07/06/2026 Php Archive Hempdbase Code Saved hemp potency importPDF 0)return 0; if($numberFront>0){$length=strlen($numberFront); $value =substr($value,$length,strlen($value)-$length)." ".$numberFront;} $length=strrpos($value," ");$value=(float)substr($value,$length, strlen($value)-length);//echo "value=$value"; //echo $value.""; return $value; } function singleLine($search,$lineIndex,$extractBy){ // lineIndex IS FOR DATA NOT ON THE SAME LINE SET=0 MOSTLY global $exported; $tmp=array(); $actualValue="";$tmp[0]="empty"; $tmp[1]=0; $found_it=false; global $kIndex;// FOR OLDER VERSIONS foreach($exported as $k=>$value) { //if($k<$kIndex){ continue; } //prevent duplicates assuming data sequential read //echo "value=".$value; if(strpos($value,$search)>0){ $kIndex=$k; $found_it=true; break; } // record Located } $actualValue=$exported[$k+$lineIndex]; //if(strpos($actualValue,$extractBy)==0 || $extractBy=="" ){ $tmp[0]="empty"; $tmp[1]=$actualValue; echo "shit happened"; return $tmp; } $tmp=explode($extractBy,$actualValue); //print_r($tmp); if($found_it==false){ $tmp[0]=$actualValue; $tmp[1]="shit"; echo $search."=SHIT HAPPENED 2"; } //$tmp[0]."=".$tmp[1]."" echo $actualValue."====".$tmp[0]." 1-".$tmp[1]." 2-".$tmp[2]." 3-".$tmp[3].""; return $tmp; } $kIndex=-1; include("header.php"); ?> Potency Profile IMPORTER 2023/01/01->2023/12/31 2024/01/01->2024/12/31 2025/01/01->2025/12/31 2026/01/01->2026/12/31 dbsql($sql); //get default batch name LOOK IS settingsView.php $sql="SELECT sampleid FROM process WHERE sample = '".$qu->data1[0]."'"; $qu->dbsql($sql); // get sampleid prom the process table $sampleid=$qu->data1[0]; $laboratoryid=1;$analysis_methodid="HPLC"; $export=$_POST["importstring"];$lookUp=array(); //read imported data step I $daterange=$_POST["daterange"]; // DETERMINES THE VERSION OF THE PDF WHICH CHANGE IN TIME switch ($daterange){ //CLEAN UP SPACES IN POTENCY NAMES case "9": $export=str_replace("Max Active Cannabidiol (CBD)","Max_Active_Cannabidiol_(CBD)",$export); $export=str_replace("Cannabichromene (CBC)","Cannabichromene_(CBC)",$export); $export=str_replace("Cannabidiol (CBD)","Cannabidiol_(CBD)",$export); $export=str_replace("Cannabidiolic Acid (CBD-A)","Cannabidiolic_Acid_(CBD-A)",$export); $export=str_replace("Cannabidivarin (CBDV)","Cannabidivarin_(CBDV)",$export); $export=str_replace("Cannabigerol (CBG)","Cannabigerol_(CBG)",$export); $export=str_replace("Cannabigerolic Acid (CBG-A)","Cannabigerolic_Acid_(CBG-A)",$export); $export=str_replace("Cannabinol (CBN)","Cannabinol_(CBN)",$export); $export=str_replace("delta 8-Tetrahydrocannabinol","delta_8-Tetrahydrocannabinol",$export); $export=str_replace("delta-9-Tetrahydrocannabinolic Acid (THC-A)","delta-9-Tetrahydrocannabinolic_Acid(THC-A)",$export); $export=str_replace("delta 9-Tetrahydrocannabinol (THC)","delta_9-Tetrahydrocannabinol_(THC)",$export); $export=str_replace("Tetrahydrocannabivarin (THCV)","Tetrahydrocannabivarin_(THCV)",$export); $export=str_replace("Max Active THC (delta-9-tetrahydrocannabinol)","Max_Active_THC(delta-9-tetrahydrocannabinol)",$export); $export=str_replace("Total Cannabinoids","Total_Cannabinoids",$export); break; default: if(strpos($export,"(6aR,9S)")==0){$export=str_replace("Cannabinoids Total","(6aR,9S)-delta-10-THC <0.30 (6aR,9R)-delta-10-THC <0.30 Cannabinoids Total",$export); } // THIS LINES ARE ADDED BECAUSE WE HAVE THESE FIELDS IN OUR DATABASE COULD BE PROBLEM LATER //END SETUP OF IMPORTED STRING } $l=str_replace(chr(13),"",$export); echo "$l"; $exported=explode(chr(13).chr(10),$export); //print_r($exported);exit; //[0] => Customer: [1] => Sample ID: [2] => Labnumber: [3] => Club LLC [4] => A - 3R Muscle Rub Roll-on - Batch AN-114 //$lookUp=singleLine("abnumber:",1,""); $submitter_name= trim($lookUp[1]); $lookUp=singleLine("abnumber:",2,""); $sample_desc= trim($lookUp[1]); //SWD switch ($dateCode) { case "9": //ALL DONE IN LOAD LAB INFORMATION break; default: $submitter_name= loadSubmitter($daterange); $sample_desc= loadSampleDescription($daterange); } //[5] => Address: [6] => TopicalMatrix: [7] => 24D0020-01 //[8] => 1312 Blue Spruce Drive, Unit 2 [9] => Fort Collins, CO 80524 [10] => Extraction [11] => Date(s) [12] => Analysis [13] => Date(s) //[14] => 4/4/2024 4/4/2024 [15] => Extraction Technician: CB loadLabInformation($daterange); //Header info for FORM $kIndex=loadAnalysisStart($daterange); $kIndex=loadAnalysisEnd($daterange,$max_active_THC, $max_active_CDB, $total_active_cannabinoids, $total_cannabinoids,$density);//echo "cdv===".$CBDV;exit; $tmp[0]=$max_active_CDB/$max_active_THC;$tmp[0]=number_format ($tmp[0], 2).":1"; $tmp[1]=$max_active_THC/$max_active_CDB;$tmp[1]=number_format ($tmp[1], 2).":1"; $CBD_THC_ratio=$tmp[0]; $THC_CBD_ratio=$tmp[1]; $converted=0; $extension=""; $pdf=""; $process=0;$comment=null; ?> ``` Php 0 06/04/2026 _Misc Software Customizing Menu Commands media timeline Devinchi Resove Timeline -> video -> linked move across tracks, Selection follows play head, Ripple timeline markers Under "Sound Library" dropdown metadata Viewthumbnail viewlist view _Misc Software 0 07/05/2026 Microsoft Excel Archive Module 3 vba module Crop Production Sub fuelCoSheets_Change() Dim Shit As String Shit = ReadSelectedFormControlItem If Shit = "Select a Tab" Then Exit Sub ThisWorkbook.Sheets(Shit).Activate End Sub Sub herbicideCoSheets_Change() Dim Shit As String Shit = ReadSelectedFormControlItem If Shit = "Select a Tab" Then Exit Sub ThisWorkbook.Sheets(Shit).Activate End Sub Sub herbicideCoRanges_Change() Dim Shit As String Shit = ReadSelectedFormControlItem If Shit = "Select a Range" Then Exit Sub ActiveSheet.Range(Shit).Select If InStr(Shit, "YesCrop") > 0 Then Range(Shit).ClearContents End If End Sub Sub herbicideCoTables_Change() Dim Shit As String Shit = ReadSelectedFormControlItem If Shit = "Select a Table" Then Exit Sub ActiveSheet.ListObjects(Shit).Range.Select End Sub Sub homeCoSheets_Change() Dim Shit As String Shit = ReadSelectedFormControlItem If Shit = "Select a Tab" Then Exit Sub ThisWorkbook.Sheets(Shit).Activate End Sub Sub insecticideCoSheets_Change() Dim Shit As String Shit = ReadSelectedFormControlItem If Shit = "Select a Tab" Then Exit Sub ThisWorkbook.Sheets(Shit).Activate End Sub Sub insecticideCoTables_Change() Dim Shit As String Shit = ReadSelectedFormControlItem If Shit = "Select a Table" Then Exit Sub ActiveSheet.ListObjects(Shit).Range.Select End Sub Sub FillRangeComboItems(ComboName As String) Dim nm As Name Dim targetSheet As Worksheet ' Set the sheet you want to look at Set targetSheet = ActiveSheet 'Debug.Print "--- Named Ranges in " & targetSheet.Name & " ---" With ActiveSheet.DropDowns(ComboName) .RemoveAllItems .AddItem "Select a Range" ' Loop through each table and print details For Each nm In ActiveWorkbook.Names On Error Resume Next ' Check if the named range points to the target sheet If nm.RefersToRange.Worksheet.Name = targetSheet.Name Then .AddItem nm.Name 'Debug.Print "Name: " & nm.Name & " | Address: " & nm.RefersToRange.Address End If On Error GoTo 0 Next nm .ListIndex = 1 End With ' Loop through all names in the workbook End Sub Sub FillTableComboItems(ComboName As String) Dim tbl As ListObject Dim ws As Worksheet ' Set the target worksheet Set ws = ActiveSheet ' Check if there are any tables on the sheet If ws.ListObjects.Count = 0 Then MsgBox "No tables found on " & ws.Name, vbInformation Exit Sub End If With ActiveSheet.DropDowns(ComboName) .RemoveAllItems .AddItem "Select a Table" ' Loop through each table and print details For Each tbl In ws.ListObjects .AddItem tbl.Name ' Debug.Print "Table Name: " & tbl.Name & " | Range: " & tbl.Range.Address Next tbl .ListIndex = 1 End With End Sub Function ReadSelectedFormControlItem() Dim cmbName As String Dim selectedText As String Dim selectedIndex As Long ' Get the name of the Form Control that triggered the macro cmbName = Application.Caller With ActiveSheet.Shapes(cmbName).ControlFormat ' Get the 1-based position of the selected item selectedIndex = .ListIndex ' Verify an item is actually selected (returns 0 if empty) If selectedIndex > 0 Then ' Retrieve the string text using the index selectedText = .List(selectedIndex) 'MsgBox "Selected Item: " & selectedText ReadSelectedFormControlItem = selectedText Else 'MsgBox "No item selected." ReadSelectedFormControlItem = "Dead" End If End With End Function Sub FillSheetComboItems(ComboName As String) With ActiveSheet.DropDowns(ComboName) .RemoveAllItems If .ListCount = 0 Then Dim wsh As Worksheet .AddItem "Select a Tab" For Each wsh In Worksheets .AddItem wsh.Name Next wsh .ListIndex = 1 End If End With End Sub Microsoft Excel 0 06/04/2026 Mysql Database Php Lookup Of User Permissions user permissions New Server $result=mysqli_query($connection,"SHOW GRANTS FOR CURRENT_USER"); if ($result) { echo "Privileges:"; while ($row = $result->fetch_assoc()) { echo "" . htmlspecialchars(current($row)) . ""; } echo ""; $result->free(); } else { echo "Error: " . $mysqli->error; } exit; Mysql 0 07/11/2026 Vb.net Customizing Rem Out Code rem Developer Comment multiple lines: Ctrl + K, then Ctrl + C Uncomment them: Ctrl + K, then Ctrl + U Here are the correct, verified ways to “REM out” (comment out) multiple lines in VB.NET, based strictly on real Visual Basic language rules and Visual Studio behavior. VB.NET does not have a native multi?line comment block like /* */ in C# or Java. This is confirmed in the official REM documentation: each comment must begin its own line, because comments cannot span multiple lines automatically 1 4. However, you can comment out multiple lines using any of the following real methods: 1. Add ' or REM to every line (language rule) VB.NET allows single?line comments using: The apostrophe ' The keyword REM (requires a space) Both apply only to the current line, so you repeat them for each line 1 4. Example: Vb' First commented line ' Second commented line ' Third commented line or: VbREM First commented line REM Second commented line REM Third commented line 2. Use Visual Studio shortcut: Ctrl+K, Ctrl+C (comment) Visual Studio lets you “comment out” multiple lines at once, even though VB.NET itself does not support block comments. This is done with the keyboard shortcut 2 3 5: Comment multiple lines: Ctrl + K, then Ctrl + C Uncomment them: Ctrl + K, then Ctrl + U Visual Studio’s multiple?line comment shortcut (Ctrl+K, Ctrl+C) #If False Then … #End If to disable a block of code 3. Use #If False Then … #End If (compiler?ignored block) This is not technically a comment, but it is a valid and common VB.NET technique for disabling multiple lines at once. Example 5: Vb#If False Then Dim x As Integer x = 10 Console.WriteLine(x) #End If Because the condition is False, the compiler ignores the entire block—effectively acting like a multi?line comment. Summary VB.NET does not support multi?line comments, but you can “REM out” multiple lines using: ' or REM on each line (language standard) Visual Studio’s multiple?line comment shortcut (Ctrl+K, Ctrl+C) #If False Then … #End If to disable a block of code If you'd like, I can generate a Visual Studio macro, extension, or tool to automate REM?style commenting across many lines. 1-Microsoft.com 2-Stackoverflow.com 3-Codegenes.net 4-Github.com 5-Umatechnology.org Vb.net 0 05/21/2026 Mysql Database Simple Php Mysql Database Connection Insert Example connect insert Debug // Source - https://stackoverflow.com/q/53312997 // Posted by Tr?n V? Anh D?ng // Retrieved 2026-07-10, License - CC BY-SA 4.0 $servername = "localhost"; $user = "admin"; $pass = "admin"; $dbname = "examples"; // Create connection $conn = new mysqli($servername, $user, $pass, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $id = $_POST['id']; $name = $_POST['name']; $year = $_POST['year']; $sql = "INSERT INTO cars (id, name, year) VALUES ($id, $name, $year)"; if ($conn->query($sql) === TRUE) { echo "T?o m?i th nh công"; } else { echo "L?i: " . $sql . "" . $conn->error; } $conn->close(); ?> Mysql 0 07/10/2026 Microsoft Excel Formatting Using Look Up Tables xlookup Crop Production look up units =IF(tank_sizeB<51,XLOOKUP(R3,convertA,convertG),IF(tank_sizeB<101,XLOOKUP(R3,convertA,convertE),XLOOKUP(R3,convertA,convertC))) look up multiplier =IF(tank_sizeB<51,XLOOKUP(I4,convertA,convertF),IF(tank_sizeB<101,XLOOKUP(I4,convertA,convertD),XLOOKUP(I4,convertA,convertB))) =IF(tank_sizeB<51,XLOOKUP(R3, convertA,convertF),"") =IF(tank_sizeB<51,XLOOKUP(R3,convertA,convertG),"") A B C D E F G Units convert units2 convert2 units3 convert3 units4 oz 128 gal 32 qt 1.00 oz pt 8 gal 2 qt 1.00 pt qt 4 gal 1 qt 1.00 qt gal 1 gal 0.25 qt 1.00 gal ozd 16 lbs 16 lbs 1.00 ozd lbs 1 lbs 1 lbs 1.00 lbs_ feet 1 ft1 1 ft2 1.00 feet zz 1 zz 1 zz 1 zz Microsoft Excel 0 05/20/2026 Microsoft Excel Function Vba Print Area set print area Crop Production Sub SetMultiplePrintAreas() ActiveSheet.PageSetup.PrintArea = "" ' Separate multiple ranges with a comma inside the string ActiveSheet.PageSetup.PrintArea = "A1:C10,E1:G10,I1:K10" End Sub Sub ClearPrintArea() ActiveSheet.PageSetup.PrintArea = "" end sub Sub ClearAllPrintAreas() Dim ws As Worksheet For Each ws In ThisWorkbook.Worksheets ws.PageSetup.PrintArea = "" Next ws End Sub Microsoft Excel 0 05/29/2026 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 1 05/05/2026 Php Function Back Up Of Mystuff.php mystuff Vps & Shared Servers VPS SERVER ?php // PHP 7.0 conversion Mysql class mysqli_swd{ var $num=0; var $id=0; var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype=""; var $data; var $data1=array(); var $row=array(); var $fields=0; var $insertoption=""; var $quickarray=true; function multipleRecs($value){ if($value==true)$value=false; else $value=true; $this->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; //if (strpos($sql,"nsert into")==1) { echo "---".$query; exit; } try { $result=mysqli_query($connection,$query); //echo "query successfully to MariaDB using MySQLi!"; } catch (mysqli_sql_exception $e) { // Handle query failures gracefully echo ("query failed: " . $e->getMessage()); if($debug==true){ echo "Error:".$query."";exit; } } //end try $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; //if($AC==""){echo $AC."==".$query;exit; } 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 swd_mysql($server, $user,$password,$database){ global $appid; mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); try { // Establish the connection $connection = mysqli_connect($server,$user,$password,$database,3306); //echo "Connected successfully to MariaDB using MySQLi!"; } catch (mysqli_sql_exception $e) { // Handle connection failures gracefully die("Connection failed: " . $e->getMessage()); } return $connection; } session_start(); include("config.php");//$bypass=true; $connection = swd_mysql($server,$user,$password,$database); if($pageLevel=='')$pageLevel=3; ? OLD SERVER ?php // PHP 7.0 conversion Mysql class mysqli_swd{ var $num=0; var $id=0; var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype=""; var $data; var $data1=array(); var $row=array(); var $fields=0; var $insertoption=""; var $quickarray=true; function multipleRecs($value){ if($value==true)$value=false; else $value=true; $this->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; //if (strpos($sql,"nsert into")==1) { echo "---".$query; exit; } $result=mysqli_query($connection,$query); // or die(mysqli_error().' from '.$query); //;mysql_query($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; //if($AC==""){echo $AC."==".$query;exit; } 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 swd_mysql($server, $user,$password,$database){ global $appid; $connection = mysqli_connect($server, $user,$password); mysqli_select_db($connection, $database); if (!$connection){ echo 'Error: Could not connect to Mysqli database. Please try again later.'; exit; } return $connection; } session_start(); include("config.php");//$bypass=true; $connection = swd_mysql($server, $user,$password,$database); if($pageLevel=='')$pageLevel=3; ? Php 1 07/14/2026 Php Customizing Code That Is Being Debugged backup debug testing Php Script file_FOLDER."/$file"; $PATH2=$PATH1; if(file_exists(WPWD.$PATH1)){ $ext = pathinfo($PATH1, PATHINFO_EXTENSION);$swdtest=false; switch($ext){ case '.mp4': $dis.="n";$swdtest=true; break; case '.pdf': $dis.="$file";$swdtest=true; //$dimen=sizepicture($PATH1,75,75); //$dis.="";$swdtest=true; break; case '.gif': case '.jpg': case '.png': $dimen=sizepicture($PATH1,75,75); $dis.="";$swdtest=true; //$PATH2=str_replace(".".$ext,".png",$PATH1); if(file_exists(WPWD.$PATH2)){$dimen=sizepicture($PATH2,300,300);$file="";} //$PATH2=str_replace(".".$ext,".jpg",$PATH1); If(file_exists(WPWD.$PATH2)){$dimen=sizepicture($PATH2,300,300);$file="";} ///$dis.="$file";$swdtest=true; break; case default: $dis.="$file; break; } }else $dis.="$file"; ================================================== Php 1 05/18/2026 Php Files Copy A File In PHP file copy Copying Files To copy a file in PHP, you use the built-in copy() function. This function takes the source file path and the destination path as arguments and returns true on success or false on failure. Syntax php bool copy(string $source, string $destination, resource $context = null): bool $source (Required): The path to the original file you want to copy. $destination (Required): The path, including the new filename, where the file will be copied. If the destination file already exists, it will be overwritten. $context (Optional): A context resource created with stream_context_create(). Example Here is a basic example of how to copy a file and check the result: =?php // Specify the source file path $source_file = 'path/to/original_file.txt'; // Specify the destination path, including the new filename $destination_file = 'path/to/new_directory/copied_file.txt'; // Use the copy() function if (copy($source_file, $destination_file)) { echo "File copied successfully!"; } else { echo "Something went wrong while copying the file. Check permissions."; } ?= Important Considerations File Permissions: The PHP script must have permission to read the source file and write to the destination directory. Permission errors are a common reason for failure. Destination Path: The destination must include the new filename, not just the directory name. For example, you need .../new_dir/copied.txt, not just .../new_dir/. Error Handling: The copy() function returns a boolean, so it is important to use an if statement to handle potential errors gracefully. Moving vs. Copying: If you want to move a file (delete the original after copying), use the rename() function instead. Uploaded Files: For handling files uploaded via an HTML form (HTTP POST method), you must use the specialized move_uploaded_file() function, not copy(). Php 1 05/05/2026 Php Files Create Directory File List After Database Backup file list database backup example Backup Sites %s', escapeshellarg($host), escapeshellarg($user), escapeshellarg($pass), escapeshellarg($dbname), escapeshellarg($filename) ); $output = []; $result_code = 0; // Execute the command exec($command, $output, $result_code); if ($result_code === 0) { return "Database dump successful."; } else { return "Error creating database dump. Command output: " . implode("n", $output); } } // Configuration variables //$server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accounting'; $DBHOST = $server; $DBUSER = $user; $DBPASS = $password; $DBNAME = $database; $BACKUP_FILE = 'backup_'.$database. date('Y-m-d_H-i-s') . '.sql'; // Run the backup function $message = backup_mysql_database($DBHOST, $DBUSER, $DBPASS, $DBNAME, $BACKUP_FILE); echo $message; $newname=str_replace(".sql",".txt",$BACKUP_FILE); rename($BACKUP_FILE, $newname); $current_dir="./"; $dir = opendir($current_dir); echo "directory=".$current_dir; while ($file = readdir($dir)){ $fullpath=$current_dir.$file; $filedate=date('Y-m-j', filemtime($fullpath)); $fsize=filesize($fullpath)/1000; $fsize=(int)$fsize;$fsize=$fsize/1000; $bulletin[]=$file."@".$fsize."@".$filedate; } closedir($dir); $count1=count($bulletin); sort($bulletin); reset($bulletin); //if($DI=='')ECHO "?DI="; $dis.="Files(by Name)"; //while (list ($key, $val) = each ($bulletin)){ foreach($bulletin as $key=>$val) { //} while (list ($key, $val) = each ($bulletin)){ $mark=explode('@',$val); $count+=1; if($mark[0]=="index.php")continue; if(strpos($mark[0],".")==0) $dis.="".$mark[0]."Directory"; else $dis.="".$mark[0]."(".$mark[1].") MB ".$mark[2].""; //if($count==(int)($count1/2)) echo " "; } $dis.=""; echo $dis; ?> Php 1 05/05/2026 Php Function Create Lionks Backup links $PDS_ Developer function CreateLinks($inx,$num,$range){ global $ALPHA; global $VIEW;global $txWhere;global $PDS_; $SubCat="&PDS_=";if($PDS_>0)$SubCat="&PDS_=".$PDS_; echo "ododo=".$PDS_; $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; } Php 1 05/05/2026 Php Function Deletefile.php delete exist file switch Backup File Info "; switch($AC){ case 1: if(file_exists($upfile))unlink($upfile); $upfile=str_replace("/thm/","/",$upfile); if(file_exists($upfile))unlink($upfile); echo "File is Deleted. Please close this window"; break; default: if(file_exists($upfile)){ if(file_exists($upfile)){ if(mime_content_type($upfile)=="image/jpeg"){ $dimen=sizepicture($upfile,300,400); echo " "; }else{ echo $upfile.""; } echo "If not, just close this window"; } }else echo "This file does not exist. Close this window."; break; } ?> Using single line of code switch ($variable) { case '1': case '2': case '3': // Code to run if $variable is '1', '2', or '3' echo "Value is 1, 2, or 3"; break; default: // Optional default action echo "Other value"; break; } Php 1 05/05/2026 Php Language Finds The Position Of The Last Occurrence Of A String search find Developer PHP strrpos() Function Example Find the position of the last occurrence of "php" inside the string: echo strrpos("I love php, I love php too!","php"); ?> Definition and Usage The strrpos() function finds the position of the last occurrence of a string inside another string. Note: The strrpos() function is case-sensitive. Related functions: strpos() - Finds the position of the first occurrence of a string inside another string (case-sensitive) stripos() - Finds the position of the first occurrence of a string inside another string (case-insensitive) strripos() - Finds the position of the last occurrence of a string inside another string (case-insensitive) Syntax Php 1 05/05/2026 Php Database Inserting Multiple Rows Into A Table insert multiple records Database Inserting Multiple Rows into a Table One can also insert multiple rows into a table with a single insert query at once. To do this, include multiple lists of column values within the INSERT INTO statement, where column values for each row must be enclosed within parentheses and separated by a comma. Creating table using MySQLi Object-oriented Procedure : connect_error); } $sql = "INSERT INTO mytable (first_name, last_name, age) VALUES('raj', 'sharma', '15'), ('kapil', 'verma', '42'), ('monty', 'singh', '29'), ('arjun', 'patel', '32') "; if ($mysqli->query($sql) == = true) { echo "Records inserted successfully."; } else { echo "ERROR: Could not able to execute $sql. " .$mysqli->error; } $mysqli->close(); ? > Php 1 05/05/2026 Php Language Loops In Php loops do while Php Set $i = 8, then print $i as long as $i is less than 6: $i = 8; do { echo $i; $i++; } while ($i < 6); The code will be executed once, even if the condition is never true. Print $i as long as $i is less than 6: $i = 1; while ($i < 6) { echo $i; $i++; } Stop the loop when $i is 3: $i = 1; while ($i < 6) { if ($i == 3) break; echo $i; $i++; } Stop, and jump to the next iteration if $i is 3: $i = 0; while ($i < 6) { $i++; if ($i == 3) continue; echo $i; } Count to 100 by tens: $i = 0; while ($i < 100) { $i+=10; echo $i ""; } Php 1 05/05/2026 Php Ini Php Ini Partial ini Filter List Textarea disable_functions no value no value display_errors Off Off display_startup_errors Off Off doc_root no value no value docref_ext no value no value docref_root no value no value enable_dl Off Off enable_post_data_reading On On error_append_string no value no value error_log error_log error_log error_prepend_string no value no value error_reporting 22519 22519 expose_php Off Off extension_dir /opt/cpanel/ea-php80/root/usr/lib64/php/modules /opt/cpanel/ea-php80/root/usr/lib64/php/modules file_uploads On On hard_timeout 2 2 highlight.comment #FF8000 #FF8000 highlight.default #0000BB #0000BB highlight.html #000000 #000000 highlight.keyword #007700 #007700 highlight.string #DD0000 #DD0000 html_errors On On ignore_repeated_errors Off Off ignore_repeated_source Off Off ignore_user_abort Off Off implicit_flush Off Off include_path .:/opt/cpanel/ea-php80/root/usr/share/pear .:/opt/cpanel/ea-php80/root/usr/share/pear input_encoding no value no value internal_encoding no value no value log_errors On On log_errors_max_len 1024 1024 mail.add_x_header On On mail.force_extra_parameters no value no value mail.log no value no value max_execution_time 60 60 max_file_uploads 20 20 max_input_nesting_level 64 64 max_input_time 60 60 max_input_vars 1000 1000 max_multipart_body_parts -1 -1 memory_limit 512M 512M open_basedir no value no value output_buffering no value no value output_encoding no value no value output_handler no value no value post_max_size 516M 516M precision 14 14 Php 1 05/05/2026 Php Language PHP Language random Generate randoms "); echo(rand() . ""); echo(rand(10,100)); ?> Definition and Usage The rand() function generates a random integer. Example tip: If you want a random integer between 10 and 100 (inclusive), use rand (10,100). Tip: As of PHP 7.1, the rand() function has been an alias of the mt_rand() function. =====random strings =========== function generateRandomString($length = 10) { $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $charactersLength = strlen($characters); $randomString = ''; for ($i = 0; $i < $length; $i++) { $randomString .= $characters[random_int(0, $charactersLength - 1)]; } return $randomString; } Output the random string with the call below: // Echo the random string. echo generateRandomString(); // Optionally, you can give it a desired string length. echo generateRandomString(64); Php 1 05/05/2026 Php Formatting Remove Ascii > 127 ascii remove delete String Cleanup Php 1 05/05/2026 Php Function SESSION VARIABLES NOT WORKING DEBUG $_SESSION HEMPDBASE " size="20" maxlength="50" required> Php 1 05/05/2026 WP Plugin Function Wpfuction wpfunction video Swd Plugins // PHP 7.0 conversion Mysql class mysqli_swd{ // global $wpdb; var $num=0; var $id=0; var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype=""; var $data; var $data1=array(); var $row=array(); var $fields=0; var $insertoption=""; var $quickarray=true; function multipleRecs($value){ if($value==true)$value=false; else $value=true; $this->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){ echo "You definitely Botched the Output requirement";exit; //echo $query;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 MovieCall($file){ $poster=str_replace(".mp4",".png",$file); $var="".MOVIE_DIRECTORY.$file.""; //$var="/JesusHumor/wp-content/uploads/movies/".$file.""; return $var; } 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)," ",$var1); $var1=str_replace(chr(32).chr(32)," ",$var1); $var1=str_replace(chr(13),'',$var1); if(strlen($var1)>100 && $prn==''){ // $var1=substr($var1,0,40).'....'; //$var1="".$var1.""; } //if($var1=='')$var1=' '; 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= date('Y-m-d H:i:s',strtotime($date1)); return $date1; } function retrieveSettings($appid){ $bkup=array(); $savedSessions= json_decode(stripslashes($_COOKIE["SESSIONARRAY".$appid])); $savedPosts= json_decode(stripslashes($_COOKIE["POSTARRAY".$appid])); $savedGets= json_decode(stripslashes($_COOKIE["GETARRAY".$appid])); if(gettype($savedSessions)=='array' || gettype($savedSessions)=='object'){ foreach($savedSessions as $k=>$value) { if($value!="")$bkup[$k]=$value; } } if(gettype($savedPosts)=='array' || gettype($savedPosts)=='object'){ foreach($savedPosts as $k=>$value) { if($value!="")$bkup[$k]=$value; } } if(gettype($savedGets)=='array' || gettype($savedGets)=='object'){ foreach($savedGets as $k=>$value) { if($value!="")$bkup[$k]=$value; } } return $bkup; } function checkValue($value1,$value2){ if($value1=="")$value1=$value2; return $value1; } function comboResultSet($fieldidx,$fieldx,$tablex){ //global $r;global $appid; global $connection; global $wpdb; $r=new mysqli_swd; $settings=array(); $WHERE=""; if(function_exists("createConditions")){ $settings=createConditions($tablex); if($settings[0]!="" )$WHERE=$settings[0]; if($settings[1]!="" )$fieldx=$settings[1]; } $sql="SELECT $fieldidx,$fieldx FROM $tablex $WHERE ORDER BY $fieldx";//echo $sql;exit; $r->dbsql($sql); return $r->data; } function comboResultSet2($tablex,$fieldidx,$valuex){ $r=new mysqli_swd;//global $r; $sql="SELECT * FROM $tablex WHERE $fieldidx = '$valuex'";$r->dbsql($sql); return $r->data1; } function reportArray($result,$fieldxid,$fieldx){ $r=new mysqli_swd; mysqli_data_seek($result,0); For ($i=0; $i< mysqli_num_rows($result); $i++){ $row=$r->dbRow($result); $xid=replacepunctuation($row["$fieldxid"]); $x=replacepunctuation($row["$fieldx"]); $createdArray[$xid]=$x; } return $createdArray; } function reportArray2($fieldx){ $rowtemp=explode(",",$fieldx[2]); $row=array(); foreach($rowtemp as $k=>$value) { $row[$value]=$value; } return $row; } function reportCombo($result,$fieldxid,$fieldx,$selectx){ $r=new mysqli_swd; mysqli_data_seek($result,0); For ($i=0; $i< mysqli_num_rows($result); $i++){ $row=$r->dbRow($result); $xid=replacepunctuation($row["$fieldxid"]); $x=replacepunctuation($row["$fieldx"]); if ($xid == $selectx){ $dis1 .= "$xn"; } else{ $dis1 .= "$xn"; } } return $dis1; } function reportCombo2($result,$selectx){ foreach($result as $k=>$value) { $tmp="";if ($value == $selectx){ $tmp="selected"; } $dis1 .= "$valuen"; } return $dis1; } function reportArrayToCombo($result,$selectx){ foreach($result as $k=>$value) { if ($k == $selectx){ $dis1 .= "$valuen"; } else{ $dis1 .= "$valuen"; } } return $dis1; } function CreateLinks($inx,$num,$range){ global $ALPHA; global $VIEW;global $txWhere;global $PDS_; $SubCat="&PDS_=";if($PDS_>0)$SubCat="&PDS_=".$PDS_; $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; } define('MOVIE_DIRECTORY', '/wp-content/uploads/movies/'); $allowed_tags = array( 'video' => array( 'controls' => true, 'autoplay' => true, 'loop' => true, 'muted' => true, 'poster' => true, 'preload' => true, 'width' => true, 'height' => true ), 'source' => array( 'src' => true, 'type' => true ) ); wp_kses( $video_html_from_db, $allowed_tags ); ?> WP Plugin 1 07/06/2026 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 2 05/05/2026 Css Formatting ??????Keeping Place Holders placeholder Persistent background text Css 2 05/05/2026 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. office 365 asks for cell range. Remove "I have headers" checkmark. You can uncheck the headers box and it will remove the headers it creates. Delete the cells and move the cells up 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 2 05/05/2026 WP Function Am I Logged Into Wordpress logged in Wp Admin AI Overview WordPress knows you are logged in by storing hashed, secure cookies in your browser upon successful authentication. When you navigate to a new page, WordPress checks for the wordpress_logged_in_[hash] cookie to identify who you are, making it stateless rather than using server-side PHP sessions. Authentication Cookie: After login, WordPress sets a wordpress_logged_in_[hash] cookie that lasts for a specific duration, storing your username and authentication details. Verification: On every admin page request, WordPress checks wp-includes/pluggable.php (using wp_validate_auth_cookie) to verify this cookie, ensuring you are logged in. Without Cookies: If cookies are disabled or expired, WordPress will not recognize you and will request login credentials again. No Active Monitoring: By default, WordPress does not track active sessions in the database; it only validates the cookies sent by your browser. Plugins are required to see "who is online" WP 2 05/05/2026 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 2 05/05/2026 _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 2 05/05/2026 _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 2 05/05/2026 _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 2 05/05/2026 _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 2 05/05/2026 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 2 05/05/2026 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 2 05/05/2026 Windows >=10 Formatting Change Windows Date Format time date format Windows 11 Control panel Date And time Button Change date and time Link "Change calendar settings Select "English United states" Windows >=10 2 05/05/2026 Windows >=10 Formatting Check Disk Chkdsk check disk bad Hard Drives What is CHKDSK Check Disk (CHKDSK) is a Windows built-in tool that scans your hard drive for corrupted files, repairs bugs and errors, and cleans up disk space to maintain your PC’s health. Use this tool when your PC is slow due to an almost full or failing hard drive. CHKDSK commands: chkdsk - Scans the hard drive for bugs or errors with no attempts of repair. chkdsk [drive letter] - Replace “[drive letter]” to specify the internal or external drive to scan. For example, chkdsk C: chkdsk /f - Attempts to fix bugs or errors while scanning the hard drive. chkdsk /r - Attempts to fix sectors on the hard drive to make them readable in the file system. chkdsk /x - Disconnects a drive to scan and fix it. chkdsk /f /r /x - Scans the file system and its sectors, and fixes any errors found. If needed, this also disconnects the drive. Run CHKDSK from File Explorer If there only a few bad sectors on your drive, you can run CHKDSK command and format the drive to repair those bad sectors: 1. Press the Windows key and type cmd. 2. Right-click "Command Prompt" and choose "Run as administrator". 3. Type chkdsk E: /f /r /x and hit Windows >=10 2 05/05/2026 _Misc Software Setup Check Gmail In Outlook Manually gmail Outlook Setup To check your Gmail in Outlook manually, you'll need to configure a manual IMAP setup. This process involves adding your Gmail account to Outlook using specific server settings and potentially an app password if you have two-factor authentication enabled. Here's a step-by-step guide: 1. Enable IMAP in Gmail: Go to your Gmail settings (gear icon in the upper right corner). Select "See all settings". Click on the "Forwarding and POP/IMAP" tab. Under IMAP access, select "Enable IMAP" and save changes. 2. Set up Gmail in Outlook (Manually): Open Outlook and go to "File" > "Add Account". Select "Manual setup or additional server types" and click "Next". Choose "IMAP" and click "Next". Enter your Gmail address. Fill in the IMAP and SMTP server settings: Incoming mail server: imap.gmail.com. Outgoing mail server: smtp.gmail.com. Username: Your full Gmail email address. Password: Your Gmail password (or an app password if using two-factor authentication). Click "More Settings" and then "Outgoing Server". Check the box "My outgoing server (SMTP) requires authentication". Go to "Advanced" and set the following port numbers: Incoming server (IMAP): 993. Outgoing server (SMTP): 465 or 587. Select "Use the following type of encrypted connection: SSL" for both incoming and outgoing servers. Click "OK" and then "Next". Click "Finish" to complete the process. 3. Outlook should now be able to access your Gmail inbox. _Misc Software 2 05/05/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 2 05/05/2026 _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 2 05/05/2026 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 2 05/05/2026 Vb.net Setup Compiling Error Locations errors optimization Locating Bug Fixes optimize error Project- project properties (located towards bottom) Compile -towards bottom "Advanced Compile Options" uncheck "Enable Optimizations" ============ Resolving the 'Microsoft.Jet.OLEDB.4.0' Provider Not Registered Er… 1 2 3 The error Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine typically occurs when you try to use the Microsoft Jet OLEDB 4.0 driver on a 64-bit operating system. This driver is not compatible with 64-bit systems, leading to this error. Example string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;"; using (OleDbConnection connection = new OleDbConnection(connectionString)) { connection.Open(); // Perform database operations } Solution 1: Change Project Build Configuration One common solution is to change the build configuration of your project to target x86 (32-bit) instead of Any CPU or x64. Steps: Open your project in Visual Studio. Go to Project Properties > Build. Change the Platform target to x86. Rebuild your project. Solution 2: Use Microsoft.ACE.OLEDB.12.0 Another solution is to use the Microsoft Access Database Engine, which provides a 64-bit compatible driver. Example: string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\mydatabase.accdb;"; using (OleDbConnection connection = new OleDbConnection(connectionString)) { connection.Open(); // Perform database operations } Solution 3: Enable 32-bit Applications in IIS If you are running a web application, you can enable 32-bit applications in IIS 3 . Steps: Open IIS Manager. Select the application pool your application is using. Click on Advanced Settings. Set Enable 32-Bit Applications to True. By following these steps, you can resolve the Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine error and ensure your application runs smoothly on both 32-bit and 64-bit systems. Learn more: 1 - stackoverflow.com 2 - answers.microsoft.com 3 - stackoverflow.com Resolving the 'Microsoft.Jet.OLEDB.4.0' Provider Not Registered Er… 1 2 3 The error Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine typically occurs when you try to use the Microsoft Jet OLEDB 4.0 driver on a 64-bit operating system. This driver is not compatible with 64-bit systems, leading to this error. Example string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;"; using (OleDbConnection connection = new OleDbConnection(connectionString)) { connection.Open(); // Perform database operations } Solution 1: Change Project Build Configuration One common solution is to change the build configuration of your project to target x86 (32-bit) instead of Any CPU or x64. Steps: Open your project in Visual Studio. Go to Project Properties > Build. Change the Platform target to x86. Rebuild your project. Solution 2: Use Microsoft.ACE.OLEDB.12.0 Another solution is to use the Microsoft Access Database Engine, which provides a 64-bit compatible driver. Example: string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\mydatabase.accdb;"; using (OleDbConnection connection = new OleDbConnection(connectionString)) { connection.Open(); // Perform database operations } Solution 3: Enable 32-bit Applications in IIS If you are running a web application, you can enable 32-bit applications in IIS 3 . Steps: Open IIS Manager. Select the application pool your application is using. Click on Advanced Settings. Set Enable 32-Bit Applications to True. By following these steps, you can resolve the Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine error and ensure your application runs smoothly on both 32-bit and 64-bit systems. Learn more: 1 - stackoverflow.com 2 - answers.microsoft.com 3 - stackoverflow.com Vb.net 2 05/05/2026 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 2 05/05/2026 Vb.net Customizing Control Window State Of App maximize all programs minimize Outlook Mail Cleaner automatically minimize a window in VB.NET, you can set the WindowState property of the form to FormWindowState.Minimized. This can be done in various scenarios, such as when the form loads, in response to a user action (like clicking a button), or based on a timer. 1. Minimizing the Current Form: To minimize the form where the code is executed: Code Me.WindowState = FormWindowState.Minimized This line of code can be placed within an event handler, such as a button click event or a form load event. 2. Minimizing All Active Forms: To minimize all forms currently open in your application: Code For Each frm As Form In Application.OpenForms frm.WindowState = FormWindowState.Minimized Next frm This code iterates through the Application.OpenForms collection and sets the WindowState of each form to Minimized. 3. Minimizing an External Application Window (Advanced): Minimizing an external application's window requires using Windows API functions. This involves obtaining the window handle of the target application and then using functions like ShowWindow to manipulate its state. This is a more complex approach and typically involves PInvoke to call unmanaged code. Example for a specific event: To minimize the form when a specific button is clicked: Code Private Sub btnMinimize_Click(sender As Object, e As EventArgs) Handles btnMinimize.Click Me.WindowState = FormWindowState.Minimized End Sub Maximize all apps Imports System.Runtime.InteropServices Module ModConnection ' Import the ShowWindow function from user32.dll Public Function ShowWindow(hWnd As IntPtr, nCmdShow As Integer) As Boolean End Function ' Constants for ShowWindow Public Const SW_SHOWNORMAL = 1 Public Const SW_SHOWMAXIMIZED = 3 Public Const SW_SHOWMINIMIZED = 6 your function calls Private Sub btProcess_Click(sender As Object, e As EventArgs) Handles btProcess.Click File1.Items.Clear() For Each p In Process.GetProcesses If p.MainWindowTitle <> "" Then 'File1.Items.Add(p.MainWindowTitle + "..running") File1.Items.Add("[" + p.ProcessName + "=" + p.MainWindowTitle + "]") ShowWindow(p.MainWindowHandle, SW_SHOWMAXIMIZED) End If Next End Sub Vb.net 2 05/05/2026 Vb.net Files Create A Copy Or Move A File In A Different Directory copy files move files File Management ' Copy the file to a new location without overwriting existing file. My.Computer.FileSystem.CopyFile( "C:UserFilesTestFilestestFile.txt", "C:UserFilesTestFiles2testFile.txt") ' Copy the file to a new folder, overwriting existing file. My.Computer.FileSystem.CopyFile( "C:UserFilesTestFilestestFile.txt", "C:UserFilesTestFiles2testFile.txt", Microsoft.VisualBasic.FileIO.UIOption.AllDialogs, Microsoft.VisualBasic.FileIO.UICancelOption.DoNothing) ' Copy the file to a new folder and rename it. My.Computer.FileSystem.CopyFile( "C:UserFilesTestFilestestFile.txt", "C:UserFilesTestFiles2NewFile.txt", Microsoft.VisualBasic.FileIO.UIOption.AllDialogs, Microsoft.VisualBasic.FileIO.UICancelOption.DoNothing) ================== overwrite defaults to false need to add ",true" inside the function The My.Computer.FileSystem.MoveFile method can be used to move a file to another folder. If the target structure does not exist, it will be created. To move a file Use the MoveFile method to move the file, specifying the file name and location for both the source file and the target file. This example moves the file named test.txt from TestDir1 to TestDir2. Note that the target file name is specified even though it is the same as the source file name. VB Copy My.Computer.FileSystem.MoveFile("C:TestDir1test.txt", "C:TestDir2test.txt") To move a file and rename it Use the MoveFile method to move the file, specifying the source file name and location, the target location, and the new name at the target location. This example moves the file named test.txt from TestDir1 to TestDir2 and renames it nexttest.txt. VB Copy My.Computer.FileSystem.MoveFile("C:TestDir1test.txt", "C:TestDir2nexttest.txt", FileIO.UIOption.AllDialogs, FileIO.UICancelOption.ThrowException) Vb.net 2 05/05/2026 _Misc Software Ini Creating A .user.ini File For Linux user ini Developer ; cPanel-generated php ini directives, do not edit ; Manual editing of this file may result in unexpected behavior. ; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) ; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) [PHP] display_errors = Off max_execution_time = 600 max_input_time = 600 max_input_vars = 5000 memory_limit = 512M post_max_size = 516M session.gc_maxlifetime = 1440 session.save_path = "/var/cpanel/php/sessions/ea-php81" upload_max_filesize = 512M zlib.output_compression = Off _Misc Software 2 05/05/2026 Css Formatting CSS Scale Property scale zoom Media Screens The CSS scale property allows you to resize elements by scaling them along the x, y, and z axes. This property is particularly useful for creating responsive designs and animations. The scale property can be defined with one, two, or three values, depending on the dimensions you want to scale. Syntax and Usage The syntax for the scale property is as follows: scale: x-axis y-axis z-axis | initial | inherit; Copy x-axis: Defines the scale factor along the x-axis. y-axis: Defines the scale factor along the y-axis. z-axis: Defines the scale factor along the z-axis. initial: Sets the property to its default value. inherit: Inherits the property from its parent element. Examples Scaling uniformly in both x and y directions: div { scale: 2; } Copy Scaling differently in x and y directions: div { scale: 2 0.5; } Copy Scaling in x, y, and z directions: div { scale: 1 1.5 2; } Copy Alternative: CSS Transform Property An alternative to the scale property is using the CSS transform property with the scale() function. This function allows you to scale elements in 2D or 3D space. For example: div { transform: scale(2); } Copy This will achieve the same effect as scale: 2; but is part of the broader transform property. Important Considerations Accessibility: Scaling and zooming animations can trigger migraines for some users. It's advisable to provide a control to turn off animations or use the prefers-reduced-motion media feature to disable animations for users who have reduced motion preferences. Child Elements: The scale property affects all descendant elements, meaning that if you scale a parent element, all its children will be scaled as well. Layout Flow: Unlike the scale() function in the transform property, the scale property does not cause other elements to reflow around it. By understanding and utilizing the CSS scale property, you can create dynamic and responsive web designs that enhance user experience. Whether you choose to use the scale property directly or the transform property with the scale() function, both methods offer flexibility and control over element sizing. Css 2 05/05/2026