diff --git a/scripts/autoconfig.cmd b/scripts/autoconfig.cmd index 55236cb..6d73d90 100644 --- a/scripts/autoconfig.cmd +++ b/scripts/autoconfig.cmd @@ -297,6 +297,9 @@ rem ... remove stupid public folders call cleanup-publicdir.cmd echo. +rem ... remove the drive letter of partition 2 on boot drive +call remove-drive-letter.cmd + echo add read access rights to all users on public icons ... icacls %PUBLIC%\Desktop\*.lnk /grant Users:R echo. diff --git a/scripts/remove_drive_letter.cmd b/scripts/remove-drive-letter.cmd similarity index 64% rename from scripts/remove_drive_letter.cmd rename to scripts/remove-drive-letter.cmd index 99c82e5..4896884 100644 --- a/scripts/remove_drive_letter.cmd +++ b/scripts/remove-drive-letter.cmd @@ -1,16 +1,10 @@ @echo off -set T=c:\TEMP +set T=%SystemDrive%\TEMP set DPARTSCRIPT=%T%\diskpart.txt -rem create temp directory ... -mkdir %T% 1>nul 2>nul +echo ####### %0 ####### -rem ===== -rem MAIN -rem ===== - -echo Removing Drive Letter ... -echo. +echo Removing drive letter ... > %DPARTSCRIPT% ( @echo.select disk 0 @@ -31,8 +25,5 @@ echo Drive letter removed. rem cleanup ... del /F %DPARTSCRIPT% 1>nul 2>nul -echo. -echo ====== -echo READY. -echo ====== +echo ####### %0 #######