Always force expanding archives
This commit is contained in:
parent
97390f53d2
commit
a0d1ecf5ea
1 changed files with 7 additions and 7 deletions
|
@ -137,7 +137,7 @@ ECHO Geek Uninstaller...
|
|||
PowerShell -Command "" ^
|
||||
"$archive = '%TEMP%\geek.zip';" ^
|
||||
"Invoke-WebRequest -Uri https://geekuninstaller.com/geek.zip -OutFile $archive;" ^
|
||||
"Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\Geek Uninstaller';" ^
|
||||
"Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\Geek Uninstaller' -Force;" ^
|
||||
"$WshShell = New-Object -comObject WScript.Shell;" ^
|
||||
"$Shortcut = $WshShell.CreateShortcut('%APPDATA%\Microsoft\Windows\Start Menu\Programs\Geek Uninstaller.lnk');" ^
|
||||
"$Shortcut.TargetPath = '%ProgramFiles%\Geek Uninstaller\geek.exe';" ^
|
||||
|
@ -166,7 +166,7 @@ ECHO DSR...
|
|||
PowerShell -Command "" ^
|
||||
"$archive = '%TEMP%\dsr.zip';" ^
|
||||
"Invoke-WebRequest -Uri https://git.mylloon.fr/Anri/dsr/releases/download/1.4.0/dsr-win32-x64-1.4.0.zip -OutFile $archive;" ^
|
||||
"Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\DSR';" ^
|
||||
"Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\DSR' -Force;" ^
|
||||
"Move-Item -Path '%ProgramFiles%\DSR\dsr-win32-x64\*' -Destination '%ProgramFiles%\DSR';" ^
|
||||
"Remove-Item '%ProgramFiles%\DSR\dsr-win32-x64;'"^
|
||||
"$WshShell = New-Object -comObject WScript.Shell;" ^
|
||||
|
@ -202,7 +202,7 @@ ECHO Ensuite, utilise W10Privacy avec le fichier present dans %HOMEPATH%\Downloa
|
|||
PowerShell -Command "" ^
|
||||
"$archive = '%TEMP%\W10Privacy.zip';" ^
|
||||
"Invoke-WebRequest -Uri https://www.w10privacy.de/app/download/12302828636/W10Privacy.zip -OutFile $archive;" ^
|
||||
"Expand-Archive -Path $archive -DestinationPath $env:TEMP;" ^
|
||||
"Expand-Archive -Path $archive -DestinationPath $env:TEMP -Force;" ^
|
||||
"$file = $env:TEMP + '\\' + (Get-ChildItem $env:TEMP\W10Privacy*.exe).BaseName + '.exe';" ^
|
||||
"Start-Process $file /S -NoNewWindow -Wait -PassThru;" ^
|
||||
"$shortcut = '%APPDATA%\Microsoft\Windows\Start Menu\Programs\W10Privacy.lnk';" ^
|
||||
|
@ -228,7 +228,7 @@ CMD /c "!local!\vencord_installer.bat" yes
|
|||
ECHO OpenTabletDriver...
|
||||
PowerShell -Command "" ^
|
||||
"Invoke-WebRequest -Uri https://opentabletdriver.net/Release/Download/OpenTabletDriver.win-x64.zip -OutFile '%TEMP%\OpenTabletDriver.win-x64.zip'" ^
|
||||
"Expand-Archive -Path '%TEMP%\OpenTabletDriver.win-x64.zip' -DestinationPath '%ProgramFiles%\OpenTabletDriver'" ^
|
||||
"Expand-Archive -Path '%TEMP%\OpenTabletDriver.win-x64.zip' -DestinationPath '%ProgramFiles%\OpenTabletDriver' -Force" ^
|
||||
"$WshShell = New-Object -comObject WScript.Shell;" ^
|
||||
"$Shortcut = $WshShell.CreateShortcut('%APPDATA%\Microsoft\Windows\Start Menu\Programs\OpenTabletDriver.lnk');" ^
|
||||
"$Shortcut.TargetPath = '%ProgramFiles%\OpenTabletDriver\OpenTabletDriver.UX.Wpf.exe';" ^
|
||||
|
@ -240,13 +240,13 @@ REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenTabletDriv
|
|||
:: WindowsInk
|
||||
PowerShell -Command "Invoke-WebRequest -Uri https://github.com/X9VoiD/vmulti-bin/releases/download/v1.0/VMulti.Driver.zip -OutFile '%TEMP%\VMulti-Driver.zip'"
|
||||
:: Extract
|
||||
PowerShell -Command "Expand-Archive -Path '%TEMP%\VMulti-Driver.zip' -DestinationPath '%TEMP%\VMulti-Driver'"
|
||||
PowerShell -Command "Expand-Archive -Path '%TEMP%\VMulti-Driver.zip' -DestinationPath '%TEMP%\VMulti-Driver' -Force"
|
||||
:: Install driver
|
||||
CALL %TEMP%\VMulti-Driver\install_hiddriver.bat
|
||||
:: Download plugin
|
||||
PowerShell -Command "Invoke-WebRequest -Uri https://github.com/X9VoiD/VoiDPlugins/releases/latest/download/WindowsInk.zip -OutFile '%TEMP%\WindowsInk.zip'"
|
||||
:: Extract plugin
|
||||
PowerShell -Command "Expand-Archive -Path '%TEMP%\WindowsInk.zip' -DestinationPath '%LOCALAPPDATA%\OpenTabletDriver\Plugins\Windows Ink'"
|
||||
PowerShell -Command "Expand-Archive -Path '%TEMP%\WindowsInk.zip' -DestinationPath '%LOCALAPPDATA%\OpenTabletDriver\Plugins\Windows Ink' -Force"
|
||||
|
||||
:: === Install Topgrade ==
|
||||
:: ECHO Topgrade...
|
||||
|
@ -260,7 +260,7 @@ PowerShell -Command "Expand-Archive -Path '%TEMP%\WindowsInk.zip' -DestinationPa
|
|||
:: "$outfile = Join-Path -Path $env:TEMP -ChildPath $archive;" ^
|
||||
:: "Invoke-WebRequest -Uri $link -OutFile $outfile;" ^
|
||||
:: "cd $env:TEMP;" ^
|
||||
:: "Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\Topgrade'"
|
||||
:: "Expand-Archive -Path $archive -DestinationPath '%ProgramFiles%\Topgrade' -Force"
|
||||
|
||||
:: === Miscellaneous ==
|
||||
:: Rename shortcut for Minecraft
|
||||
|
|
Loading…
Reference in a new issue