mirror of
https://github.com/mrpond/BlockTheSpot.git
synced 2025-05-12 10:57:10 +02:00
Extract powershell install script from batch
This commit is contained in:
parent
95f87d757f
commit
b70d2ab7ff
2 changed files with 186 additions and 188 deletions
190
BlockTheSpot.bat
190
BlockTheSpot.bat
|
@ -1,188 +1,4 @@
|
||||||
;;;===,,,@echo off
|
@echo off
|
||||||
;;;===,,,findstr /v "^;;;===,,," "%~f0" > "%~dp0ps.ps1"
|
PowerShell.exe Invoke-WebRequest -UseBasicParsing "https://raw.githubusercontent.com/Dav-Forks-lab/BlockTheSpot/master/install.ps1" | Invoke-Expression
|
||||||
;;;===,,,PowerShell.exe -ExecutionPolicy Bypass -Command "& '%~dp0ps.ps1'"
|
pause
|
||||||
;;;===,,,del /s /q "%~dp0ps.ps1" >NUL 2>&1
|
|
||||||
;;;===,,,pause
|
|
||||||
;;;===,,,exit
|
|
||||||
# Ignore errors from `Stop-Process`
|
|
||||||
$PSDefaultParameterValues['Stop-Process:ErrorAction'] = 'SilentlyContinue'
|
|
||||||
|
|
||||||
write-host @'
|
|
||||||
*****************
|
|
||||||
@mrpond message:
|
|
||||||
#Thailand #ThaiProtest #ThailandProtest #freeYOUTH
|
|
||||||
Please retweet these hashtag, help me stop dictator government!
|
|
||||||
*****************
|
|
||||||
'@
|
|
||||||
|
|
||||||
write-host @'
|
|
||||||
*****************
|
|
||||||
Author: @Nuzair46
|
|
||||||
*****************
|
|
||||||
'@
|
|
||||||
|
|
||||||
$SpotifyDirectory = "$env:APPDATA\Spotify"
|
|
||||||
$SpotifyExecutable = "$SpotifyDirectory\Spotify.exe"
|
|
||||||
$SpotifyApps = "$SpotifyDirectory\Apps"
|
|
||||||
|
|
||||||
Write-Host 'Stopping Spotify...'`n
|
|
||||||
Stop-Process -Name Spotify
|
|
||||||
Stop-Process -Name SpotifyWebHelper
|
|
||||||
|
|
||||||
if (Get-AppxPackage -Name SpotifyAB.SpotifyMusic) {
|
|
||||||
Write-Host @'
|
|
||||||
The Microsoft Store version of Spotify has been detected which is not supported.
|
|
||||||
'@`n
|
|
||||||
$ch = Read-Host -Prompt "Uninstall Spotify Windows Store edition (Y/N) "
|
|
||||||
if ($ch -eq 'y'){
|
|
||||||
Write-Host @'
|
|
||||||
Uninstalling Spotify.
|
|
||||||
'@`n
|
|
||||||
Get-AppxPackage -Name SpotifyAB.SpotifyMusic | Remove-AppxPackage
|
|
||||||
} else{
|
|
||||||
Write-Host @'
|
|
||||||
Exiting...
|
|
||||||
'@`n
|
|
||||||
Pause
|
|
||||||
exit
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Push-Location -LiteralPath $env:TEMP
|
|
||||||
try {
|
|
||||||
# Unique directory name based on time
|
|
||||||
New-Item -Type Directory -Name "BlockTheSpot-$(Get-Date -UFormat '%Y-%m-%d_%H-%M-%S')" `
|
|
||||||
| Convert-Path `
|
|
||||||
| Set-Location
|
|
||||||
} catch {
|
|
||||||
Write-Output $_
|
|
||||||
Pause
|
|
||||||
exit
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host 'Downloading latest patch (chrome_elf.zip)...'`n
|
|
||||||
$webClient = New-Object -TypeName System.Net.WebClient
|
|
||||||
try {
|
|
||||||
$webClient.DownloadFile(
|
|
||||||
# Remote file URL
|
|
||||||
'https://github.com/mrpond/BlockTheSpot/releases/latest/download/chrome_elf.zip',
|
|
||||||
# Local file path
|
|
||||||
"$PWD\chrome_elf.zip"
|
|
||||||
)
|
|
||||||
} catch {
|
|
||||||
Write-Output $_
|
|
||||||
Sleep
|
|
||||||
}
|
|
||||||
<#
|
|
||||||
try {
|
|
||||||
$webClient.DownloadFile(
|
|
||||||
# Remote file URL
|
|
||||||
'https://github.com/mrpond/BlockTheSpot/files/5969916/zlink.zip',
|
|
||||||
# Local file path
|
|
||||||
"$PWD\zlink.zip"
|
|
||||||
)
|
|
||||||
} catch {
|
|
||||||
Write-Output $_
|
|
||||||
Sleep
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
$webClient.DownloadFile(
|
|
||||||
# Remote file URL
|
|
||||||
'https://github.com/mrpond/BlockTheSpot/files/6234124/xpui.zip',
|
|
||||||
# Local file path
|
|
||||||
"$PWD\xpui.zip"
|
|
||||||
)
|
|
||||||
} catch {
|
|
||||||
Write-Output $_
|
|
||||||
Sleep
|
|
||||||
}
|
|
||||||
#>
|
|
||||||
Expand-Archive -Force -LiteralPath "$PWD\chrome_elf.zip" -DestinationPath $PWD
|
|
||||||
Remove-Item -LiteralPath "$PWD\chrome_elf.zip"
|
|
||||||
<#
|
|
||||||
Expand-Archive -Force -LiteralPath "$PWD\zlink.zip" -DestinationPath $PWD
|
|
||||||
Remove-Item -LiteralPath "$PWD\zlink.zip"
|
|
||||||
Expand-Archive -Force -LiteralPath "$PWD\xpui.zip" -DestinationPath $PWD
|
|
||||||
Remove-Item -LiteralPath "$PWD\xpui.zip"
|
|
||||||
#>
|
|
||||||
$spotifyInstalled = (Test-Path -LiteralPath $SpotifyExecutable)
|
|
||||||
if (-not $spotifyInstalled) {
|
|
||||||
Write-Host @'
|
|
||||||
Spotify installation was not detected.
|
|
||||||
Downloading Latest Spotify full setup, please wait...
|
|
||||||
'@
|
|
||||||
try {
|
|
||||||
$webClient.DownloadFile(
|
|
||||||
# Remote file URL
|
|
||||||
'https://download.scdn.co/SpotifyFullSetup.exe',
|
|
||||||
# Local file path
|
|
||||||
"$PWD\SpotifyFullSetup.exe"
|
|
||||||
)
|
|
||||||
} catch {
|
|
||||||
Write-Output $_
|
|
||||||
Pause
|
|
||||||
exit
|
|
||||||
}
|
|
||||||
mkdir $SpotifyDirectory >$null 2>&1
|
|
||||||
Write-Host 'Running installation...'
|
|
||||||
Start-Process -FilePath "$PWD\SpotifyFullSetup.exe"
|
|
||||||
Write-Host 'Stopping Spotify...Again'
|
|
||||||
while ((Get-Process -name Spotify -ErrorAction SilentlyContinue) -eq $null){
|
|
||||||
#waiting until installation complete
|
|
||||||
}
|
|
||||||
Stop-Process -Name Spotify >$null 2>&1
|
|
||||||
Stop-Process -Name SpotifyWebHelper >$null 2>&1
|
|
||||||
Stop-Process -Name SpotifyFullSetup >$null 2>&1
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!(test-path $SpotifyDirectory/chrome_elf.dll.bak)){
|
|
||||||
move $SpotifyDirectory\chrome_elf.dll $SpotifyDirectory\chrome_elf.dll.bak >$null 2>&1
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Host 'Patching Spotify...'
|
|
||||||
$patchFiles = "$PWD\chrome_elf.dll", "$PWD\config.ini"
|
|
||||||
<#
|
|
||||||
$remup = "$PWD\zlink.spa"
|
|
||||||
$uipat = "$PWD\xpui.spa"
|
|
||||||
#>
|
|
||||||
Copy-Item -LiteralPath $patchFiles -Destination "$SpotifyDirectory"
|
|
||||||
<#
|
|
||||||
$ch = Read-Host -Prompt "Optional - Remove Upgrade Button. (Y/N) "
|
|
||||||
if ($ch -eq 'y'){
|
|
||||||
move $SpotifyApps\zlink.spa $SpotifyApps\zlink.spa.bak >$null 2>&1
|
|
||||||
Copy-Item -LiteralPath $remup -Destination "$SpotifyApps"
|
|
||||||
} else{
|
|
||||||
Write-Host @'
|
|
||||||
Won't remove Upgrade Button.
|
|
||||||
'@`n
|
|
||||||
}
|
|
||||||
|
|
||||||
$ch = Read-Host -Prompt "Change Alpha UI back to Old UI. (BTS only supports Old UI). (Y/N) "
|
|
||||||
if ($ch -eq 'y'){
|
|
||||||
move $SpotifyApps\xpui.spa $SpotifyApps\xpui.spa.bak >$null 2>&1
|
|
||||||
Copy-Item -LiteralPath $uipat -Destination "$SpotifyApps"
|
|
||||||
} else{
|
|
||||||
Write-Host @'
|
|
||||||
UI isn't changed.
|
|
||||||
'@`n
|
|
||||||
}
|
|
||||||
#>
|
|
||||||
|
|
||||||
$tempDirectory = $PWD
|
|
||||||
Pop-Location
|
|
||||||
|
|
||||||
Remove-Item -Recurse -LiteralPath $tempDirectory
|
|
||||||
|
|
||||||
Write-Host 'Patching Complete, starting Spotify...'
|
|
||||||
Start-Process -WorkingDirectory $SpotifyDirectory -FilePath $SpotifyExecutable
|
|
||||||
Write-Host 'Done.'
|
|
||||||
|
|
||||||
write-host @'
|
|
||||||
*****************
|
|
||||||
@mrpond message:
|
|
||||||
#Thailand #ThaiProtest #ThailandProtest #freeYOUTH
|
|
||||||
Please retweet these hashtag, help me stop dictator government!
|
|
||||||
*****************
|
|
||||||
'@
|
|
||||||
|
|
||||||
exit
|
exit
|
182
install.ps1
Normal file
182
install.ps1
Normal file
|
@ -0,0 +1,182 @@
|
||||||
|
# Ignore errors from `Stop-Process`
|
||||||
|
$PSDefaultParameterValues['Stop-Process:ErrorAction'] = 'SilentlyContinue'
|
||||||
|
|
||||||
|
write-host @'
|
||||||
|
*****************
|
||||||
|
@mrpond message:
|
||||||
|
#Thailand #ThaiProtest #ThailandProtest #freeYOUTH
|
||||||
|
Please retweet these hashtag, help me stop dictator government!
|
||||||
|
*****************
|
||||||
|
'@
|
||||||
|
|
||||||
|
write-host @'
|
||||||
|
*****************
|
||||||
|
Author: @Nuzair46
|
||||||
|
*****************
|
||||||
|
'@
|
||||||
|
|
||||||
|
$SpotifyDirectory = "$env:APPDATA\Spotify"
|
||||||
|
$SpotifyExecutable = "$SpotifyDirectory\Spotify.exe"
|
||||||
|
$SpotifyApps = "$SpotifyDirectory\Apps"
|
||||||
|
|
||||||
|
Write-Host 'Stopping Spotify...'`n
|
||||||
|
Stop-Process -Name Spotify
|
||||||
|
Stop-Process -Name SpotifyWebHelper
|
||||||
|
|
||||||
|
if (Get-AppxPackage -Name SpotifyAB.SpotifyMusic) {
|
||||||
|
Write-Host @'
|
||||||
|
The Microsoft Store version of Spotify has been detected which is not supported.
|
||||||
|
'@`n
|
||||||
|
$ch = Read-Host -Prompt "Uninstall Spotify Windows Store edition (Y/N) "
|
||||||
|
if ($ch -eq 'y'){
|
||||||
|
Write-Host @'
|
||||||
|
Uninstalling Spotify.
|
||||||
|
'@`n
|
||||||
|
Get-AppxPackage -Name SpotifyAB.SpotifyMusic | Remove-AppxPackage
|
||||||
|
} else{
|
||||||
|
Write-Host @'
|
||||||
|
Exiting...
|
||||||
|
'@`n
|
||||||
|
Pause
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Push-Location -LiteralPath $env:TEMP
|
||||||
|
try {
|
||||||
|
# Unique directory name based on time
|
||||||
|
New-Item -Type Directory -Name "BlockTheSpot-$(Get-Date -UFormat '%Y-%m-%d_%H-%M-%S')" `
|
||||||
|
| Convert-Path `
|
||||||
|
| Set-Location
|
||||||
|
} catch {
|
||||||
|
Write-Output $_
|
||||||
|
Pause
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host 'Downloading latest patch (chrome_elf.zip)...'`n
|
||||||
|
$webClient = New-Object -TypeName System.Net.WebClient
|
||||||
|
try {
|
||||||
|
$webClient.DownloadFile(
|
||||||
|
# Remote file URL
|
||||||
|
'https://github.com/mrpond/BlockTheSpot/releases/latest/download/chrome_elf.zip',
|
||||||
|
# Local file path
|
||||||
|
"$PWD\chrome_elf.zip"
|
||||||
|
)
|
||||||
|
} catch {
|
||||||
|
Write-Output $_
|
||||||
|
Sleep
|
||||||
|
}
|
||||||
|
<#
|
||||||
|
try {
|
||||||
|
$webClient.DownloadFile(
|
||||||
|
# Remote file URL
|
||||||
|
'https://github.com/mrpond/BlockTheSpot/files/5969916/zlink.zip',
|
||||||
|
# Local file path
|
||||||
|
"$PWD\zlink.zip"
|
||||||
|
)
|
||||||
|
} catch {
|
||||||
|
Write-Output $_
|
||||||
|
Sleep
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
$webClient.DownloadFile(
|
||||||
|
# Remote file URL
|
||||||
|
'https://github.com/mrpond/BlockTheSpot/files/6234124/xpui.zip',
|
||||||
|
# Local file path
|
||||||
|
"$PWD\xpui.zip"
|
||||||
|
)
|
||||||
|
} catch {
|
||||||
|
Write-Output $_
|
||||||
|
Sleep
|
||||||
|
}
|
||||||
|
#>
|
||||||
|
Expand-Archive -Force -LiteralPath "$PWD\chrome_elf.zip" -DestinationPath $PWD
|
||||||
|
Remove-Item -LiteralPath "$PWD\chrome_elf.zip"
|
||||||
|
<#
|
||||||
|
Expand-Archive -Force -LiteralPath "$PWD\zlink.zip" -DestinationPath $PWD
|
||||||
|
Remove-Item -LiteralPath "$PWD\zlink.zip"
|
||||||
|
Expand-Archive -Force -LiteralPath "$PWD\xpui.zip" -DestinationPath $PWD
|
||||||
|
Remove-Item -LiteralPath "$PWD\xpui.zip"
|
||||||
|
#>
|
||||||
|
$spotifyInstalled = (Test-Path -LiteralPath $SpotifyExecutable)
|
||||||
|
if (-not $spotifyInstalled) {
|
||||||
|
Write-Host @'
|
||||||
|
Spotify installation was not detected.
|
||||||
|
Downloading Latest Spotify full setup, please wait...
|
||||||
|
'@
|
||||||
|
try {
|
||||||
|
$webClient.DownloadFile(
|
||||||
|
# Remote file URL
|
||||||
|
'https://download.scdn.co/SpotifyFullSetup.exe',
|
||||||
|
# Local file path
|
||||||
|
"$PWD\SpotifyFullSetup.exe"
|
||||||
|
)
|
||||||
|
} catch {
|
||||||
|
Write-Output $_
|
||||||
|
Pause
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
mkdir $SpotifyDirectory >$null 2>&1
|
||||||
|
Write-Host 'Running installation...'
|
||||||
|
Start-Process -FilePath "$PWD\SpotifyFullSetup.exe"
|
||||||
|
Write-Host 'Stopping Spotify...Again'
|
||||||
|
while ((Get-Process -name Spotify -ErrorAction SilentlyContinue) -eq $null){
|
||||||
|
#waiting until installation complete
|
||||||
|
}
|
||||||
|
Stop-Process -Name Spotify >$null 2>&1
|
||||||
|
Stop-Process -Name SpotifyWebHelper >$null 2>&1
|
||||||
|
Stop-Process -Name SpotifyFullSetup >$null 2>&1
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(test-path $SpotifyDirectory/chrome_elf.dll.bak)){
|
||||||
|
move $SpotifyDirectory\chrome_elf.dll $SpotifyDirectory\chrome_elf.dll.bak >$null 2>&1
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host 'Patching Spotify...'
|
||||||
|
$patchFiles = "$PWD\chrome_elf.dll", "$PWD\config.ini"
|
||||||
|
<#
|
||||||
|
$remup = "$PWD\zlink.spa"
|
||||||
|
$uipat = "$PWD\xpui.spa"
|
||||||
|
#>
|
||||||
|
Copy-Item -LiteralPath $patchFiles -Destination "$SpotifyDirectory"
|
||||||
|
<#
|
||||||
|
$ch = Read-Host -Prompt "Optional - Remove Upgrade Button. (Y/N) "
|
||||||
|
if ($ch -eq 'y'){
|
||||||
|
move $SpotifyApps\zlink.spa $SpotifyApps\zlink.spa.bak >$null 2>&1
|
||||||
|
Copy-Item -LiteralPath $remup -Destination "$SpotifyApps"
|
||||||
|
} else{
|
||||||
|
Write-Host @'
|
||||||
|
Won't remove Upgrade Button.
|
||||||
|
'@`n
|
||||||
|
}
|
||||||
|
|
||||||
|
$ch = Read-Host -Prompt "Change Alpha UI back to Old UI. (BTS only supports Old UI). (Y/N) "
|
||||||
|
if ($ch -eq 'y'){
|
||||||
|
move $SpotifyApps\xpui.spa $SpotifyApps\xpui.spa.bak >$null 2>&1
|
||||||
|
Copy-Item -LiteralPath $uipat -Destination "$SpotifyApps"
|
||||||
|
} else{
|
||||||
|
Write-Host @'
|
||||||
|
UI isn't changed.
|
||||||
|
'@`n
|
||||||
|
}
|
||||||
|
#>
|
||||||
|
|
||||||
|
$tempDirectory = $PWD
|
||||||
|
Pop-Location
|
||||||
|
|
||||||
|
Remove-Item -Recurse -LiteralPath $tempDirectory
|
||||||
|
|
||||||
|
Write-Host 'Patching Complete, starting Spotify...'
|
||||||
|
Start-Process -WorkingDirectory $SpotifyDirectory -FilePath $SpotifyExecutable
|
||||||
|
Write-Host 'Done.'
|
||||||
|
|
||||||
|
write-host @'
|
||||||
|
*****************
|
||||||
|
@mrpond message:
|
||||||
|
#Thailand #ThaiProtest #ThailandProtest #freeYOUTH
|
||||||
|
Please retweet these hashtag, help me stop dictator government!
|
||||||
|
*****************
|
||||||
|
'@
|
||||||
|
|
||||||
|
exit
|
Loading…
Add table
Add a link
Reference in a new issue