w10install/tools/logon.cmd

348 lines
11 KiB
Batchfile
Raw Normal View History

2021-01-10 23:14:52 +01:00
@echo off
2022-12-18 16:10:09 +01:00
rem ===================
rem GLOBAL VARS
rem ===================
2021-01-10 23:14:52 +01:00
set TOOLS=c:\tools
2022-12-13 16:29:35 +01:00
set SCRIPT_SETTINGS=%TOOLS%\scripts\settings.cmd
set COMPANY_SETTINGS=%TOOLS%\company\settings.cmd
2022-12-18 16:10:09 +01:00
set USERCONFIG_DONE=%LOCALAPPDATA%\.userconfig_done
2022-12-13 16:29:35 +01:00
set EMLICENSE_DONE=%LOCALAPPDATA%\.emlicense_done
2021-03-14 11:53:43 +01:00
set STARTMENU=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
2021-03-14 12:35:41 +01:00
set STARTMENU_PUBLIC=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
2021-01-10 23:14:52 +01:00
2022-12-18 16:23:03 +01:00
2022-12-18 16:10:09 +01:00
rem ===================
rem DEFAULTS
rem ===================
2021-01-10 23:14:52 +01:00
set bgcol_R=0
set bgcol_G=0
set bgcol_B=0
2022-12-18 16:10:09 +01:00
set LANG=en-US
set support_user=
set support_password=
set emclient_license=0
echo ####### %0 #######
2022-12-18 16:23:03 +01:00
2022-12-13 16:29:35 +01:00
rem ===================
2022-12-18 16:10:09 +01:00
rem CONFIGFILE CHECKS
2022-12-13 16:29:35 +01:00
rem ===================
echo searching for SCRIPT settings ...
if NOT EXIST %SCRIPT_SETTINGS% (
echo INFO: config file %COMPANY_SETTINGS% NOT FOUND
) else (
echo OK. Loading SCRIPT settings ...
call %SCRIPT_SETTINGS%
2022-12-18 16:10:09 +01:00
echo LANG=%LANG%
2021-04-02 18:46:28 +02:00
)
2022-12-13 16:29:35 +01:00
echo searching for COMPANY settings ...
if NOT EXIST %COMPANY_SETTINGS% (
echo INFO: config file %COMPANY_SETTINGS% NOT FOUND
) else (
echo OK. Loading COMPANY settings ...
call %COMPANY_SETTINGS%
)
2022-12-18 16:23:03 +01:00
2022-12-18 16:10:09 +01:00
rem ===================
rem EMCLIENT LICENSING
rem ===================
rem licensing for emClient already done ?
if EXIST %EMLICENSE_DONE% GOTO EMCLIENT_END
if %emclient_license% == 0 (
echo no em Client license found!
) else (
echo.
if EXIST "%ProgramFiles(x86)%\eM Client\MailClient.exe" (
echo adding em Client license ...
"%ProgramFiles(x86)%\eM Client\MailClient.exe" /activate %emclient_license%
rem create a statusfile (this codeblock must be executed only once per use) ...
echo 1 >%EMLICENSE_DONE%
) else (
echo em Client is NOT installed!
)
echo.
)
:EMCLIENT_END
2022-12-18 16:23:03 +01:00
2022-12-18 16:10:09 +01:00
rem ================================================
rem GENERIC SETTINGS FOR THE USER (this runs always)
rem ================================================
echo removing wallpaper ...
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v WallPaper /t REG_SZ /d " " /f 1>nul
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
2021-04-02 18:46:28 +02:00
echo setting desktop colour (RGB) ...
%TOOLS%\setbgcol %bgcol_R% %bgcol_G% %bgcol_B%
2021-01-10 23:14:52 +01:00
echo starting BGInfo ...
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
2022-05-29 13:46:27 +02:00
echo setting RECYCLE BIN limits ...
2022-06-22 00:07:25 +02:00
powershell -command %TOOLS%\scripts\set-recyclebin.ps1
2022-05-29 13:46:27 +02:00
2022-12-18 16:10:09 +01:00
echo remapping Desktop folder to standard location ...
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" ^
2022-12-18 16:16:54 +01:00
/v Desktop /t REG_EXPAND_SZ /d "%%USERPROFILE%%\Desktop" /f 1>nul
2021-01-27 22:05:17 +01:00
2022-12-18 16:23:03 +01:00
2022-12-18 16:10:09 +01:00
rem ================================================
rem USER TWEAKS AND CONFIG FILES (this runs always)
rem ================================================
2022-12-18 16:10:09 +01:00
rem User tweaks already done ?
if EXIST %USERCONFIG_DONE% GOTO USERTWEAKS_DONE
2021-01-30 21:38:46 +01:00
2022-12-18 16:10:09 +01:00
rem WORKSPACE folder
echo creating folder %USERPROFILE%\workspace ...
mkdir %USERPROFILE%\workspace 1>nul 2>nul
2021-03-14 23:14:01 +01:00
2022-12-18 16:10:09 +01:00
rem SSH
echo setting up ssh client ...
mkdir %USERPROFILE%\.ssh 1>nul 2>nul
copy /Y %TOOLS%\scripts\config\ssh-config.txt %USERPROFILE%\.ssh\config
2021-03-14 23:14:01 +01:00
2022-12-18 16:10:09 +01:00
rem VIM
echo copying vimrc ...
copy /Y %TOOLS%\scripts\config\vimrc.txt %USERPROFILE%\.vimrc
2021-01-27 22:05:17 +01:00
2021-02-03 13:37:54 +01:00
rem WINDOWS TERMINAL
2022-12-18 16:10:09 +01:00
echo seting up WINDOWS TERMINAL ...
2021-02-03 13:37:54 +01:00
set LOCALSTATE=%LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState
2022-12-18 16:10:09 +01:00
mkdir %LOCALSTATE% 1>nul 2>nul
copy /Y %TOOLS%\scripts\config\wt-settings.json %LOCALSTATE%\settings.json
2021-02-03 13:37:54 +01:00
2022-12-18 16:30:08 +01:00
rem TOTALCOMMANDER
mkdir %APPDATA%\GHISLER 1>nul 2>nul
echo copying ini file for TOTALCOMMANDER ...
copy /Y %TOOLS%\optional\config\WINCMD.ini %APPDATA%\GHISLER
echo copying TOTALCOMMANDER ftp config file ...
copy /Y %TOOLS%\optional\config\wcx_ftp.ini %APPDATA%\GHISLER
2022-12-18 16:10:09 +01:00
rem fix for broken SEAFILE folder access rights ...
2022-06-20 08:01:18 +02:00
if EXIST %USERPROFILE%\Seafile (
echo removing SEAFILE system attributes ...
attrib -S %USERPROFILE%\Seafile /S /D
)
2021-04-12 12:54:46 +02:00
echo Adding "This PC" icon for current user on desktop Windows 10 ...
2021-02-14 20:35:35 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" ^
/v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f 1>nul
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu" ^
/v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f 1>nul
2021-04-12 12:54:46 +02:00
echo Refreshing desktop (W10 style)
2021-02-14 20:35:35 +01:00
ie4uinit.exe -show
2021-02-13 20:05:56 +01:00
2021-04-12 12:54:46 +02:00
echo Adding seconds to clock ...
2021-02-14 21:54:31 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
2021-02-14 20:58:44 +01:00
/v "ShowSecondsInSystemClock" /t REG_DWORD /d 1 /f 1>nul
echo setting GLOBAL view mode for windows EXPLORER ...
2022-06-22 00:07:25 +02:00
powershell -command %TOOLS%\scripts\set-explorer-viewmode.ps1
echo Enabling the show file extensions feature in explorer ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
/v "HideFileExt" /t REG_DWORD /d 0 /f 1>nul
echo Do not add "-Shortcut" text to the name of newly created shortcuts ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
/v "link" /t REG_BINARY /d "00000000" /f 1>nul
2021-04-12 12:54:46 +02:00
echo Disabling search box on taskbar ...
2021-02-13 20:05:56 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" ^
2021-02-13 22:04:02 +01:00
/v "SearchboxTaskbarMode" /t REG_DWORD /d 0 /f 1>nul
2021-02-13 20:05:56 +01:00
2021-04-12 12:54:46 +02:00
echo Disabling multi tasking view button on the taskbar ...
2021-02-13 20:05:56 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
2021-02-13 22:04:02 +01:00
/v "ShowTaskViewButton" /t REG_DWORD /d 0 /f 1>nul
2021-04-12 12:54:46 +02:00
echo Disabling cortana button on the taskbar ...
2021-02-13 22:04:02 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
/v "ShowCortanaButton" /t REG_DWORD /d 0 /f 1>nul
2021-04-12 12:54:46 +02:00
echo Disabling autotray for the taskbar ...
2021-02-13 22:04:02 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
/v "EnableAutoTray" /t REG_DWORD /d 0 /f 1>nul
2021-04-12 12:54:46 +02:00
echo Disabling notification center ...
2021-02-13 22:04:02 +01:00
reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^
/v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul
2021-04-12 12:54:46 +02:00
echo Loading OpenShell config ...
2021-03-02 14:01:12 +01:00
rem config must be full qualified pathname (OpenShell BUG!)
set CONFIG=%TOOLS%\scripts\config\OpenshellSettings.xml
2021-03-30 21:21:53 +02:00
"%ProgramFiles%"\Open-Shell\StartMenu.exe -xml %CONFIG%
2021-03-02 14:01:12 +01:00
2021-04-12 12:54:46 +02:00
echo Removing user folders from explorer navigation pane ...
2021-03-31 00:22:47 +02:00
for %%K in (
{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}
{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}
{D3162B92-9365-467A-956B-92703ACA08AF}
{088E3905-0323-4B02-9826-5D99428E115F}
{3DFDF296-DBEC-4FB4-81D1-6A3438BCF4DE}
{24AD3AD4-A569-4530-98E1-AB02F9417AA8}
{F86FA3AB-70D2-4FC7-9C99-FCBF05467F3A}
) do (
echo %%K
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideMyComputerIcons" ^
/v "%%K" /t REG_DWORD /d 1 /f 1>nul
)
2021-04-12 12:54:46 +02:00
echo Adding home folder to explorer navigation pane ...
2021-03-31 00:22:47 +02:00
reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{59031a47-3f72-44a7-89c5-5595fe6b30ee}" ^
/v "System.IsPinnedToNameSpaceTree" /t REG_DWORD /d 1 /f 1>nul
2021-04-12 12:54:46 +02:00
echo Make explorer show ThisPC on top ...
2021-03-31 09:21:52 +02:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^
/v "LaunchTo" /t REG_DWORD /d 1 /f 1>nul
2021-04-12 12:54:46 +02:00
echo Cleaning up recent files and libraries ...
2021-03-31 22:36:57 +02:00
del /F /Q %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations\* 2>nul
del /F /Q %APPDATA%\Microsoft\Windows\Recent\* 2>nul
del /F /Q %APPDATA%\Microsoft\Windows\Libraries\* 2>nul
echo Disabling frequent and recent files in explorer ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
/v "ShowRecent" /t REG_DWORD /d 0 /f 1>nul
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
/v "ShowFrequent" /t REG_DWORD /d 0 /f 1>nul
echo disabling unwanted NETWORK features ...
2022-06-22 00:07:25 +02:00
powershell -command %TOOLS%\scripts\disable-networkfeatures.ps1
2022-06-22 00:07:25 +02:00
echo cleaning START menu tiles ...
powershell -command %TOOLS%\scripts\cleanup-tiles.ps1
2021-02-13 20:05:56 +01:00
2022-12-18 16:10:09 +01:00
rem create a statusfile (this codeblock must be executed only once per user) ...
2022-12-13 16:29:35 +01:00
echo 1 >%USERCONFIG_DONE%
2021-02-14 20:35:35 +01:00
2022-12-18 16:10:09 +01:00
:USERTWEAKS_DONE
2021-03-02 13:57:45 +01:00
2022-12-18 16:23:03 +01:00
2022-12-18 16:10:09 +01:00
rem ========================================
rem ACCOUNT CLEANUP AND FIXES (runs always)
rem ========================================
2022-12-13 16:29:35 +01:00
2021-03-02 13:57:45 +01:00
echo.
echo #####
2021-04-12 12:54:46 +02:00
echo ##### CLEANING ...
2021-03-02 13:57:45 +01:00
echo #####
echo.
2021-02-14 20:35:35 +01:00
2021-04-12 12:54:46 +02:00
echo Reorganizing start menu and desktop ...
echo ########################################
2021-03-14 12:35:41 +01:00
echo.
rem ... stupid OS problem #4
rem why the heck are "System Tools" installed per user ? stupid Microsoft.
2021-04-12 12:54:46 +02:00
echo Moving system tools links ...
2021-03-14 12:35:41 +01:00
move /Y %STARTMENU%\"System Tools\*.*" ^
%STARTMENU_PUBLIC%\"System Tools" 2>nul
2021-04-12 12:54:46 +02:00
rem Removing and renaming some start menu stuff ...
move /Y %STARTMENU_PUBLIC%\"System Tools\computer.lnk" ^
%STARTMENU_PUBLIC%\"System Tools\This PC.lnk" 2>nul
del /F %STARTMENU_PUBLIC%\"System Tools\Command Prompt.lnk" 2>nul
2021-03-14 12:35:41 +01:00
rem ... stupid OS problem #5
rem same here for the accessibility tools. WHY ? stupid Microsoft.
2021-04-12 12:54:46 +02:00
echo Moving accessibility tools ...
2021-03-14 12:35:41 +01:00
move /Y %STARTMENU%\"Accessibility\*.*" ^
%STARTMENU_PUBLIC%\"Accessibility" 2>nul
2021-03-14 11:53:43 +01:00
2021-04-12 12:54:46 +02:00
rem ... stupid OS problem #6
2021-03-14 11:53:43 +01:00
rem Edge is such a zombie!
2021-04-12 12:54:46 +02:00
echo Removing microsoft edge links in start menu...
2021-03-14 11:53:43 +01:00
del /F %STARTMENU%\"Microsoft Edge.lnk" 2>nul
del /F %USERPROFILE%\"Desktop\Microsoft Edge.lnk" 2>nul
2021-04-12 12:54:46 +02:00
rem ... stupid OS problem #7
rem Rewards ? Really ? Seriously ?
echo Disabling nag screen in windows settings ...
%TOOLS%\vivetool delconfig 18299130 1
2021-03-14 11:53:43 +01:00
rem IE too!
2021-04-12 12:54:46 +02:00
echo Removing IE links in start menu, sigh ...
2021-03-14 11:53:43 +01:00
del /F %STARTMENU%\"Accessories\Internet Explorer.lnk" 2>nul
rem finally remove some useless directories in the users start menu ...
2021-04-12 12:54:46 +02:00
echo Removing more startmenu crap ...
2021-03-14 11:53:43 +01:00
rd /S /Q %STARTMENU%\"Accessories" 2>nul
rd /S /Q %STARTMENU%\"Accessibility" 2>nul
rd /S /Q %STARTMENU%\"Administrative Tools" 2>nul
rd /S /Q %STARTMENU%\"Maintenance" 2>nul
rd /S /Q %STARTMENU%\"System Tools" 2>nul
rd /S /Q %STARTMENU%\"Windows Powershell" 2>nul
2021-04-12 12:54:46 +02:00
echo.
2021-03-14 11:53:43 +01:00
rem WARNING!
rem DO NOT remove the "PICTURES" folder!
2022-12-18 16:23:03 +01:00
rem this is used and needed by the snipping tool!
2022-12-13 16:29:35 +01:00
2021-04-12 12:54:46 +02:00
echo Cleaning users home directory ...
echo ########################################
2021-03-14 12:35:41 +01:00
echo.
2021-03-06 15:10:45 +01:00
echo 3D Objects ...
rd /S /Q %USERPROFILE%\"3D Objects" 2>nul
echo Links ...
rd /S /Q %USERPROFILE%\"Links" 2>nul
2021-03-06 15:10:45 +01:00
echo Saved Games (folder used by Microsoft only) ...
rd /S /Q %USERPROFILE%\"Saved Games" 2>nul
echo Searches ...
2021-10-10 16:58:56 +02:00
rd /S /Q %USERPROFILE%\"Searches" 2>nul
for %%D in (
Contacts
Documents
Favorites
Music
Searches
Videos
) do (
echo %%D ...
attrib -R -S -H %USERPROFILE%\%%D 1>nul 2>nul
attrib -R -S -H %USERPROFILE%\%%D\desktop.ini 1>nul 2>nul
del /F /Q %USERPROFILE%\%%D\desktop.ini 2>nul
rmdir /Q %USERPROFILE%\%%D 2>nul
)
2021-03-06 15:10:45 +01:00
echo creating Pictures folder for Snipping Tool ...
mkdir %USERPROFILE%\Pictures 2>nul
2021-03-06 15:10:45 +01:00
echo.
2021-04-12 12:54:46 +02:00
echo Starting workstation service ...
2021-01-10 23:14:52 +01:00
net start workstation 1>nul 2>nul
net config workstation
echo ####### %0 #######
2021-03-30 21:21:53 +02:00
if %ERRORLEVEL% NEQ 0 (
echo # unknown ERROR! #
echo ####### %0 #######
echo.
pause
)
2021-01-10 23:14:52 +01:00