This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: This script gets or sets the bookmarks from browser | |
@echo off | |
cls | |
set $bookmark_location="%LOCALAPPDATA%\Google\Chrome\User Data\Default\Bookmarks" | |
set mypath=%cd% | |
:choice | |
set /P c=Get/Set browser bookmarks [[92mY[0m/[91mN[0m]? | |
if /I "%c%" EQU "Y" goto :browser_info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: This script installs Chocolatey and some programs | |
@echo off | |
cls | |
set $choco_install=Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
set $program_install=choco install | |
set $upgrade_install=choco upgrade all | |
set $programs=googlechrome git vscode sublimetext3 discord k-litecodecpackfull |