diff --git a/controls/dropdown-listcontrol-and-checkeddropdownlist/dropdownlist/ui-automation.md b/controls/dropdown-listcontrol-and-checkeddropdownlist/dropdownlist/ui-automation.md
index 5d9bda295..187ceb7bf 100644
--- a/controls/dropdown-listcontrol-and-checkeddropdownlist/dropdownlist/ui-automation.md
+++ b/controls/dropdown-listcontrol-and-checkeddropdownlist/dropdownlist/ui-automation.md
@@ -55,11 +55,27 @@ The following section outlines the supported automation patterns for the __RadDr
## Editor or TextElement
-The __DropDownStyle__ property of the control determines if direct text input is allowed inside the editor or not. When the style is set to DropDown we allow input which is handled by a hosted Microsoft TextBox control. In this case, the default TextBox implementation is responsible for handling UI Automation.
+The __DropDownStyle__ property of the control determines if direct text input is allowed inside the editor or not.
### Editor
-The current implementation of UI Automation for the hosted Microsoft TextBox control is implemented as the UIA [Edit control type](https://learn.microsoft.com/en-us/windows/win32/winauto/uiauto-supporteditcontroltype)
+The current implementation of UI Automation for the RadDropDownList RadTextBoxItem control inside the editable area of the control is implemented as the UIA [Edit control type](https://learn.microsoft.com/en-us/windows/win32/winauto/uiauto-supporteditcontroltype)
+
+#### Editor Available Properties
+
+* AutomationElementIdentifiers.AutomationIdProperty.Id
+* AutomationElementIdentifiers.BoundingRectangleProperty.Id
+* AutomationElementIdentifiers.ClickablePointProperty.Id
+* AutomationElementIdentifiers.IsKeyboardFocusableProperty.Id
+* AutomationElementIdentifiers.NameProperty.Id
+* AutomationElementIdentifiers.ControlTypeProperty.Id
+* AutomationElementIdentifiers.LocalizedControlTypeProperty.Id => "edit"
+* AutomationElementIdentifiers.HelpTextProperty.Id
+* AutomationElementIdentifiers.IsContentElementProperty.Id
+* AutomationElementIdentifiers.IsControlElementProperty.Id
+* AutomationElementIdentifiers.IsPasswordProperty.Id
+* AutomationElementIdentifiers.IsTextPatternAvailableProperty.Id
+* AutomationElementIdentifiers.IsValuePatternAvailableProperty.Id
### TextElement
diff --git a/controls/editors/maskededitbox/images/maskedEditBox-ui-automation001.png b/controls/editors/maskededitbox/images/maskedEditBox-ui-automation001.png
new file mode 100644
index 000000000..1b24ef96f
Binary files /dev/null and b/controls/editors/maskededitbox/images/maskedEditBox-ui-automation001.png differ
diff --git a/controls/editors/maskededitbox/ui-automation.md b/controls/editors/maskededitbox/ui-automation.md
new file mode 100644
index 000000000..7322cac26
--- /dev/null
+++ b/controls/editors/maskededitbox/ui-automation.md
@@ -0,0 +1,70 @@
+---
+title: UI Automation Support (UI Accessibility)
+page_title: UI Automation Support (UI Accessibility) - RadMaskedEditBox
+description: UI Automation Support (UI Accessibility) for RadMaskedEditBox.
+slug: maskededitbox-ui-automation
+tags: maskededitbox,ui,automation
+published: True
+position: 10
+---
+
+# UI Automation Support
+
+With the __Q2 2025__ version of our controls, RadMaskedEditBox supports UI Automation. The current implementation of UI Automation for RadMaskedEditBox is similar to the MS WinForms Edit Control Type implementation with some extended functionality. The main goal of this implementation is to ensure compliance with accessibility standards and to provide a common practice for automated testing.
+
+This functionality is enabled by default. To disable it, you can set the __EnableUIAutomation__ property to false.
+
+
+````C#
+
+this.radMaskedEditBox1.EnableUIAutomation = false;
+
+````
+````VB.NET
+
+Me.RadMaskedEditBox1.EnableUIAutomation = False
+
+````
+
+
+
+## Relevant Properties
+
+The table below outlines the __UI Automation__ properties most important for understanding and interacting with RadButton control.
+
+* AutomationElementIdentifiers.AutomationIdProperty.Id
+* AutomationElementIdentifiers.BoundingRectangleProperty.Id
+* AutomationElementIdentifiers.ClickablePointProperty.Id
+* AutomationElementIdentifiers.IsKeyboardFocusableProperty.Id
+* AutomationElementIdentifiers.NameProperty.Id
+* AutomationElementIdentifiers.ControlTypeProperty.Id
+* AutomationElementIdentifiers.LocalizedControlTypeProperty.Id => "edit"
+* AutomationElementIdentifiers.HelpTextProperty.Id
+* AutomationElementIdentifiers.IsContentElementProperty.Id
+* AutomationElementIdentifiers.IsControlElementProperty.Id
+* AutomationElementIdentifiers.IsPasswordProperty.Id
+* AutomationElementIdentifiers.IsTextPatternAvailableProperty.Id
+* AutomationElementIdentifiers.IsValuePatternAvailableProperty.Id
+
+## Supported Control Patterns
+
+The following section outlines the supported automation patterns for the __RadMaskedEditBox__ control and its constituent elements.
+
+* [Text Pattern](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.textpattern?view=windowsdesktop-9.0)
+* [Value Pattern](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.valuepattern?view=windowsdesktop-9.0)
+
+## Events
+
+This section list the events raised by the RadMaskedEditBox control.
+
+* __Selection in the control change__: Raises the :
+ [UIA TextPatternIdentifiers.TextSelectionChangedEvent](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.textpattern.textselectionchangedevent?view=windowsdesktop-9.0#system-windows-automation-textpattern-textselectionchangedevent)
+
+* __OnTextChanged__: Raises the:
+ * [UIA TextPatternIdentifiers.TextChangedEvent Field](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.textpatternidentifiers.textchangedevent?view=windowsdesktop-9.0#system-windows-automation-textpatternidentifiers-textchangedevent)
+ * [UIA AutomationElementIdentifiers.NameProperty Field](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.valuepattern.valueproperty?view=windowsdesktop-9.0)
+
+* __OnEnabledChanged__: Raises the [UIA AutomationElementIdentifiers.IsEnabledProperty Field](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.automationelementidentifiers.isenabledproperty?view=windowsdesktop-9.0#system-windows-automation-automationelementidentifiers-isenabledproperty)
+
+
+
diff --git a/controls/editors/spineditor/ui-automation.md b/controls/editors/spineditor/ui-automation.md
new file mode 100644
index 000000000..23818f031
--- /dev/null
+++ b/controls/editors/spineditor/ui-automation.md
@@ -0,0 +1,72 @@
+---
+title: UI Automation Support (UI Accessibility)
+page_title: UI Automation Support (UI Accessibility) - RadSpinEditor
+description: UI Automation Support (UI Accessibility) for RadSpinEditor.
+slug: winforms/editors/spineditor-ui-automation
+tags: spineditor,ui,automation
+published: True
+position: 10
+---
+
+# UI Automation Support
+
+With the __Q2 2025__ version of our controls, RadSpinEditor supports UI Automation. The current implementation of UI Automation for RadSpinEditor is similar to the MS WinForms Edit Control Type implementation with some extended functionality. The main goal of this implementation is to ensure compliance with accessibility standards and to provide a common practice for automated testing.
+
+This functionality is enabled by default. To disable it, you can set the __EnableUIAutomation__ property to false.
+
+
+````C#
+
+this.radSpinEditor1.EnableUIAutomation = false;
+
+````
+````VB.NET
+
+Me.RadSpinEditor1.EnableUIAutomation = False
+
+````
+
+
+
+## Relevant Properties
+
+The table below outlines the __UI Automation__ properties most important for understanding and interacting with RadButton control.
+
+* AutomationElementIdentifiers.AutomationIdProperty.Id
+* AutomationElementIdentifiers.BoundingRectangleProperty.Id
+* AutomationElementIdentifiers.ControlTypeProperty.Id
+* AutomationElementIdentifiers.LocalizedControlTypeProperty.Id => "spinner"
+* AutomationElementIdentifiers.HelpTextProperty.Id
+* AutomationElementIdentifiers.IsContentElementProperty.Id
+* AutomationElementIdentifiers.IsControlElementProperty.Id
+* AutomationElementIdentifiers.IsKeyboardFocusableProperty.Id
+* AutomationElementIdentifiers.LabeledByProperty.Id
+* AutomationElementIdentifiers.NameProperty.Id
+* AutomationElementIdentifiers.IsRangeValuePatternAvailableProperty.Id
+* AutomationElementIdentifiers.IsValuePatternAvailableProperty.Id
+
+## Supported Control Patterns
+
+The following section outlines the supported automation patterns for the __RadSpinEditor__ control and its constituent elements.
+
+* [Value Pattern](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.valuepattern?view=windowsdesktop-9.0)
+* [Range Value Pattern](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.rangevaluepattern?view=windowsdesktop-9.0)
+
+## Events
+
+This section list the events raised by the RadSpinEditor control.
+
+* __RadSpinElement.MinValue property change__: Raises the [UIA RangeValuePatternIdentifiers.MinimumProperty](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.rangevaluepattern.minimumproperty?view=windowsdesktop-9.0) automation property change.
+
+* __RadSpinElement.MaxValue property change__: Raises the [UIA RangeValuePatternIdentifiers.MaximumProperty](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.rangevaluepattern.maximumproperty?view=windowsdesktop-9.0) automation property change.
+
+* __ValueChanged event: Raises the
+
+ * [UIA ValuePatternIdentifiers.ValueProperty](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.valuepattern.valueproperty?view=windowsdesktop-9.0) automation property changed.
+ * UIA RangeValuePatternIdentifiers.ValueProperty](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.rangevaluepattern.valueproperty?view=windowsdesktop-9.0)
+
+
+
+
diff --git a/controls/editors/textbox/images/textbox-ui-automation001.png b/controls/editors/textbox/images/textbox-ui-automation001.png
new file mode 100644
index 000000000..1b24ef96f
Binary files /dev/null and b/controls/editors/textbox/images/textbox-ui-automation001.png differ
diff --git a/controls/editors/textbox/ui-automation.md b/controls/editors/textbox/ui-automation.md
new file mode 100644
index 000000000..78f5e79e6
--- /dev/null
+++ b/controls/editors/textbox/ui-automation.md
@@ -0,0 +1,70 @@
+---
+title: UI Automation Support (UI Accessibility)
+page_title: UI Automation Support (UI Accessibility) - RadTextBox
+description: UI Automation Support (UI Accessibility) for RadTextBox.
+slug: textbox-ui-automation
+tags: textbox,ui,automation
+published: True
+position: 10
+---
+
+# UI Automation Support
+
+With the __Q2 2025__ version of our controls, RadTextBox supports UI Automation. The current implementation of UI Automation for RadTextBox is similar to the MS WinForms Edit Control Type implementation with some extended functionality. The main goal of this implementation is to ensure compliance with accessibility standards and to provide a common practice for automated testing.
+
+This functionality is enabled by default. To disable it, you can set the __EnableUIAutomation__ property to false.
+
+
+````C#
+
+this.radTextBox1.EnableUIAutomation = false;
+
+````
+````VB.NET
+
+Me.RadTextBox1.EnableUIAutomation = False
+
+````
+
+
+
+## Relevant Properties
+
+The table below outlines the __UI Automation__ properties most important for understanding and interacting with RadButton control.
+
+* AutomationElementIdentifiers.AutomationIdProperty.Id
+* AutomationElementIdentifiers.BoundingRectangleProperty.Id
+* AutomationElementIdentifiers.ClickablePointProperty.Id
+* AutomationElementIdentifiers.IsKeyboardFocusableProperty.Id
+* AutomationElementIdentifiers.NameProperty.Id
+* AutomationElementIdentifiers.ControlTypeProperty.Id
+* AutomationElementIdentifiers.LocalizedControlTypeProperty.Id => "edit"
+* AutomationElementIdentifiers.HelpTextProperty.Id
+* AutomationElementIdentifiers.IsContentElementProperty.Id
+* AutomationElementIdentifiers.IsControlElementProperty.Id
+* AutomationElementIdentifiers.IsPasswordProperty.Id
+* AutomationElementIdentifiers.IsTextPatternAvailableProperty.Id
+* AutomationElementIdentifiers.IsValuePatternAvailableProperty.Id
+
+## Supported Control Patterns
+
+The following section outlines the supported automation patterns for the __RadTextBox__ control and its constituent elements.
+
+* [Text Pattern](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.textpattern?view=windowsdesktop-9.0)
+* [Value Pattern](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.valuepattern?view=windowsdesktop-9.0)
+
+## Events
+
+This section list the events raised by the RadTextBox control.
+
+* __Selection in the control change__: Raises the :
+ [UIA TextPatternIdentifiers.TextSelectionChangedEvent](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.textpattern.textselectionchangedevent?view=windowsdesktop-9.0#system-windows-automation-textpattern-textselectionchangedevent)
+
+* __OnTextChanged__: Raises the:
+ * [UIA TextPatternIdentifiers.TextChangedEvent Field](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.textpatternidentifiers.textchangedevent?view=windowsdesktop-9.0#system-windows-automation-textpatternidentifiers-textchangedevent)
+ * [UIA AutomationElementIdentifiers.NameProperty Field](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.valuepattern.valueproperty?view=windowsdesktop-9.0)
+
+* __OnEnabledChanged__: Raises the [UIA AutomationElementIdentifiers.IsEnabledProperty Field](https://learn.microsoft.com/en-us/dotnet/api/system.windows.automation.automationelementidentifiers.isenabledproperty?view=windowsdesktop-9.0#system-windows-automation-automationelementidentifiers-isenabledproperty)
+
+
+
diff --git a/controls/map/features/copyright_label.md b/controls/map/features/copyright_label.md
new file mode 100644
index 000000000..6ab0c0682
--- /dev/null
+++ b/controls/map/features/copyright_label.md
@@ -0,0 +1,98 @@
+---
+title: Copyright Label
+page_title: Copyright Label - RadMap
+description: Learn how to show Copyright Label in RadMap control.
+slug: winforms/map/features/copyright
+tags: copyright, label, map, features
+published: True
+position: 6
+---
+
+# Copyright Label
+
+The __RadMap__ control displays a copyright label at the bottom of the control.
+
+This label is represented by the __MapCopyrightLabelElement__. You can access it via the __CopyrightLabelElement__ property and set its __Text__ property to customize the displayed content.
+
+>caption Figure 1: Copyright Label
+
+
+
+## Set Copyright Label
+
+````C#
+
+this.radMap1.MapElement.CopyrightLabelElement.Text = "© OpenStreetMap contributors";
+
+````
+````VB.NET
+
+Me.RadMap1.MapElement.CopyrightLabelElement.Text = "© OpenStreetMap contributors"
+
+````
+
+## Customization
+
+The MapCopyrightLabelElement can be further customized to suit your specific requirements.
+
+### Aligment
+
+The element's Alignment property determines its position. While the ContentAlignment enumeration includes vertical options such as Top, Middle, and Bottom, these are not applicable here—the copyright label is always positioned at the bottom of the map. By default, the alignment is set to MiddleRight, as shown in the first image of the article.
+
+> Note that selecting TopRight or BottomRight produces the same visual result due to the fixed bottom placement of the label.
+
+All three center alignments __ContentAlignment.MiddleCenter__, __ContentAlignment.TopCenter__, __ContentAlignment.BottomCenter__ result in the screenshot below:
+
+````C#
+
+this.radMap1.MapElement.CopyrightLabelElement.Alignment = ContentAlignment.MiddleCenter;
+
+````
+````VB.NET
+
+Me.RadMap1.MapElement.CopyrightLabelElement.Alignment = ContentAlignment.MiddleCenter
+
+````
+
+
+
+All three left alignments __ContentAlignment.MiddleLeft__, __ContentAlignment.TopLeft__, __ContentAlignment.BottomLeft__ result in the screenshot below:
+
+````C#
+
+this.radMap1.MapElement.CopyrightLabelElement.Alignment = ContentAlignment.MiddleLeft;
+
+````
+````VB.NET
+
+Me.RadMap1.MapElement.CopyrightLabelElement.Alignment = ContentAlignment.MiddleLeft
+
+````
+
+
+
+
+### Margin
+
+The Margin property of the copyright label element is especially useful for fine-tuning its position relative to surrounding elements. For example, you can adjust the margin values to "stick" the label closer to the bottom edge of the map, if such a design is desired.
+
+````C#
+
+this.radMap1.MapElement.Margin = new Padding(0, 8, 20, 0);
+
+````
+````VB.NET
+
+Me.RadMap1.MapElement.Margin = new Padding(0, 8, 20, 0)
+
+````
+
+
+
+## See Also
+
+* [Layers Overview]({%slug winforms/map/features/layers/overview%})
+* [Mini Map]({%slug winforms/map/features/minimap%})
+* [Navigation Controls]({%slug winforms/map/features/navigation-controls%})
+* [Scale Indicators]({%slug winforms/map/features/scale-indicators%})
+* [Legend]({%slug winforms/map/features/legend%})
diff --git a/controls/map/features/images/map-features-copyright-label-aligment-center.png b/controls/map/features/images/map-features-copyright-label-aligment-center.png
new file mode 100644
index 000000000..3f5de1a8a
Binary files /dev/null and b/controls/map/features/images/map-features-copyright-label-aligment-center.png differ
diff --git a/controls/map/features/images/map-features-copyright-label-aligment-left.png b/controls/map/features/images/map-features-copyright-label-aligment-left.png
new file mode 100644
index 000000000..848830178
Binary files /dev/null and b/controls/map/features/images/map-features-copyright-label-aligment-left.png differ
diff --git a/controls/map/features/images/map-features-copyright-label-aligment-margin.png b/controls/map/features/images/map-features-copyright-label-aligment-margin.png
new file mode 100644
index 000000000..591eceaf7
Binary files /dev/null and b/controls/map/features/images/map-features-copyright-label-aligment-margin.png differ
diff --git a/controls/map/features/images/map-features-copyright-label.png b/controls/map/features/images/map-features-copyright-label.png
new file mode 100644
index 000000000..6b758194a
Binary files /dev/null and b/controls/map/features/images/map-features-copyright-label.png differ
diff --git a/deployment-and-distribution/redistributing-telerik-ui-for-winforms.md b/deployment-and-distribution/redistributing-telerik-ui-for-winforms.md
index df51e7b3c..a921c4116 100644
--- a/deployment-and-distribution/redistributing-telerik-ui-for-winforms.md
+++ b/deployment-and-distribution/redistributing-telerik-ui-for-winforms.md
@@ -21,6 +21,8 @@ The Telerik UI for WinForms suite includes a limited run time royalty-free licen
* WinForms applications that offer a trial or free version of Your application. __If offering a free or trial version of Your Integrated Product, redistribution of the assemblies is not permitted. You are required to protect all Telerik assemblies by using one of the methods below (ILMerge to merge the Telerik WinForms assemblies with the executable file (this does not apply to the Document processing assemblies, see below) of your application OR build the Telerik.WinControls.dll assembly from source code using one of the approaches described below)__
+> With the introduction of our new licensing mechanism, Telerik UI for WinForms has simplified deployment requirements. Starting from 2025 Q2 users are no longer required to protect the Telerik assemblies using the methods described below. Instead, the product now requires a license key that can be [downloaded from Telerik account]({%slug license-key%})). Applications without a valid license will continue to function normally, but will display a watermark.
+
## Examples of Uses that Require Discussion
* Products that expose the design-time functionality of the Telerik RadControls or the VisualStyleBuilder.
diff --git a/getting-started/first-steps.md b/getting-started/first-steps.md
index 4e6eefc5f..de6c790dd 100644
--- a/getting-started/first-steps.md
+++ b/getting-started/first-steps.md
@@ -12,15 +12,37 @@ position: 0
This article explains how to get the Telerik UI for WinForms controls in your project and start using them quickly.
The process consists of the following steps:
-- [First Steps](#first-steps)
- - [Download the Controls](#download-the-controls)
- - [Create a new WinForms Telerik Project](#create-a-new-winforms-telerik-project)
- - [Add Telerik Control to a Form](#add-telerik-control-to-a-form)
- - [Next Steps](#next-steps)
+- [Start Your Free Trial](#first-steps)
+- [Download the Controls](#download-the-controls)
+- [Create a new WinForms Telerik Project](#create-a-new-winforms-telerik-project)
+- [Add Telerik Control to a Form](#add-telerik-control-to-a-form)
+- [Next Steps](#next-steps)
-Once you have your first simple control up and running, take a look at the [next steps](#next-steps) section to start exploring the control functionality in more detail.
+## Start Your Free Trial
+
+* If you already have an [active license](https://www.telerik.com/account/your-licenses) for Telerik UI for WinForms, skip this step and continue with the next step.
+* If you don't have an active license, follow the steps below to activate your free trial:
+
+ 1. [Download](https://www.telerik.com/try/ui-for-winforms) the WinForms Installer and start the installation.
+
+ 1. Make sure that **Telerik UI for .NET WinForms** is selected and continue with the setup.
+
+ 1. Log in with your Telerik account and complete the installation.
+
+ After the successful installation of Telerik UI for Winforms, the Installer activates your 30 day free trial. The installer also downloads your license key file, so you can skip the next step and continue with [Create a new WinForms Telerik Project](#create-a-new-winforms-telerik-project).
+
+## Download Your License Key File
+
+To download and install your Telerik [license key file]({%slug license-key%}):
+
+1. Go to the License Keys page in your Telerik account.
+1. Click the **Download License Key** button.
+1. Save the `telerik-license.txt` file to `%AppData%\Telerik\telerik-license.txt`.
+
+This will make the license key available to all Telerik .NET apps that you develop on your local machine.
## Download the Controls
+
The easiest way to get the controls to your development machine is to use the [Progress Control Panel](https://www.telerik.com/download-trial-file/v2/control-panel) or to download the automated MSI installer from [your telerik.com account](https://www.telerik.com/account/product-download?product=RCWF).
>caption Figure 1: Download automated (.msi) installer
diff --git a/getting-started/images/download-msi.png b/getting-started/images/download-msi.png
index e4e325291..595f73608 100644
Binary files a/getting-started/images/download-msi.png and b/getting-started/images/download-msi.png differ
diff --git a/installation-and-upgrades/distributions.md b/installation-and-upgrades/distributions.md
index 70d876e8e..941010c0d 100644
--- a/installation-and-upgrades/distributions.md
+++ b/installation-and-upgrades/distributions.md
@@ -29,12 +29,14 @@ This article dives into UI controls, focusing on their compatibility with Micros
|.NET Core 3.0| R1 2019 - R3 2019 SP1|.NET Core 3.0|
|.NET Core 3.1| R1 2020 - R1 2024|.NET Core 3.1 and later|
|.NET 5| R2 2020 - R3 2022 SP2|.NET 5 and later|
-|.NET 6| R3 2021 SP1 - present|.NET 6 and later |
+|.NET 6| R3 2021 SP1 - 2025 Q1|.NET 6 and later |
|.NET 7| R3 2022 SP2 - 2024 Q3|.NET 7 and later|
|.NET 8| 2024 Q2 - present|NET 8 and later|
|.NET 9| 2024 Q4 - present|NET 9 and later|
+>note .NET 6 distribution is discontinued in 2025 Q2. For more informstion see [Microsoft .NET and .NET Core Support Policy](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core).
+
## See Also
* [Assemblies Version]({%slug assemblies-version%})
diff --git a/installation-and-upgrades/download-product-files.md b/installation-and-upgrades/download-product-files.md
index f105debcc..271141cdc 100644
--- a/installation-and-upgrades/download-product-files.md
+++ b/installation-and-upgrades/download-product-files.md
@@ -11,7 +11,7 @@ previous_url: installation-deployment-and-distribution-download-product-files
# Download Product Files
-When you purchase a Telerik UI for WinForms license, you can download the following files:
+When you purchase a **Telerik UI for WinForms** license, you can download the following files from your **Telerik account**:
* Standalone MSI installer
@@ -25,7 +25,9 @@ When you purchase a Telerik UI for WinForms license, you can download the follow
* Source code
-* Documentation files
+* Offline documentation in PDF files, including separate files for:
+ - Telerik UI for WinForms
+ - Telerik Document Processing
Тo download these files follow the steps below:
@@ -49,6 +51,5 @@ When you purchase a Telerik UI for WinForms license, you can download the follow
## See Also
* [How to Attach the Telerik Source Code to Your Project]({%slug attach-telerik-source-code-to-your-project%})
-* [How to Upgrade Trial to Licensed Version]({%slug upgrade-trial-to-licensed-version%})
* [Preview Releases]({%slug winforms/installation-deployment-and-distribution/preview-releases%})
diff --git a/installation-and-upgrades/system-requirements.md b/installation-and-upgrades/system-requirements.md
index 928f5e90e..661972f97 100644
--- a/installation-and-upgrades/system-requirements.md
+++ b/installation-and-upgrades/system-requirements.md
@@ -25,7 +25,7 @@ Telerik UI for WinForms can be installed on any operating system that supports .
## .NET Framework and .NET
- [.NET Framework 4.6.2, .NET Framework 4.8 and later](https://learn.microsoft.com/en-us/dotnet/framework/get-started/system-requirements)
-- [.NET 6, .NET 8, .NET 9 and later](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md)
+- [.NET 8, .NET 9 and later](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md)
## Development Environment
diff --git a/installation-and-upgrades/updating-assemblies-in-a-project.md b/installation-and-upgrades/updating-assemblies-in-a-project.md
index a1cb5a6bc..017507b02 100644
--- a/installation-and-upgrades/updating-assemblies-in-a-project.md
+++ b/installation-and-upgrades/updating-assemblies-in-a-project.md
@@ -39,5 +39,4 @@ Now, you are ready to build and run your project with the downloaded version fro
# See Also
* [Download Product Files]({%slug winforms/installation-deployment-and-distribution/download-product-files%})
-* [How to Upgrade a Telerik UI for WinForms Project]({%slug how-to-upgrade-a-project%})
-* [How to Upgrade Trial to Licensed Version]({%slug upgrade-trial-to-licensed-version%})
\ No newline at end of file
+* [How to Upgrade a Telerik UI for WinForms Project]({%slug how-to-upgrade-a-project%})
\ No newline at end of file
diff --git a/integration-with-other-telerik-products/document-processing-libraries.md b/integration-with-other-telerik-products/document-processing-libraries.md
index 5f07238ba..3cde85782 100644
--- a/integration-with-other-telerik-products/document-processing-libraries.md
+++ b/integration-with-other-telerik-products/document-processing-libraries.md
@@ -66,5 +66,4 @@ The [RadTreeView] control facilitates display, management, and navigation of hie
* [Getting Started with Telerik Document Processing Libraries](https://docs.telerik.com/devtools/document-processing/getting-started/getting-started#getting-started-with-telerik-document-processing)
* [Installing on Your Computer](https://docs.telerik.com/devtools/document-processing/getting-started/installation/installing-on-your-computer)
-* [Trial Version and Commercial License](https://docs.telerik.com/devtools/document-processing/introduction#trial-version-and-commercial-license)
* [System Requirements](https://docs.telerik.com/devtools/document-processing/getting-started/installation/system-requirements)
diff --git a/introduction.md b/introduction.md
index 648308b03..15a154e5b 100644
--- a/introduction.md
+++ b/introduction.md
@@ -28,7 +28,7 @@ Here are quick links to the control-specific sections of our documentation:
{% include intro-page-table.html %}
-## Trial Version and Commercial License
+## Trial and Commercial License
Telerik UI for WinForms suite is a commercial UI library. You are welcome to explore its full functionality and get technical support from the team when you register for a free 30-day trial. To use it commercially, you need to [purchase a license](https://www.telerik.com/purchase.aspx). Feel free to review the Telerik UI for WinForm [License Agreement](https://www.telerik.com/purchase/license-agreement/winforms-dlw-s) to get acquainted with the full terms of use.
diff --git a/knowledge-base/distinguishing-between-versions-dev-trial.md b/knowledge-base/distinguishing-between-versions-dev-trial.md
index 090b1a426..8a4294c24 100644
--- a/knowledge-base/distinguishing-between-versions-dev-trial.md
+++ b/knowledge-base/distinguishing-between-versions-dev-trial.md
@@ -6,6 +6,7 @@ page_title: Distinguishing between versions – Dev/Trial
slug: distinguishing-between-versions-dev-trial
tags: common
res_type: kb
+published: false
---
diff --git a/knowledge-base/installing-local-documentation-for-ms-help-viewer-(help3)-in-visual-studio-2012-and-2013.md b/knowledge-base/installing-local-documentation-for-ms-help-viewer-(help3)-in-visual-studio-2012-and-2013.md
deleted file mode 100644
index b98065de7..000000000
--- a/knowledge-base/installing-local-documentation-for-ms-help-viewer-(help3)-in-visual-studio-2012-and-2013.md
+++ /dev/null
@@ -1,60 +0,0 @@
----
-title: Installing local documentation for MS Help viewer (Help3) in Visual Studio 2012 and 2013
-description: Installing local documentation for MS Help viewer (Help3) in Visual Studio 2012 and 2013. Check it now!
-type: how-to
-page_title: Installing local documentation for MS Help viewer (Help3) in Visual Studio 2012 and 2013
-slug: installing-local-documentation-for-ms-help-viewer-(help3)-in-visual-studio-2012-and-2013
-tags: common, help3
-res_type: kb
----
-
-|Date Posted|Product|Author|
-|----|----|----|
-|15/1/2014|Telerik UI for WinForms|[Dimitar Karamfilov](https://www.telerik.com/blogs/author/dimitar-karamfilov)|
-
-
-## How To
-
-Install local documentation for MS Help Viewer (2.0/2.1) in Visual Studio 2012 and 2013.
-
-## Description
-
-Telerik UI for WinForms local documentation for Visual Studio 2010 (Help3) is distributed as a separate installation. The zipped Help3 installation can be downloaded from your Telerik account and installed using the instructions below:
-
-
-## Solution
-
-How to install local documentation on your machine:
-
-1\. Unblock the downloaded file. This is done by right-clicking the file -> properties -> clicking on the Unblock button in the General tab. If this button is not present this step is not needed.
-
-2\. Unzip the local documentation (Telerik\_UI\_For\_WinForms\_MsHelp3\_2013\_X\_XX\_XX.zip) content downloaded from Telerik website
-
-3\. Launch Microsoft Help Viewer:
-
--in-visual-studio-2012-and-2013001.png)
-
-4\. Change the installation source to **Disc**:
--in-visual-studio-2012-and-2013002.png)
-
-5\. Browse to the **.msha** file, **Select** it, click **Open**:
-
--in-visual-studio-2012-and-2013003.png)
-
-6\. Click ‘**Add**’ action:
-
--in-visual-studio-2012-and-2013004.png)
-
-7\. Click ‘**Update**’ button:
-
--in-visual-studio-2012-and-2013005.png)
-
-8\. When asked to proceed click ‘**Yes**’. Note that it could take some time to finish the installation:
-
--in-visual-studio-2012-and-2013006.png)
-
-9\. View the help:
-
--in-visual-studio-2012-and-2013007.png)
-
-
diff --git a/knowledge-base/installing-local-documentation-for-ms-help-viewer-help3-in-visual-studio-2010.md b/knowledge-base/installing-local-documentation-for-ms-help-viewer-help3-in-visual-studio-2010.md
deleted file mode 100644
index eee7dcbe4..000000000
--- a/knowledge-base/installing-local-documentation-for-ms-help-viewer-help3-in-visual-studio-2010.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: Installing local documentation for MS Help viewer (Help3) in Visual Studio 2010
-description: Installing local documentation for MS Help viewer (Help3) in Visual Studio 2010. Check it now!
-type: how-to
-page_title: Installing local documentation for MS Help viewer (Help3) in Visual Studio 2010
-slug: installing-local-documentation-for-ms-help-viewer-help3-in-visual-studio-2010
-tags: common, help3
-res_type: kb
----
-
-|Date Posted|Product|Author|
-|----|----|----|
-|15/01/2014|Telerik UI for WinForms Visual Studio 2010 Help 3|[Desislava Yordanova](https://www.telerik.com/blogs/author/desislava-yordanova)|
-
-## How To
-
-Install local documentation for MS Help Viewer (1.0/1.1) in Visual Studio 2010
-
-## Description
-
-Telerik UI for WinForms local documentation for Visual Studio 2010 (Help3) is distributed as a separate installation. The zipped Help3 installation can be downloaded from your Telerik account and installed using the instructions below:
-
-## Solution
-
-How to install local documentation on our machine:
-
-1\. Unblock the downloaded file. This is done by right-clicking the file -> properties -> clicking on the Unblock button in the General tab. If this button is not present this step is not needed.
-
-2\. Unzip the documentation archive (Telerik\_UI\_For\_WinForms\_MsHelp3\_2013\_x\_xx\_xx.zip) content downloaded from Telerik website.
-
-3\. Launch HelpLibManager utility.
-
-
-
-4\. [Optional] If not initialized set Help Viewer local content location
-
-
-
-5\. Select ‘**Install content from disk**’ option. In case that you have already installed another local documentation of Telerik UI for WinForms, you should remove the old one before installing the new one through the '**Remove content**' option.
-
-
-
-6\. Browse to the **.msha**
-
-
-
-7\. **Select it**, click **Open** and **Next**
-
-
-
-8\. Click ‘**Add**’ action
-
-
-
-9\. Click ‘**Update**’ button
-
-
-
-10\. When asked to proceed click ‘**Yes**’. Note that it could take some time to finish the installation.
-
-
-
-11\. Finish the installation
-
-
-
-12\. Launch the local help viewer
-
-
-
-13\. If not initialized choose to view local help content
-
-
-
-14\. Enjoy
-
-
-
-
-
diff --git a/knowledge-base/unblock-resx-files-downloaded-in-source-code.md b/knowledge-base/unblock-resx-files-downloaded-in-source-code.md
index 9ba936d68..c313367b8 100644
--- a/knowledge-base/unblock-resx-files-downloaded-in-source-code.md
+++ b/knowledge-base/unblock-resx-files-downloaded-in-source-code.md
@@ -1,6 +1,6 @@
---
title: Unblock .resx Files Downloaded in Telerik WinForms Source Code
-description: This tutorial explains in details how to upgrade your Telerik trial to a licensed version.
+description: This tutorial explains how to unblock .resx files downloaded in Telerik WinForms Source Code.
type: how-to
page_title: How to Unblock .resx Files Downloaded in Telerik WinForms Source Code
slug: unblock-resx-files-downloaded-in-source-code
diff --git a/knowledge-base/upgrade-trial-to-licensed-version.md b/knowledge-base/upgrade-trial-to-licensed-version.md
index 1b1795d68..1d383c89b 100644
--- a/knowledge-base/upgrade-trial-to-licensed-version.md
+++ b/knowledge-base/upgrade-trial-to-licensed-version.md
@@ -7,6 +7,7 @@ slug: upgrade-trial-to-licensed-version
position:
tags: common
ticketid: 1619579
+published: false
res_type: kb
---
diff --git a/licensing/images/banner.png b/licensing/images/banner.png
new file mode 100644
index 000000000..b329b6029
Binary files /dev/null and b/licensing/images/banner.png differ
diff --git a/licensing/images/modal-dialog.png b/licensing/images/modal-dialog.png
new file mode 100644
index 000000000..83e4ca00d
Binary files /dev/null and b/licensing/images/modal-dialog.png differ
diff --git a/licensing/images/watermark.png b/licensing/images/watermark.png
new file mode 100644
index 000000000..1b43ab8da
Binary files /dev/null and b/licensing/images/watermark.png differ
diff --git a/licensing/license-errors-warnings.md b/licensing/license-errors-warnings.md
index 22a10e46f..bd78a3456 100644
--- a/licensing/license-errors-warnings.md
+++ b/licensing/license-errors-warnings.md
@@ -29,6 +29,35 @@ An invalid license can be caused by any of the following:
- Not installing a license key in your application.
- Not updating the license key after renewing your Telerik UI for .NET WinForms license.
+## License Warnings
+
+If you use Telerik UI for WinForms in a project with an invalid license, the UI components exhibit the following invalid license attributes:
+
+* A [watermark](#watermark) appears over a number of selected components.
+* A [banner](#banner) is rendered on pages that use the Telerik UI for WinForms components.
+* A [modal dialog](#modal-dialog) appears on pages when your Telerik UI for WinForms license has expired.
+
+### Watermark
+
+A watermark appearing on the form using Telerik UI for WinForms controls:
+
+
+
+### Banner
+
+A banner appears on pages that use unlicensed Telerik UI for WinForms components:
+
+
+
+* Clicking the ? button of the banner takes you to the Telerik licensing price page.
+* Clicking the x button of the banner closes it until the page is reloaded or a license is activated.
+
+### Modal Dialog
+
+A modal dialog appears on pages when your Telerik UI for WinForms license has expired:
+
+
+
## License Warnings and Errors
When using Telerik UI for .NET WinForms in a project with an expired or missing license, the `Telerik.Licensing` build task will indicate the following errors or conditions:
diff --git a/telerik-presentation-framework/kb-related-articles.md b/telerik-presentation-framework/kb-related-articles.md
index 8ccfb812a..958e9e847 100644
--- a/telerik-presentation-framework/kb-related-articles.md
+++ b/telerik-presentation-framework/kb-related-articles.md
@@ -27,7 +27,6 @@ The following article list Knowledge Base articles related to this section of co
|[Customize the Color for SVG Images]({%slug customize-the-color-for-svg-images%})|
|[Dashboard Demo]({%slug dashboard-demo%})|
|[Designer is Not Loading]({%slug designer-not-loading%})|
-|[Distinguishing between versions – Dev/Trial]({%slug distinguishing-between-versions-dev-trial%})|
|[Docking controls on a form in a Windows Forms application]({%slug docking-controls-on-a-form-in-a-windows-forms-application%})|
|[Double Buffered Table Layout Panel]({%slug double-Buffered-table-layout-panel%})|
|[Examine the GAC and remove old assemblies]({%slug radcontrols-examine-the-gac%})|
@@ -64,13 +63,10 @@ The following article list Knowledge Base articles related to this section of co
|[How to Send and Receive Messages Between Windows Forms Applications]({%slug send-receive-messages-between-windows-forms-applications%})|
|[How to Share Localization Providers and Spell Checking Dictionaries]({%slug share-localization-providers-and-dictionaries%})|
|[How to Upgrade a Telerik UI for WinForms Project]({%slug how-to-upgrade-a-project%})|
-|[How to Upgrade Trial to Licensed Version]({%slug upgrade-trial-to-licensed-version%})|
|[How to Upload Files to Progress SFTP]({%slug upload-files-to-progress-ftp%})|
|[How to Use a Custom Theme as Default for the Entire Application]({%slug custom-theme-as-default%})|
|[Implementing a chrome window]({%slug implementing-a-chrome-window%})|
|[Increasing the execution speed of Telerik assemblies]({%slug increasing-the-execution-speed-of-telerik-assemblies%})|
-|[Installing local documentation for MS Help viewer (Help3) in Visual Studio 2010]({%slug installing-local-documentation-for-ms-help-viewer-help3-in-visual-studio-2010%})|
-|[Installing local documentation for MS Help viewer (Help3) in Visual Studio 2012 and 2013]({%slug installing-local-documentation-for-ms-help-viewer-(help3)-in-visual-studio-2012-and-2013%})|
|[License file (licx)]({%slug kb-license-file-licx%})|
|[Load theme components in a separate thread]({%slug load-theme-components-in-a-separate-thread%})|
|[Local Code Execution Vulnerability]({%slug local-code-execution-vulnerability%})|
diff --git a/visual-studio-integration/visual-studio-extensions/images/installation-deployment-and-distribution-vsx-automatic-latest-version-acquirer001.png b/visual-studio-integration/visual-studio-extensions/images/installation-deployment-and-distribution-vsx-automatic-latest-version-acquirer001.png
index 7c5a00c4e..03299e6f1 100644
Binary files a/visual-studio-integration/visual-studio-extensions/images/installation-deployment-and-distribution-vsx-automatic-latest-version-acquirer001.png and b/visual-studio-integration/visual-studio-extensions/images/installation-deployment-and-distribution-vsx-automatic-latest-version-acquirer001.png differ
diff --git a/visual-studio-integration/visual-studio-extensions/latest-version-acquirer.md b/visual-studio-integration/visual-studio-extensions/latest-version-acquirer.md
index d684eec1f..6fb638fd8 100644
--- a/visual-studio-integration/visual-studio-extensions/latest-version-acquirer.md
+++ b/visual-studio-integration/visual-studio-extensions/latest-version-acquirer.md
@@ -32,8 +32,6 @@ Clicking the __Update Now__ button starts the Latest Version Acquirer tool, prom
You can use the **Remember me** check-box to save having to enter your Telerik credentials multiple times. The persistence is done in a secure manner and credentials are saved in a per-user context. This way other users on the machine that do not have access to your user data from downloading through your account.
-If your subscription has expired, you could either proceed with downloading a trial distribution or you could renew it and initiate the download again.
-

You can check the additional information about the release by clicking the __Release Notes__ link. This will start a browser, navigated to a page with the release notes related to the specific version.