From 5be5627bc7e714a7616b58b25e1108cd32e94a8f Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sat, 13 Feb 2021 20:05:56 +0100 Subject: [PATCH] . --- scripts/deploy/logon.cmd | 27 ++++++++++++++++++---- scripts/install-googledrive.cmd | 40 +++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 scripts/install-googledrive.cmd diff --git a/scripts/deploy/logon.cmd b/scripts/deploy/logon.cmd index 93ca514..d56b843 100644 --- a/scripts/deploy/logon.cmd +++ b/scripts/deploy/logon.cmd @@ -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 diff --git a/scripts/install-googledrive.cmd b/scripts/install-googledrive.cmd new file mode 100644 index 0000000..c97f5ae --- /dev/null +++ b/scripts/install-googledrive.cmd @@ -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 ####### +