w10install/scripts/install-shortcuts.cmd
Michael H.G. Schmidt 5f7a0941b9 several tweaks
2023-01-15 17:52:06 +01:00

17 lines
363 B
Batchfile

@echo off
set DESKTOP="%PUBLIC%\Desktop"
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
echo ####### %0 #######
echo copying desktop shortcuts ...
xcopy /CDI /HERBY desktop %DESKTOP%
echo copying startmenu shortcuts ...
mkdir %STARTMENU%\Tools 2>nul
xcopy /CDI /HERBY startmenu %STARTMENU%\Tools
echo ####### %0 #######