diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Convert-HTML-to-PDF-in-Azure-App-Service-Windows.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Convert-HTML-to-PDF-in-Azure-App-Service-Windows.md
deleted file mode 100644
index ddacaba2e7..0000000000
--- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Convert-HTML-to-PDF-in-Azure-App-Service-Windows.md
+++ /dev/null
@@ -1,138 +0,0 @@
----
-title: Convert HTML to PDF in Azure App Service on Windows | Syncfusion
-description: Convert HTML to PDF in Azure App Service on Windows using Syncfusion .NET Core HTML to PDF converter library.
-platform: document-processing
-control: PDF
-documentation: UG
----
-
-# Convert HTML to PDF file in Azure App Service on Windows
-
-As the Azure Windows platform is a Sandbox environment, the default HTML rendering engine Blink used in our HTML to PDF conversion is incompatible due to GDI Limitations. It is recommended that you use [Azure web applications in the Linux container.](https://help.syncfusion.com/document-processing/pdf/conversions/html-to-pdf/net/convert-html-to-pdf-in-azure-app-service-linux) For converting HTML to PDF in Azure Windows, you can use our [CefSharp](https://www.nuget.org/packages/CefSharp.OffScreen.NETCore/119.4.30) based HTML converter if is fit your requirement.
-
-N> [CefSharp](https://www.nuget.org/packages/CefSharp.OffScreen.NETCore/119.4.30) is an open-source library that comes under the [BSD](https://github.com/cefsharp/CefSharp/blob/master/README.md) license.
-
-
-## Steps to convert HTML to PDF file in Azure App Service on Windows using CefSharp
-
-Step 1: Create a new ASP.NET Core Web App (Model-View-Controller).
-
-
-Step 2: Create a project name and select the location.
-
-
-Step 3: Click **Create**.
-
-
-Step 4: Install the [Syncfusion.HtmlToPdfConverter.Cef.Net.Windows](https://www.nuget.org/packages/Syncfusion.HtmlToPdfConverter.Cef.Net.Windows) NuGet package to reference your project using the [nuget.org](https://www.nuget.org/).
-
-
-N> Starting with v16.2.0.x, if you reference Syncfusion® assemblies from the trial setup or NuGet feed, you also have to add the "Syncfusion.Licensing" assembly reference and include a license key in your projects. Please refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/overview) to learn about registering the Syncfusion® license key in your application to use our components.
-
-Step 5: A default action method named Index will be present in *HomeController.cs*. Right-click on the Index method and select **Go To View**, where you will be directed to its associated view page *Index.cshtml*. Add a new button in the *Index.cshtml* as follows.
-
-{% tabs %}
-{% highlight c# tabtitle="C#" %}
-
-@{
- Html.BeginForm("ConvertToPdf", "Home", FormMethod.Get);
- {
-
-
-
- }
- Html.EndForm();
-}
-
-{% endhighlight %}
-{% endtabs %}
-
-Step 6: Include the following namespaces in *HomeController.cs*.
-
-{% tabs %}
-{% highlight c# tabtitle="C#" %}
-
- using Syncfusion.HtmlConverter;
- using Syncfusion.Pdf;
-
-{% endhighlight %}
-{% endtabs %}
-
-Step 7: Add a new action method named ConvertToPdf in the HomeController.cs file and include the following code example to convert HTML to PDF document in *HomeController.cs*.
-
-{% tabs %}
-{% highlight c# tabtitle="C#" %}
-
- public IActionResult ConvertToPdf()
- {
- //Initialize HTML to PDF converter.
- HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter(HtmlRenderingEngine.Cef);
- CefConverterSettings cefConverterSettings = new CefConverterSettings();
- //Set Blink viewport size.
- cefConverterSettings.ViewPortSize = new Syncfusion.Drawing.Size(1280, 0);
- //Assign Blink converter settings to HTML converter.
- htmlConverter.ConverterSettings = cefConverterSettings;
- //Convert URL to PDF document.
- PdfDocument document = htmlConverter.Convert("https://www.google.com");
- //Create memory stream.
- MemoryStream stream = new MemoryStream();
- //Save and close the document.
- document.Save(stream);
- document.Close();
- return File(stream.ToArray(), System.Net.Mime.MediaTypeNames.Application.Pdf, "HTML-to-PDF.pdf");
- }
-
-
-{% endhighlight %}
-{% endtabs %}
-
-Step 8: Refer the steps to [publish](https://help.syncfusion.com/document-processing/pdf/conversions/html-to-pdf/net/convert-html-to-pdf-in-azure-app-service-windows#steps-to-publish-as-azure-app-service-on-windows) as Azure App Service on Windows
-
-Step 9: Open the created web app service in the Azure portal. Go to Settings -> Configuration -> Platform settings and change the platform to 64-bit.
-
-
-Step 10: After completing the publish profile setup, click the publish.
-
-Step 11: Publish will be succeeded and the published webpage will open in the browser. Click ExportToPDF button to perform the conversion.
-
-You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/html-to-pdf-csharp-examples/tree/master/Azure/HTML-to-PDF-Azure%20App%20Service-Windows-CefSharp).
-
-
-## Steps to publish as Azure App Service on Windows
-
-Step 1: Right-click the project and select the **Publish** option.
-
-
-Step 2: Click **Add a Publish Profile**.
-
-
-Step 3: Select the publish target as **Azure**.
-
-
-Step 4: Select the Specific target as **Azure App Service (Windows)**.
-
-
-Step 5: Click the **Create new** option to create a new app service.
-
-
-Step 6: Click **Create** to proceed with **App Service** creation.
-
-
-Step 7: Click **Finish** to finalize the **App Service** creation.
-
-
-Step 8: Click **Close**.
-
-
-Step 9: Click **Publish**.
-
-
-Step 10: Now, Publish has succeeded.
-
-
-Step 11: Now, the published webpage will open in the browser.
-
-
-Step 12: Select a PDF document and click **Export to PDF** to create a PDF document. You will get the output PDF document as follows.
-
-
diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Convert-HTML-to-PDF-in-Azure-Functions-Windows.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Convert-HTML-to-PDF-in-Azure-Functions-Windows.md
deleted file mode 100644
index 532206ff4e..0000000000
--- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Convert-HTML-to-PDF-in-Azure-Functions-Windows.md
+++ /dev/null
@@ -1,142 +0,0 @@
----
-title: Convert HTML to PDF in Azure Functions on Windows | Syncfusion
-description: Convert HTML to PDF in Azure Functions on Windows using Syncfusion .NET Core HTML to PDF converter library.
-platform: document-processing
-control: PDF
-documentation: UG
----
-
-# Convert HTML to PDF file in Azure Functions on Windows
-
-As the Azure Windows platform is a Sandbox environment, the default HTML rendering engine Blink used in our HTML to PDF conversion is incompatible due to GDI Limitations. It is recommended that you use [Azure functions in Linux](https://help.syncfusion.com/document-processing/pdf/conversions/html-to-pdf/net/convert-html-to-pdf-in-azure-functions-linux) For converting HTML to PDF in Azure Functions on Windows, you can use our [CefSharp](https://www.nuget.org/packages/CefSharp.OffScreen.NETCore/119.4.30) based HTML converter if is fit your requirement.
-
-N> [CefSharp](https://www.nuget.org/packages/CefSharp.OffScreen.NETCore/119.4.30) is an open-source library that comes under the [BSD](https://github.com/cefsharp/CefSharp/blob/master/README.md) license.
-
-
-## Steps to convert HTML to PDF file in Azure Functions on Windows using CefSharp
-
-Step 1: Create the Azure functions project.
-
-
-Step 2: Create a project name and select the location.
-
-
-Step 3: Select the function worker as .NET 8.0 isolated (Long-term support), and the selected HTTP triggers as follows.
-
-
-N> We have ensured the conversion in Azure functions isolated app and the conversion supports Azure functions isolated app only. The normal Azure Function app has a limitation of copying the runtime files at publish.
-
-Step 4: Install the [Syncfusion.HtmlToPdfConverter.Cef.Net.Windows](https://www.nuget.org/packages/Syncfusion.HtmlToPdfConverter.Cef.Net.Windows) NuGet package to reference your project using the [nuget.org](https://www.nuget.org/).
-
-
-N> Starting with v16.2.0.x, if you reference Syncfusion® assemblies from the trial setup or NuGet feed, you also have to add the "Syncfusion.Licensing" assembly reference and include a license key in your projects. Please refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/overview) to learn about registering the Syncfusion® license key in your application to use our components.
-
-Step 5: Include the following namespaces in the **Function1.cs** file.
-
-{% tabs %}
-{% highlight c# tabtitle="C#" %}
-
- using Syncfusion.HtmlConverter;
- using Syncfusion.Pdf;
- using Syncfusion.Pdf.Graphics;
-
-{% endhighlight %}
-{% endtabs %}
-
-Step 6: Add the following code example in the **Run** method of the **Function1** class to **convert HTML to PDF document** in Azure Functions and return the resultant **PDF document**.
-
-{% tabs %}
-{% highlight c# tabtitle="C#" %}
-
- [Function("Function1")]
-
- public IActionResult Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post")] HttpRequest req)
- {
- string blinkBinariesPath = string.Empty;
- MemoryStream ms = null;
- try
- {
-
- //Initialize the HTML to PDF converter with the Blink rendering engine.
- HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter(HtmlRenderingEngine.Cef);
- //Convert URL to PDF
- PdfDocument document = htmlConverter.Convert("https://www.google.com/");
-
- ms = new MemoryStream();
- //Save and close the PDF document
- document.Save(ms);
- document.Close();
- }
- catch (Exception ex)
- {
- //Create a new PDF document.
- PdfDocument document = new PdfDocument();
- //Add a page to the document.
- PdfPage page = document.Pages.Add();
-
- //Create PDF graphics for the page.
- PdfGraphics graphics = page.Graphics;
- //Set the standard font.
- PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 20);
- //Draw the text.
- graphics.DrawString(ex.Message, font, PdfBrushes.Black, new Syncfusion.Drawing.PointF(0, 0));
-
- //Creating the stream object.
- ms = new MemoryStream();
- //Save the document into memory stream.
- document.Save(ms);
- //Close the document.
- document.Close(true);
-
- }
- ms.Position = 0;
- return new FileStreamResult(ms, "application/pdf");
- }
-
-{% endhighlight %}
-{% endtabs %}
-
-Step 7: Refer the steps to [publish](https://help.syncfusion.com/document-processing/pdf/conversions/html-to-pdf/net/convert-html-to-pdf-in-azure-functions-windows#steps-to-publish-as-azure-function-on-windows) as Azure Function on Windows.
-
-Step 8: After publish open the created web app service in the Azure portal. Go to Settings -> Configuration -> Platform settings and change the platform to 64-bit.
-
-
-
-You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/html-to-pdf-csharp-examples/tree/master/Azure/HTML-to-PDF-Azure-Function-Windows-CefSharp).
-
-
-## Steps to publish as Azure Function on Windows
-
-Step 1: Right-click the project and select Publish. Then, create a new profile in the Publish Window.
-
-
-Step 2: Select the target as **Azure** and click **Next**.
-
-
-Step 3: Select the **Azure Function App (Windows)** and click **Next**.
-
-
-Step 4: Select the **Create new**.
-
-
-Step 5: Click **Create**.
-
-
-Step 6: After creating the function app service, click **Finish**.
-
-
-Step 7: Click deployment type.
-
-
-Step 8: Click **Close** button.
-
-
-Step 9: Click **Publish**.
-
-
-Step 10: Now, Publish has succeeded.
-
-
-Step 11: Now, go to the Azure portal and select App Services. After running the service, click **Get function URL > Copy**. Include the URL as a query string in the URL. Then, paste it into a new browser tab. You will get a PDF document as follows.
-
-
diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md
index 5282696e63..ec42661a9a 100644
--- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md
+++ b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md
@@ -2579,100 +2579,6 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
N> This property determines whether the Blink rendering engine can load local resources such as CSS files, JavaScript files, images, and fonts referenced in the HTML. By default, this property is set to true.
-## Best Practices: CEF Rendering Engine
-
-You can utilize various features, such as Scale, Margin, AdditionalDelay, and more, in the CEF converter settings when performing HTML to PDF conversion with the CEF rendering engine. Initialize the rendering engine first and then configure the specific property values. This ensures that the property values are applied correctly and preserved in the resulting PDF document.
-
-To define the settings, please refer to the sample code example below:
-
-{% tabs %}
-
-{% highlight c# tabtitle="C# [Cross-platform]" %}
-
-byte[] CreatePdfFromUrl(string url, CefConverterSettings settings)
-{
- // Create an instance of the HTML to PDF converter
- HtmlToPdfConverter pdfConverter = new HtmlToPdfConverter()
- {
- RenderingEngine = HtmlRenderingEngine.Cef, // Set the rendering engine to Cef
- ConverterSettings = settings, // Apply the provided converter settings
- };
-
- // Convert the URL to a PDF document
- using (PdfDocument document = pdfConverter.Convert(url))
- {
- // Save the document to a memory stream
- using (MemoryStream stream = new MemoryStream())
- {
- document.Save(stream); // Save the converted document to the stream
- stream.Position = 0; // Reset the stream position to the beginning
- return stream.ToArray(); // Return the byte array of the PDF
- }
- }
-}
-
-// Define the URL and settings
-string url = "http://google.com";
-
-// Create a PDF from the URL with custom settings
-byte[] pdfBytes = CreatePdfFromUrl(url, new CefConverterSettings()
-{
- AdditionalDelay = 5000, // Wait time before conversion starts
- ViewPortSize = new Syncfusion.Drawing.Size(1920, 1080), // Set the viewport size for the rendering
- Orientation = PdfPageOrientation.Landscape, // Set the PDF orientation to Landscape
- Scale = 0.7f, // Set the scale of the rendered content
- EnableJavaScript = true, // Enable JavaScript execution
- EnableHyperLink = false, // Disable hyperlinks in the PDF
- HtmlEncoding = Encoding.UTF8 // Set the encoding for the HTML content
-});
-
-{% endhighlight %}
-
-{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
-
-byte[] CreatePdfFromUrl(string url, CefConverterSettings settings)
-{
- // Create an instance of the HTML to PDF converter
- HtmlToPdfConverter pdfConverter = new HtmlToPdfConverter()
- {
- RenderingEngine = HtmlRenderingEngine.Cef, // Set the rendering engine to Cef
- ConverterSettings = settings, // Apply the provided converter settings
- };
-
- // Convert the URL to a PDF document
- using (PdfDocument document = pdfConverter.Convert(url))
- {
- // Save the document to a memory stream
- using (MemoryStream stream = new MemoryStream())
- {
- document.Save(stream); // Save the converted document to the stream
- stream.Position = 0; // Reset the stream position to the beginning
- return stream.ToArray(); // Return the byte array of the PDF
- }
- }
-}
-
-// Define the URL and settings
-string url = "http://google.com";
-
-// Create a PDF from the URL with custom settings
-byte[] pdfBytes = CreatePdfFromUrl(url, new CefConverterSettings()
-{
- AdditionalDelay = 5000, // Wait time before conversion starts
- ViewPortSize = new Syncfusion.Drawing.Size(1920, 1080), // Set the viewport size for the rendering
- Orientation = PdfPageOrientation.Landscape, // Set the PDF orientation to Landscape
- Scale = 0.7f, // Set the scale of the rendered content
- EnableJavaScript = true, // Enable JavaScript execution
- EnableHyperLink = false, // Disable hyperlinks in the PDF
- HtmlEncoding = Encoding.UTF8 // Set the encoding for the HTML content
-});
-
-{% endhighlight %}
-
-{% endtabs %}
-
-You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/CEF-Rendering-Engine/.NET).
-
## Adding Digital Signatures to HTML-converted PDFs
This section demonstrates implementing digital signatures in PDFs generated from HTML sources using [HtmlToPdfConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.HtmlConverter.HtmlToPdfConverter.html) class. Digital signatures provide cryptographic proof of document authenticity and integrity.
diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md
index 4017464e44..50711c98bc 100644
--- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md
+++ b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md
@@ -477,39 +477,6 @@ Refer to this Issue
-
-
When publishing an application using Syncfusion.HtmlToPdfConverter.Cef.Net.Windows to Azure App Service via GitHub Actions, the HTML to PDF conversion fails. This typically results in a runtime error indicating that a required component or dependency could not be found or initialized.
-
-
-
-
Reason
-
-
The failure is due to native binaries for the CEF(Chromium Embedded Framework) rendering engine located in the runtime/win-x64/native directory not being copied correctly to the output directory during the publishing process. This issue is common in CI/CD pipelines like GitHub Actions, causing the application to fail at runtime due to missing native files.
-
-
-
-
-
Solution
-
-
To fix this, explicitly include the CEF runtime package in your .csproj file to ensure the necessary binaries are included in the published output. Add the following package reference.
-
-{% tabs %}
-{% highlight C# tabtitle="C#" %}
-
-
-
-{% endhighlight %}
-{% endtabs %}
-
-Note: Use version 119.4.3, which is a verified dependency for CefSharp.OffScreen.NetCore (v119.4.30). Using a different version is not advised and may lead to unexpected behavior.
-
-
-
-
## Unable to convert unsecured https URL to PDF using Blink
How to remove the DawnCache and CPUCache folders during HTML to PDF conversion using CEF rendering engine.
-
-
-
Reason
-
-
-
-The DawnCache and CPUCache folders are created in project folder while performing HTML to PDF conversion using CEF rendering engine.
-
-
-
-
-
Solution
-
-
-You can add below command-line arguments in Cef converter settings to prevent the DawnCache and CPUCache folders creation.
-
-{% tabs %}
-{% highlight C# %}
-
-cefConverterSettings.CommandLineArguments.Add("disable-gpu");
-cefConverterSettings.CommandLineArguments.Add("disable-gpu-shader-disk-cache");
-cefConverterSettings.CommandLineArguments.Add("disable-gpu-program-cache");
-
-{% endhighlight %}
-{% endtabs %}
-
-
-
-
-
## Blink files are missing at /user/local/bin while performing HTML to PDF conversion with docker and docker compose file.
@@ -1350,14 +1282,6 @@ To perform HTML to PDF conversion using the Blink rendering engine, you can use
* Azure Functions (Linux): Linux-based Azure Functions can also utilize the Blink rendering engine for successful conversions.
* Azure App Service (Linux Docker): Deploying the application in a Linux-based Docker container offers another way to use Blink.
-Use CEF Rendering Engine in Azure App Service Windows
-
-If you must use Azure App Service on Windows, the CEF rendering engine is a suitable alternative for HTML to PDF conversion.
-Refer to the following documentation for more details:
-
-* Azure App Service (Windows)
-* Azure Function (Windows)
-
@@ -1486,38 +1410,6 @@ After the service restarts, try the conversion or operation again to ensure the
-
-
-
Exception
-
-
Failed to convert webpage exception in Azure App Service (Windows) using CEF rendering engine — deployed via Azure DevOps pipeline
-