Related resources for .exe
  • Debugging Azure DevOps Pipelines with System.Debug10/26/2024 6:13:32 AM. This article explores essential techniques for Azure DevOps pipeline error diagnosis. It discusses how to enable diagnostic logs for individual and all pipeline executions using the "Enable Syste
  • Compiling Multiple Files to Build an Application10/22/2024 10:46:04 AM. This article explains how to compile multiple C files into a single executable using the C compiler. It covers two approaches: compiling multiple files with the cc command or using the #include direct
  • Searching Items in Sitecore without Solr Indexes10/22/2024 7:24:39 AM. In Sitecore, we often need to perform searches for items without using Solr. This article explores a recursive search approach using the ManualSearch class to retrieve specific items or lists from the
  • iPhone Memory Leaks Tracking and Use of Instruments10/3/2024 11:41:57 AM. This article explores iPhone memory leaks, detailing how to track them using Instruments and NSZombie. It explains what memory leaks are, their causes, and the consequences of losing track of allocate
  • Understanding Service, Factory, And Provider10/3/2024 11:38:34 AM. AngularJS provides three methods for creating reusable utilities: Service, Factory, and Provider. All serve the same purpose but differ in implementation. Services are singletons, Factories return new
  • How To Execute SQL In SharePoint 2013 And Office 365 Using Nintex WorkFlows9/27/2024 10:13:52 AM. This article guides you through executing SQL in SharePoint 2013 and Office 365 using Nintex Workflows. It covers creating a Dev Testing list, adding the "Execute SQL" action, and configurin
  • What is Indexer in C#?9/13/2024 5:39:00 AM. An indexer in C# allows objects to be indexed like arrays, enabling access to elements using an index. It’s defined with this keyword and can be used to encapsulate data access in a class or struct. I
  • Automated Way for PBIX to PBIP File Conversion9/4/2024 6:06:27 AM. To automate PBIX to PBIP conversion, install the PowerShell module PBIXtoPBIP_PBITConversion using Install-Module -Name PBIXtoPBIP_PBITConversion. Use PBIXtoPBIP_PBITConversion -PBIXFilePath "&lt
  • What Is IndexedDb And How To Use It?9/2/2024 5:08:43 AM. IndexedDB is a NoSQL database API provided by browsers for managing large amounts of structured data. It allows developers to store and retrieve data, supporting offline capabilities in web applicatio
  • How To Perform Click Operation Using JavaScript Executor In Selenium Webdriver8/1/2024 8:46:23 AM. This article explores performing click operations on buttons, radio buttons, checkboxes, and links using JavaScript in Selenium WebDriver. It covers two methods: using JavaScript exclusively for findi
  • Intra-process vs Inter-process Synchronization in C#7/31/2024 8:30:02 AM. In C#, intra-process synchronization involves managing concurrency within a single process using tools like lock, Mutex, and Semaphore. Inter-process synchronization deals with coordination between se
  • How To Perform Scroll Operations Using JavaScript Executor In Selenium WebDriver7/30/2024 6:11:34 AM. Learn how to perform scroll operations using JavaScript Executor in Selenium WebDriver. This guide covers integrating JavaScript with Selenium to handle dynamic web elements and complex scrolling scen
  • How To Highlight Web Elements Using JavascriptExecutor In Selenium WebDriver7/30/2024 6:03:17 AM. Learn how to highlight web elements in Selenium WebDriver using JavascriptExecutor. This guide covers how to use JavaScript to draw attention to elements on a webpage during automated testing, making
  • What Is Javascript Executor In Selenium WebDriver7/30/2024 3:44:53 AM. JavaScriptExecutor in Selenium WebDriver allows executing JavaScript code within a web browser. It's useful when WebDriver’s native commands fail, such as manipulating web elements or triggering b
  • How To Enter Text Into A Textbox Using JavascriptExecutor In Selenium WebDriver7/30/2024 3:44:26 AM. This guide covers the step-by-step process for utilizing JavaScriptExecutor to interact with web elements, automate text entry, and enhance your Selenium automation scripts. Perfect for improving you
  • Executing Commands with ADO.NET7/22/2024 10:02:34 AM. Explore how to use ADO.NET’s SqlCommand class for executing SQL queries and stored procedures in .NET applications. This guide covers setting up SqlConnection, using methods like ExecuteNonQuery, Exec
  • Setting Up Your First ADO.NET Project7/22/2024 7:29:17 AM. ADO.NET is a set of classes that expose data access services for .NET Framework programmers. It provides a rich set of components for creating distributed, data-sharing applications. This guide will w
  • Understanding the SQL Query Execution Order7/22/2024 4:41:19 AM. SQL (Structured Query Language) is essential for interacting with relational databases, and mastering its intricacies can significantly enhance your data querying skills. One of the fundamental aspect
  • Task Scheduling with System.Threading.Timer in .NET7/21/2024 4:05:41 AM. Efficient task scheduling is essential for many applications, whether you're building background services, automated tasks, or periodic data processing. In .NET, the System.Threading.Timer class p
  • SQL: Writing Efficient Queries7/10/2024 12:27:40 AM. Learn how to optimize SQL queries for better performance with our guide on "SQL: Writing Efficient Queries." Discover techniques for improving query speed, such as indexing strategies, query
  • Data Skew Problem and Solution in PySpark6/26/2024 4:53:53 AM. Explore the nuances of handling data skew issues in PySpark with effective strategies and solutions. Discover how to optimize performance through smart partitioning, efficient shuffle operations, and
  • Caching Strategies in Angular and .NET Core6/24/2024 5:49:09 AM. Caching enhances web application performance and scalability. In Angular, use HTTP interceptors, service workers, local storage, or IndexedDB for client-side caching. In .NET Core, leverage in-memory
  • LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing6/17/2024 5:09:08 AM. LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, whi
  • Understanding Indexes in PostgreSQL6/13/2024 5:30:03 AM. Indexes are a fundamental aspect of database management systems (DBMS) like PostgreSQL. They enhance the performance of queries by allowing the database to find rows more efficiently.
  • SQL Query Execution Understanding Process and Performance6/11/2024 11:37:51 AM. Understanding the SQL query execution order—from FROM and JOIN to WHERE, GROUP BY, HAVING, SELECT, ORDER BY, and LIMIT/OFFSET—is crucial for optimizing queries. Key techniques include indexing, optimi
  • Comprehend MongoDB TTL Index Completely6/11/2024 10:02:49 AM. This article explores MongoDB's TTL (Time to Live) indexes, a feature for automatically deleting documents from a collection after a specified time. TTL indexes are crucial for managing transient
  • Create Python Flask Web Application And Display SQL Records In Browser6/7/2024 10:41:42 AM. This tutorial guides you through creating a Python Flask web application to display SQL Server table records in a web browser. Starting with setting up a Flask web project in Visual Studio, you'll
  • Executing Dynamic SQL in SQL Server6/7/2024 4:33:22 AM. Dynamic SQL in SQL Server allows constructing and executing SQL statements at runtime, offering flexibility for complex queries. Learn its execution methods (EXEC and sp_executesql), advantages, limit
  • Execute SQL Server Stored Procedure With User Parameter In Power BI6/7/2024 4:17:56 AM. Sometimes there is a situation in which we need to get data by consuming SQL Server stored procedure. SQL Server stored procedure has parameters which we need to pass dynamically.
  • IQueryable vs IEnumerable 6/6/2024 7:48:45 AM. IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and opt
  • The 3D Concept: Discovery, Development, Delivery6/6/2024 4:41:19 AM. 3D Concept Discovery, Development, and Delivery encompasses a comprehensive framework for innovation and product lifecycle. Discovery involves research, ideation, and exploration. Development focuses
  • Code Execution Process6/5/2024 5:37:38 AM. The code execution process involves compilation or interpretation, generating machine code or bytecode, loading into memory, and executing instructions. It includes steps like lexical analysis, parsin
  • Data Access Layer to execute Stored Procedures6/5/2024 5:31:47 AM. This article explains about executing a single stored procedure or batch of stored procedures from the application layer. As Data access layer completely decoupled from Application layer we just need
  • Executing Assembly Code in C#6/3/2024 10:10:02 AM. Learn how to integrate hardcore assembly code into managed .NET code using a VC++ DLL as an intermediary, enabling faster execution and better control over hardware. This article illustrates invoking
  • Mastering Technical Project Management: Strategies for Success6/3/2024 9:41:18 AM. Mastering Technical Project Management: Strategies for Success" delves into effective planning, execution, and leadership in technical projects. It covers tools, best practices, and risk manageme
  • Create Impactful Project Timelines Milestones for Entrepreneurs6/3/2024 6:26:51 AM. Creating Impactful Project Timelines and Milestones as an Entrepreneur" focuses on strategic planning for entrepreneurs to achieve their goals. It emphasizes setting clear timelines and defining
  • Do While Loop in C#5/30/2024 4:45:42 AM. Do-while loop in C# guarantees execution of code block at least once. Syntax: do { /* Code */ } while (condition);. Steps involve code execution, condition evaluation, loop continuation, and terminati
  • Understanding GeoSpatial Indexing in MongoDB 🌍🔍5/29/2024 5:36:33 AM. This article explores the concept of GeoSpatial indexing in MongoDB, covering its creation process, significance, and real-time examples, all explained in simple language.
  • LINQ Query Syntax vs Method Syntax in Entity Framework5/29/2024 4:39:33 AM. Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Met
  • Performance Tip - For Vs Foreach In Microsoft .NET5/16/2024 8:32:19 AM. Consider loop efficiency: 'for' is faster for arrays, 'for each' for collections. Optimize performance by choosing the right loop type in .NET programming.
  • Introduction To ActionResult Method in MVC5/16/2024 8:30:49 AM. ActionResult in MVC determines the type of response sent to the client. It facilitates rendering views, redirecting, returning JSON or content, and handling file downloads, enhancing the flexibility a
  • Basics of Ngen.exe (Native Image Generator) in .Net5/13/2024 11:49:53 AM. I would like to share the basics of Ngen.exe in .Net, collected from various web resources. I will first try to explain the problem then the solution, Ngen.exe, in simple words.
  • Execute Multiple SQL Files On Single Go in SQL Server5/3/2024 4:52:45 AM. Are you utilizing SQL Server? Are deployments still handled manually by certain teams or DBAs? Is there no intention to incorporate CI/CD tools due to project or budget limitations. Nonetheless, there
  • To Find Installed Version of .Net Framework Using CLR Version Tool5/1/2024 11:14:47 AM. Learn about Clrver.exe utility to identify .NET Framework versions. Use MSCorEE.dll presence in system directories. Visual Studio command prompt access. View installed .NET versions and CLR versions
  • How to Get All the Site Permission Levels in SharePoint 2013 Online Using REST API5/1/2024 11:00:29 AM. Learn how to utilize SharePoint 2013's REST API to access site permission levels remotely. Explore creating apps with NAPA Tool, handling cross-domain requests, executing CRUD operations, retriev
  • IIS Hosting .Net Core MVC: In Process w3wp.exe Worker Process4/30/2024 9:18:45 AM. In this article, we will cover IIS Hosting in .NET Core MVC 3.1, Process Hosting, a w3wp.exe Worker Process, running source code with IIS, and debugging the same.
  • Deleting List Items in SharePoint 2013 Using REST API4/25/2024 8:51:44 AM. Learn how to delete list items in SharePoint 2013 effortlessly using the REST API. Utilizing SP.RequestExecutor, this guide walks you through the process of making cross-domain requests, initializing
  • Understanding the Python Global Interpreter Lock (GIL)4/23/2024 11:06:43 AM. The Python Global Interpreter Lock (GIL) is like a traffic cop inside your computer that makes sure only one thing happens at a time in Python, even if your computer has multiple processors.
  • Applied Reverse Engineering With OllyDbg4/23/2024 8:25:53 AM. This paper explores executable cracking using OllyDbg, focusing on reverse engineering without source code. It emphasizes Assembly Programming and tools like OllyDbg and CFF Explorer. Methods include
  • Native Assembly Programming in .NET4/22/2024 8:56:22 AM. Learn to create EXE and DLL files using MASM in Visual Studio. Configure project settings, write assembly code, debug, and test applications. Explore the power of assembly language for faster executio
  • Enhancements in Assemblies and Versioning in Visual Studio4/22/2024 8:18:23 AM. The article discusses a couple of features introduced for assembly and versioning in Visual Studio 2005 such as referencing assemblies, registering assemblies to GAC, digital signing and friend assemb
  • Execute Power Automate Workflow from SPFx4/12/2024 8:16:37 AM. Learn how to trigger Power Automate workflows from SPFx web parts, enabling programmatic event-driven actions like sending emails. Follow step-by-step instructions to build and execute the workflow, i
  • Enhance SQL Server Queries with OPTION(RECOMPILE) Hint4/11/2024 6:56:49 AM. This article provides an in-depth exploration of the OPTION(RECOMPILE) hint in SQL Server, offering developers and database administrators a thorough understanding of its functionality, practical appl
  • How To Execute SSIS Package Using SQL Job4/11/2024 6:24:56 AM. Execute SSIS packages seamlessly with SQL Jobs, leveraging SQL Agent to schedule tasks and manage execution, ensuring automation and reliability in data integration workflows.
  • Power of Filtered Indexes in SQL Server4/5/2024 4:28:34 AM. Discover the power of filtered indexes in SQL Server with our concise guide. Explore practical applications and key benefits, empowering you to harness the full potential of SQL Server for enhanced da
  • Grant Execute Or View Permission To Stored Procedures In SQL Server4/4/2024 8:53:54 AM. In this article we’ll learn how we can grant execute permission or view permission on stored procedures. We’ll also see why users require explicit permission on stored procedures.
  • How To Query Dataverse In Microsoft SQL Server Management Studio (SSMS)?4/3/2024 10:45:55 AM. Querying Dataverse in Microsoft SQL Server Management Studio (SSMS) involves using Transact-SQL (T-SQL) to interact with tables, views, indexes, and stored procedures. Understanding entity relationshi
  • Comparing Execution Plans In SQL Server 4/3/2024 9:52:56 AM. SQL Server Management Studio (SSMS) allows easy comparison of execution plans, aiding in identifying performance discrepancies. Users can compare .sqlplan files, highlighting differences in query oper
  • Temporary Tables vs Common Table Expressions in SQL Server3/29/2024 11:07:01 AM. In this article, we will learn what is Differences Between Temporary Tables and Common Table Expressions in SQL Server. Temporary tables and Common Table Expressions (CTEs) are SQL Server tools for da
  • Activate & Deactivate Account Record in Dynamic 365 with PowerShell 3/28/2024 10:51:22 AM. InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using spe
  • What Is Date Correlation Optimization?3/28/2024 6:27:07 AM. OK So, I am doing some digging and peaking around again in SQL Server and came across a database option called Date Correlation Optimization Enabled = False. Honestly, I had no clue what it did, so I
  • Azure DevOps: How to execute a Pipeline Task using Conditions3/22/2024 5:58:20 AM. Learn how to optimize your Azure DevOps pipelines with tips and tricks for executing tasks conditionally. Utilize conditions to control task execution based on variables, branch policies, and other cr
  • Effective Communication Between Executable Files Using Shared Memory3/19/2024 5:55:09 AM. In a WPF (Windows Presentation Foundation) application, inter-process connectivity typically involves communication between different components or modules within the same application or between separ
  • Establishing Communication Between Executable Files Using TCP/IP3/19/2024 5:29:21 AM. WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Step
  • Creating Functions Dynamically In JavaScript3/18/2024 12:04:08 PM. Learn to dynamically create functions in JavaScript, enabling flexible code generation and execution at runtime. Explore techniques for defining functions programmatically to enhance your application&
  • Understanding the .NET Internal Compile Process3/11/2024 11:16:32 AM. In this article, we will learn about CLR, Jit Compiler, and how the .NET compilation process works. Understanding the .NET internal compile process involves dissecting how source code is translated in
  • Leveraging Compiled Queries for Enhanced Performance in LINQ3/9/2024 9:17:22 AM. Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution pl
  • Decoding Expression Trees in C#3/8/2024 1:21:48 PM. This article contains the details of how to Decoding Expression Trees in C#.
  • Entity Framework 6.0: NGen.exe and Startup Performance3/7/2024 8:48:20 AM. This content discusses native code generation, focusing on the process where the Just In Time (JIT) compiler converts MSIL code into native code for execution. It explains how the Native Image Generat
  • Backup Your Source Code Daily Using C# Programming3/6/2024 10:26:00 AM. Discover an automated solution for daily source code backup with ease. This content introduces an executable file designed to streamline the backup process, ensuring your data is safeguarded without m
  • Covering Indexes And Filtered Indexes In SQL3/5/2024 10:36:56 AM. Hello Learners. I hope you all are doing great. This article describes the Covering Indexes and Filtered Indexes. I would like to tell you that these type of Indexes can only be created as NONCLUSTERE
  • Test Initialize and Test Setup3/5/2024 10:34:22 AM. In this article, we will explain the uses of two very important attributes called TestInitialize and TestCleanup. Both attributes are useful at the time of unit test setup.
  • Enhance SQL Server Stored Procedure Performance – Tuning Tips3/5/2024 9:26:01 AM. Covering indexes and filtered indexes in SQL optimize database performance by efficiently retrieving data for queries. Covering indexes include all needed columns, while filtered indexes target specif
  • Improving SQL Performance Using Covering Indexes3/4/2024 11:29:49 AM. In this article we will try to understand what a covering index is, how to avoid the expensive key lookup operations, and how it can improve our T-SQL performance multi fold times.
  • How To Reverse Engineer Using OllyDbg3/1/2024 9:19:32 AM. This article provides an introduction to obfuscation and reverse engineering, focusing on using OllyDbg as a reverse engineering tool. It explains the concept of obfuscation as a means to secure sourc
  • Dynamics 365 - Execute Multiple Requests2/9/2024 6:57:33 AM. Sometimes, in projects, we have a requirement where we need to undertake the actions at once on numerous records in the system over an entity. In this article, we will see how to achieve that.
  • Display an Application Notification in Dynamics 365 Using JavaScript2/7/2024 10:12:52 AM. Unlock Dynamics 365's in-app notifications with JavaScript. Activate via the Power Apps portal, create a web resource with code, and trigger on contact name change. Stay informed effortlessly.
  • Exploring the Dynamic Language Runtime (DLR) in C#2/6/2024 7:24:17 AM. The Dynamic Language Runtime (DLR) in C# enhances flexibility by enabling dynamic typing and execution of code. It fosters interoperability with languages like Python and JavaScript, promoting versati
  • What is Hoisting in JavaScript ?1/17/2024 7:51:24 AM. Explore the concept of hoisting in JavaScript, where variable and function declarations are moved to the top of their scope during the creation phase. Learn through examples and enhance coding skills.
  • Understanding Collection Types in C#1/9/2024 4:35:29 AM. Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnece
  • IndexedDB and Its Basic Concept1/5/2024 6:26:52 AM. In this article, we will learn about IndexedDB, a powerful client-side storage API for storing and retrieving structured data asynchronously. Explore its key features, concepts, and a practical exampl
  • Static Constructors in .NET12/20/2023 11:22:44 AM. Static constructors in .NET, a special breed in object-oriented programming. Unlike instance counterparts, they initialize once per type, controlling execution order and serving key roles in resource
  • Automated Way to Get Latest Pipeline Execution Details of Synapse12/20/2023 7:16:11 AM. Automated Way to Get Latest Pipeline Execution Details of Synapse. Automate the retrieval of the latest Azure Synapse pipeline execution details with a custom PowerShell module. Set up the environment
  • Automated Way to Get Latest Pipeline Execution Details of an Azure Data Factory12/18/2023 4:44:50 PM. Automated Way to Get Latest Pipeline Execution Details of an Azure Data Factory
  • How to Create and Execute Test Plan, Test Suite in Azure DevOps11/15/2023 7:00:30 AM. This article is a detailed guide on implementing design patterns using generic delegates in C#. It provides comprehensive examples for the Strategy, Observer, Command, and Template Method patterns.
  • Execute XPath expression Action in Desktop flow using Microsoft Power Automate11/4/2023 8:39:52 AM. Reading this article, you can learn how to use Execute XPath expression in Desktop flow using Microsoft Power Automate
  • ASP.NET Core MVC Request Life Cycle10/30/2023 5:25:03 AM. In this article you will learn about description of various stages of ASP.NET Core MVC Request Life Cycle.
  • Execute DOS Command in Desktop flow using Microsoft Power Automate10/29/2023 6:07:55 AM. Reading this article, you can learn how to Execute the DOS Command using Run Dos command actions with Desktop flow in Microsoft Power Automate.
  • Exploring the Disappearance of mongo.exe in MongoDB10/22/2023 8:10:54 AM. Mongo.exe is missing and was replaced. See where to get MongoDB Shell
  • PermissionSet Class In C# 10/20/2023 4:58:58 AM. The PermissionSet class in C# is a fundamental component of .NET security that allows developers to encapsulate a set of permissions for code execution. It enables the definition and management of fin
  • How to Resolve PowerShell Script Execution Policy Error for Angular CLI ?10/19/2023 11:56:30 AM. How to Resolve PowerShell Script Execution Policy Error for Angular CLI suggests a guide for overcoming issues related to PowerShell script execution policies when working with the Angular CLI, a popu
  • Execution-Time Code Generator For C#10/17/2023 8:45:35 AM. The Common Language Runtime provides a new way of doing things. The compile-time world still exist, but it is also possible to build dynamic systems where new code is added by loading assemblies or ev
  • Synchronous Threading10/11/2023 8:21:33 AM. Well this article is basically to explain how to make threads run synchronously.
  • How To Call Stored Procedure In Entity Framework10/10/2023 8:44:08 AM. In this article, I will demonstrate how to call a stored procedure in entity framework? There are many different way to call stored procedure from entity framework.
  • How To Execute An Application In A Remote Application Domain10/2/2023 9:03:50 PM. This article explains executing an application in a remote application domain.Executing an application in a remote application domain involves creating a separate isolated environment within the same
  • CLR Execution Process9/25/2023 4:00:15 AM. Here you will see CLR Execution Process. The CLR which is the runtime environment for .Net, provides services such as Memory Management, Security Management, Exception Handling, and Cross language Int
  • How To Run And Execute C# Program Using Notepad9/22/2023 9:54:11 AM. In this article, you will learn how to run and execute C# programs, using Notepad.
  • Passing Table to a Store Procedure in SQL Server9/15/2023 9:32:59 AM. In this article, I described how to pass a table to a Stored Procedure parameter in SQL Server.
  • Compilation And Runtime Execution Of A C-Sharp Program9/14/2023 5:17:03 AM. C-Sharp (C#) is a strongly typed object-oriented programming language designed to give optimum composition of simplicity, expressiveness and performance.
  • Calling Any Stored Procedure In ADO.NET9/10/2023 9:36:17 PM. This one generic function can call any Stored Prodedure which take input parameters and return output parameters with the help of two-dimensions array. This is very helpful specially when you designin