Skip to content

Commit ba33c34

Browse files
author
devizer
committed
CU1 for SQL Server 2025
1 parent c00b83a commit ba33c34

2 files changed

Lines changed: 22 additions & 2 deletions

File tree

Install-SqlServer-Version-Management.ps1

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Param(
44
)
55

66
$ModuleName = 'SqlServer-Version-Management';
7-
$ModuleVersion = '2.1.180';
7+
$ModuleVersion = '2.1.181';
88
$ModuleFiles = @(
99
@{
1010
FileName = 'SqlServer-Version-Management\SqlServer-Version-Management.psd1';
@@ -15,7 +15,7 @@ $ModuleFiles = @(
1515
" ModuleToProcess = @('SqlServer-Version-Management.psm1')",
1616
"",
1717
" # Version below is automatically incremented on build",
18-
" ModuleVersion = `"2.1.180`"",
18+
" ModuleVersion = `"2.1.181`"",
1919
"",
2020
" GUID = 'dd03b53d-575a-4056-ae08-e6dfea3384ea'",
2121
"",
@@ -2545,6 +2545,16 @@ $ModuleFiles = @(
25452545
" # Core is the same as Developer. the difference is PIDs",
25462546
" `"https://download.microsoft.com/download/dea8c210-c44a-4a9d-9d80-0c81578860c5/ENU/SQLServer2025-x64-ENU.box`",",
25472547
" `"https://download.microsoft.com/download/dea8c210-c44a-4a9d-9d80-0c81578860c5/ENU/SQLServer2025-x64-ENU.exe`")",
2548+
" ",
2549+
" CU=@(",
2550+
" @{ Id=`"CU1`"; ",
2551+
" Url=@(",
2552+
" `"https://download.microsoft.com/download/69e0b8fc-1c50-41bd-a576-b9c66b2f302a/SQLServer2025-KB5078298-x64.exe`",",
2553+
" `"https://archive.org/download/sql_server_2016_2017_2019_2022_comulative_updates/SQLServer2025-KB5078298-x64.exe`"",
2554+
" );",
2555+
" }",
2556+
" )",
2557+
"",
25482558
" },",
25492559
" @{",
25502560
" Version=`"2022`"",

SqlServer-Version-Management.ps1

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2412,6 +2412,16 @@ $SqlServerDownloadLinks = @(
24122412
# Core is the same as Developer. the difference is PIDs
24132413
"https://download.microsoft.com/download/dea8c210-c44a-4a9d-9d80-0c81578860c5/ENU/SQLServer2025-x64-ENU.box",
24142414
"https://download.microsoft.com/download/dea8c210-c44a-4a9d-9d80-0c81578860c5/ENU/SQLServer2025-x64-ENU.exe")
2415+
2416+
CU=@(
2417+
@{ Id="CU1";
2418+
Url=@(
2419+
"https://download.microsoft.com/download/69e0b8fc-1c50-41bd-a576-b9c66b2f302a/SQLServer2025-KB5078298-x64.exe",
2420+
"https://archive.org/download/sql_server_2016_2017_2019_2022_comulative_updates/SQLServer2025-KB5078298-x64.exe"
2421+
);
2422+
}
2423+
)
2424+
24152425
},
24162426
@{
24172427
Version="2022"

0 commit comments

Comments
 (0)