0%

  • Powershell
1
2
3
4
5
6
7
echo ===============================================================================
Invoke-WebRequest -Uri "https://eternallybored.org/misc/wget/1.21.4/64/wget.exe" -OutFile "C:\Windows\wget.exe"
echo ===============================================================================
Invoke-WebRequest -Uri "https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/wget.exe" -OutFile "C:\Windows\wget.exe"
Invoke-WebRequest -Uri "https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/7z/7z.exe" -OutFile "C:\Windows\7z.exe"
Invoke-WebRequest -Uri "https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/7z/7z.dll" -OutFile "C:\Windows\7z.dll"
echo ===============================================================================
1
2
3
4
5
6
7
8
9
10
11
wget --no-check-certificate http://110.41.191.70/files/SunloginClient_15.8.1.19509_x64.exe

wget --no-check-certificate http://110.41.191.70/files/MicrosoftEdgeSetup.exe

wget --no-check-certificate http://110.41.191.70/files/npp.8.5.7.Installer.x64.exe

wget --no-check-certificate https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.7/npp.8.7.Installer.x64.exe

wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/7z2408-x64.exe

start 7z2408-x64.exe
  • CMD
    1
    cd %TEMP%
    1
    cmd /k "cd /d %TEMP%"
    1
    start cmd /k "cd /d %TEMP%"
1
2
3
4
5
6
7
8
9
10
11
12
13
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/python-3.13.5-amd64.exe
start python-3.13.5-amd64.exe
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/Git-2.43.0-64-bit.exe
start Git-2.43.0-64-bit.exe
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/chromedriver-win64.zip
7z x chromedriver-win64.zip -o"C:\Program Files"
echo ===============================================================================
wget --no-check-certificate https://qastatic.obs.cn-south-1.myhuaweicloud.com/files/chrome-win64.zip
7z x chrome-win64.zip -o"C:\Program Files"
echo ===============================================================================