Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
springkim committed Jan 11, 2021
1 parent 24bd800 commit 3aac78b
Show file tree
Hide file tree
Showing 13 changed files with 2,913 additions and 2,860 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aipsb/
38 changes: 11 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<img src="img/windows10.png" width="64"> <img src="img/B.png" width="64"> WSpring
---------------------------------------------------------------------------------------------------------------------
![](Readme/title.png)

Windows OS Tool Setup Project
-----------------------------------------------------
##Windows Scripts are Powerful, Relative, and Independent Non-commercial Group

### Download WSpring

Expand All @@ -15,33 +13,19 @@ powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolT

Installer
----------------------------
|Atom|Bomi|--|--|--|
|--|--|--|--|-
|<img src="img/atom.png" width="64">|<img src="img/bomi.png" width="64">|--|--|--|
|<img src="img/ver_latest.png" height="20">|<img src="img/ver_latest.png" height="20">|--|--|--|

### <img src="img/atom.png" width="64">Atom

<img src="img/ver_latest.png" height="20">

**[Atom](https://atom.io/)** is a text editor that's modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file.

You can use atom for writing markdown documents instead of Haroopad. It supports synchronization too.

### <img src="img/bandizip.png" width="64">Bandizip

<img src="img/ver_latest.png" height="20">

**[Bandizip](https://www.bandisoft.co.kr/bandizip/)** is a lightweight, fast and free All-In-One Zip Archiver. Bandizip has a very fast Zip algorithm for compression & extraction with Fast Drag and Drop, High Speed Archiving, and Multi-core compression. It handles the most popular compression formats, including Zip, 7z, Rar, and so on.
|Chrome|Chrome Canary|Chrominun|--|--|
|--|--|--|--|-
|<img src="img/chrome.png" width="64">|<img src="img/chrome-canary.png" width="64">|<img src="img/chromium.png" width="64">|--|--|
|<img src="img/ver_latest.png" height="20">|<img src="img/ver_latest.png" height="20">|<img src="img/ver_latest.png" height="20">|--|--|

### <img src="img/bomi.png" width="64">Bomi

<img src="img/ver_latest.png" height="20">

**[Bomi](https://bomi-player.github.io/)** is a multimedia player formerly known as CMPlayer, which is aimed for easy usage but also provides various powerful features and convenience functions. Just install and enjoy it! There will be already what you expect. If you don't like, you can configure almost everything.


### <img src="img/chrome.png" width="64">Chrome

<img src="img/ver_latest.png" height="20">

**[Google Chrome](https://www.google.co.kr/chrome/index.html)** is a freeware web browser developed by Google. It was first released in September 2008, for Microsoft Windows, and was later ported to Linux, macOS, iOS and Android. Google Chrome is also the main component of Chrome OS, where it serves as a platform for running web apps.

### <img src="img/clion.png" width="64">Clion

Expand Down Expand Up @@ -294,7 +278,7 @@ Microsoft **[Visual Studio](https://www.visualstudio.com/)** is an integrated de
* Python
* Visual F#

### <img src="img/vscode.png" width="64">Visual Studio Code
### <img src="img/vscode.png" width="64">

<img src="img/ver_latest.png" height="20">

Expand Down
Binary file added Readme/title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Readme/wspring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/chrome-canary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/chromium.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5,558 changes: 2,727 additions & 2,831 deletions img/circle_icon.ai

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions install_chrome_canary.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
::
:: install_chrome.bat
:: WSpring
::
:: Created by kimbomm on 2018. 03. 24...
:: Copyright 2017-2018 kimbomm. All rights reserved.
::
@echo off
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' (
echo Get admin permission...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
rem del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
call :AbsoluteDownloadCurl
::start
title install_chrome
echo Downloading...
curlw -L "https://github.com/springkim/WSpring/releases/download/program/ChromeCanarySetup.exe" -o "%TEMP%\ChromeCanarySetup.exe"
echo Installing...
cd /D %TEMP%
call ChromeCanarySetup.exe /silent /install
del "%TEMP%\ChromeCanarySetup.exe"
echo Finish!!
pause

::Download CURL
:GetFileSize
if exist %~1 set FILESIZE=%~z1
if not exist %~1 set FILESIZE=-1
exit /b
:AbsoluteDownloadCurl
:loop_adc1
call :GetFileSize "%SystemRoot%\System32\curlw.exe"
if %FILESIZE% neq 2070016 (
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://github.com/springkim/WSpring/releases/download/bin/curl.exe','%WINDIR%\System32\curlw.exe')"
goto :loop_adc1
)
:loop_adc2
call :GetFileSize "%SystemRoot%\System32\ca-bundle.crt"
if %FILESIZE% neq 261889 (
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://github.com/springkim/WSpring/releases/download/bin/ca-bundle.crt','%WINDIR%\System32\ca-bundle.crt')"
goto :loop_adc2
)
exit /b
61 changes: 61 additions & 0 deletions install_chromium.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
::
:: install_chrominum.bat
:: WSpring
::
:: Created by kimbomm on 2020. 01. 09...
:: Copyright 2017-2021 kimbomm. All rights reserved.
::
@echo off
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' (
echo Get admin permission...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
rem del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
call :AbsoluteDownloadCurl
::start
title install_chrome
echo Downloading...
curlw -L "https://commondatastorage.googleapis.com/chromium-browser-snapshots/Win_x64/841562/chrome-win.zip" -o "%TEMP%\Chromium.zip"
echo Unzipping...
call :SafeRMDIR "%SystemDrive%\Program Files\Chromium"
powershell -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('%TEMP%\Chromium.zip', '%SystemDrive%\Program Files\Chromium'); }"
echo Installing...
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%SystemDrive%\ProgramData\Microsoft\Windows\Start Menu\Programs\Chromium.lnk');$s.TargetPath='%SystemDrive%\Program Files\Chromium\chrome-win\chrome.exe';$s.Save()"
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%USERPROFILE%\Desktop\Chromium.lnk');$s.TargetPath='%SystemDrive%\Program Files\Chromium\chrome-win\chrome.exe';$s.Save()"
pause


:SafeRMDIR
IF EXIST "%~1" (
RMDIR /S /Q "%~1"
)
exit /b
::Download CURL
:GetFileSize
if exist %~1 set FILESIZE=%~z1
if not exist %~1 set FILESIZE=-1
exit /b
:AbsoluteDownloadCurl
:loop_adc1
call :GetFileSize "%SystemRoot%\System32\curlw.exe"
if %FILESIZE% neq 2070016 (
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://github.com/springkim/WSpring/releases/download/bin/curl.exe','%WINDIR%\System32\curlw.exe')"
goto :loop_adc1
)
:loop_adc2
call :GetFileSize "%SystemRoot%\System32\ca-bundle.crt"
if %FILESIZE% neq 261889 (
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://github.com/springkim/WSpring/releases/download/bin/ca-bundle.crt','%WINDIR%\System32\ca-bundle.crt')"
goto :loop_adc2
)
exit /b
2 changes: 1 addition & 1 deletion install_haroopad.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:: WSpring
::
:: Created by kimbomm on 2018. 02. 14...
:: Copyright 20172-2018 kimbomm. All rights reserved.
:: Copyright 2017-2018 kimbomm. All rights reserved.
::
@echo off
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
Expand Down
3 changes: 2 additions & 1 deletion install_java.bat
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ echo Downloading...
call :SafeRMDIR "%SystemDrive%\JAVA"
if not exist %SystemDrive%\JAVA md %SystemDrive%\JAVA
cd /D %SystemDrive%\JAVA
curlw -L "https://download.java.net/java/GA/jdk12.0.1/69cfe15208a647278a19ef0990eea691/12/GPL/openjdk-12.0.1_windows-x64_bin.zip" -o "%SystemDrive%\JAVA\openjdk.zip"
curlw -L "https://download.java.net/openjdk/jdk11/ri/openjdk-11+28_windows-x64_bin.zip" -o "%SystemDrive%\JAVA\openjdk.zip"
echo Installing...
call :Download7z
7z x openjdk*.zip -y
Expand All @@ -39,6 +39,7 @@ dir /B > z.txt
set /p "jdkname="<"z.txt"
call :DownloadSetw
setw "%SystemDrive%\JAVA\%jdkname%\bin"
setx JAVA_HOME "%SystemDrive%\JAVA\%jdkname%"
DEL z.txt

echo Finish!!
Expand Down
56 changes: 56 additions & 0 deletions install_windows_terminal.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
::
:: install_windows_terminal.bat
:: WSpring
::
:: Created by kimbomm on 2020. 11. 09...
:: Copyright 2017-2020 kimbomm. All rights reserved.
::
@echo off
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' (
echo Get admin permission...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
rem del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
call :AbsoluteDownloadCurl
::::::::::::install
SETLOCAL EnableDelayedExpansion
FOR /D %%E IN ("C:/Program Files (x86)/Windows Kits/10/bin/*") DO (
set file=%%~nxE
echo !file!
)



echo Finish!
pause
exit /b

::Download CURL
:GetFileSize
if exist %~1 set FILESIZE=%~z1
if not exist %~1 set FILESIZE=-1
exit /b
:AbsoluteDownloadCurl
:loop_adc1
call :GetFileSize "%SystemRoot%\System32\curlw.exe"
if %FILESIZE% neq 2070016 (
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://github.com/springkim/WSpring/releases/download/bin/curl.exe','%WINDIR%\System32\curlw.exe')"
goto :loop_adc1
)
:loop_adc2
call :GetFileSize "%SystemRoot%\System32\ca-bundle.crt"
if %FILESIZE% neq 261889 (
powershell "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (New-Object System.Net.WebClient).DownloadFile('https://github.com/springkim/WSpring/releases/download/bin/ca-bundle.crt','%WINDIR%\System32\ca-bundle.crt')"
goto :loop_adc2
)
exit /b
Binary file added visual studio 2019/VSColorThemes.vsix
Binary file not shown.

0 comments on commit 3aac78b

Please sign in to comment.