You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.3 KiB
32 lines
1.3 KiB
# https://github.com/farag2/Sophia-Script-for-Windows/blob/master/sophia_script_versions.json
|
|
$Parameters = @{
|
|
Uri = "https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/sophia_script_versions.json"
|
|
}
|
|
$LatestRelease = (Invoke-RestMethod @Parameters).Sophia_Script_Windows_10_PowerShell_5_1
|
|
|
|
Write-Verbose -Message "Sophia.Script.for.Windows.10.v$LatestRelease.zip" -Verbose
|
|
|
|
New-Item -Path "Sophia_Script_for_Windows_10_v$LatestRelease\bin" -ItemType Directory -Force
|
|
|
|
$Parameters = @{
|
|
Path = @("Scripts\LGPO.exe")
|
|
Destination = "Sophia_Script_for_Windows_10_v$LatestRelease\bin"
|
|
Recurse = $true
|
|
Force = $true
|
|
}
|
|
Copy-Item @Parameters
|
|
|
|
Get-ChildItem -Path "src\Sophia_Script_for_Windows_10" -Force | Copy-Item -Destination "Sophia_Script_for_Windows_10_v$LatestRelease" -Recurse -Force
|
|
|
|
$Parameters = @{
|
|
Path = "Sophia_Script_for_Windows_10_v$LatestRelease"
|
|
DestinationPath = "Sophia.Script.for.Windows.10.v$LatestRelease.zip"
|
|
CompressionLevel = "Fastest"
|
|
Force = $true
|
|
}
|
|
Compress-Archive @Parameters
|
|
|
|
# Calculate hash
|
|
Get-Item -Path "Sophia.Script.for.Windows.10.v$LatestRelease.zip" -Force | ForEach-Object -Process {
|
|
"$($_.Name) $((Get-FileHash -LiteralPath $_.FullName -Algorithm SHA256).Hash)"
|
|
} | Add-Content -Path SHA256SUM -Encoding utf8 -Force
|
|
|