.
This commit is contained in:
parent
a7a4d5853a
commit
5be5627bc7
@ -29,8 +29,10 @@ echo starting BGInfo ...
|
||||
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
|
||||
|
||||
|
||||
rem ######
|
||||
rem ###
|
||||
rem #####
|
||||
rem #####
|
||||
rem #####
|
||||
|
||||
echo creating some directories and copy files for current user ...
|
||||
|
||||
rem SSH
|
||||
@ -61,9 +63,26 @@ if NOT EXIST %LOCALSTATE%\settings.json (
|
||||
%LOCALSTATE%\settings.json
|
||||
)
|
||||
|
||||
rem #####
|
||||
rem #####
|
||||
rem #####
|
||||
|
||||
echo disable search box on taskbar ...
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" ^
|
||||
/v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f 1>nul
|
||||
|
||||
echo disable multi tasking view button on taskbar ...
|
||||
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
|
||||
/v "ShowTaskViewButton" /t REG_DWORD /d 0 /f 1>nul
|
||||
|
||||
echo restarting explorer ...
|
||||
taskkill /f /im explorer.exe 1>nul 2>nul
|
||||
start explorer.exe
|
||||
|
||||
rem #####
|
||||
rem #####
|
||||
rem #####
|
||||
|
||||
rem ###
|
||||
rem ######
|
||||
|
||||
rem deleting useless files (FUCK YOU AGAIN MICROSOFT!) ...
|
||||
del /F "$APPDATA%\Microsoft\Windows\Start Menu\Programs\Accessories\Internet Explorer.lnk" 1>nul 2>nul
|
||||
|
40
scripts/install-googledrive.cmd
Normal file
40
scripts/install-googledrive.cmd
Normal file
@ -0,0 +1,40 @@
|
||||
@echo off
|
||||
|
||||
set SCRIPTS=..\scripts
|
||||
set SOFTWARE=..\software
|
||||
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
|
||||
|
||||
set MSI=gsync_enterprise64.msi
|
||||
|
||||
echo ####### %0 #######
|
||||
|
||||
cd %SOFTWARE%
|
||||
@echo on
|
||||
msiexec /i %MSI% /qn
|
||||
@echo off
|
||||
cd %SCRIPTS%
|
||||
|
||||
echo changing startmenu folder ...
|
||||
move /Y %STARTMENU%\"Backup and Sync from Google\Backup and Sync from Google.lnk" ^
|
||||
%STARTMENU%\"Backup and Sync.lnk" 1>nul 2>nul
|
||||
|
||||
rem waiting 10 seconds for setup ...
|
||||
timeout /T 10
|
||||
|
||||
tasklist
|
||||
|
||||
echo removing google drive startmenu folder ...
|
||||
@echo on
|
||||
rd /S /Q %STARTMENU%\"Backup and Sync from Google"
|
||||
@echo off
|
||||
|
||||
echo removing google desktop icons ...
|
||||
@echo on
|
||||
del /F /Q %PUBLIC%\Desktop\Google*
|
||||
@echo off
|
||||
|
||||
rem refresh desktop (W10 style)
|
||||
ie4uinit.exe -show
|
||||
|
||||
echo ####### %0 #######
|
||||
|
Loading…
Reference in New Issue
Block a user