w10install/scripts/install-shortcuts.cmd

16 lines
326 B
Batchfile
Raw Normal View History

2021-03-09 23:15:35 +01:00
@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 ...
xcopy /CDI /HERBY startmenu %STARTMENU%
echo ####### %0 #######