w10install/scripts/deploy/logon.cmd

74 lines
2.4 KiB
Batchfile
Raw Normal View History

2021-01-10 23:14:52 +01:00
@echo off
set TOOLS=c:\tools
echo ####### %0 #######
2021-01-12 22:54:02 +01:00
echo add "This PC" icon for current user on desktop Windows 10 ...
2021-01-12 15:14:31 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" ^
2021-01-12 22:54:02 +01:00
/v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f 1>nul
2021-01-12 15:14:31 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu" ^
2021-01-12 22:54:02 +01:00
/v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f 1>nul
2021-01-12 15:14:31 +01:00
2021-01-12 22:54:02 +01:00
echo add userhome icon on windows 10 desktop for current user ...
2021-01-12 15:14:31 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" ^
2021-01-12 22:54:02 +01:00
/v "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" /t REG_DWORD /d 0 /f 1>nul
2021-01-12 15:14:31 +01:00
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu" ^
2021-01-12 22:54:02 +01:00
/v "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" /t REG_DWORD /d 0 /f 1>nul
2021-01-12 15:14:31 +01:00
rem refresh desktop (W10 style)
ie4uinit.exe -show
2021-01-12 17:01:34 +01:00
echo removing wallpaper ...
2021-01-12 22:54:02 +01:00
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v WallPaper /t REG_SZ /d " " /f 1>nul
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
2021-01-10 23:14:52 +01:00
echo set desktop colour ...
%TOOLS%\setbgcol
echo starting BGInfo ...
%TOOLS%\bginfo\bginfo64.exe %TOOLS%\bginfo\config.bgi /NOLICPROMPT /silent /timer:0
2021-01-27 22:05:17 +01:00
rem ######
rem ###
echo creating some directories and copy files for current user ...
rem SSH
2021-01-12 17:01:34 +01:00
mkdir %USERPROFILE%\workspace 1>nul 2>nul
mkdir %USERPROFILE%\.ssh 1>nul 2>nul
2021-01-29 12:30:37 +01:00
if NOT EXIST %USERPROFILE%\.ssh\config (
copy /Y %TOOLS%\scripts\config\ssh-config.txt %USERPROFILE%\.ssh\config
)
2021-01-27 22:05:17 +01:00
2021-01-30 21:38:46 +01:00
rem VIM
if NOT EXIST %USERPROFILE%\.vimrc (
copy /Y %TOOLS%\scripts\config\vimrc.txt ^
%USERPROFILE%\.vimrc
)
rem WEZTERM
if NOT EXIST %USERPROFILE%\.wezterm.lua (
copy /Y %TOOLS%\scripts\config\wezterm.lua ^
%USERPROFILE%\.wezterm.lua
2021-01-29 12:30:37 +01:00
)
2021-01-27 22:05:17 +01:00
rem TOTALCOMMANDER
2021-01-29 12:30:37 +01:00
if NOT EXIST %windir%\wcx_ftp.ini (
copy /Y %TOOLS%\scripts\config\wcx_ftp.ini %windir%
)
2021-01-27 22:05:17 +01:00
rem ###
rem ######
2021-01-30 21:38:46 +01:00
rem deleting useless files (FUCK YOU AGAIN MICROSOFT!) ...
2021-01-29 19:09:28 +01:00
del /F "$APPDATA%\Microsoft\Windows\Start Menu\Programs\Accessories\Internet Explorer.lnk" 1>nul 2>nul
del /F "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Microsoft Edge.lnk" 1>nul 2>nul
del /F "%USERPROFILE%\Desktop\Microsoft Edge.lnk" 1>nul 2>nul
2021-01-12 17:01:34 +01:00
2021-01-10 23:14:52 +01:00
echo start workstation service ...
net start workstation 1>nul 2>nul
net config workstation
echo ####### %0 #######