Need to add a folder to the desktop after installing Windows, how can I do this?

Discussion in 'Windows 8' started by jpbenfica, Sep 30, 2014.

  1. jpbenfica

    jpbenfica MDL Novice

    Sep 30, 2014
    3
    0
    0
    I will make a personalized DVD Windows 8.1.
    Need to add a folder to the desktop after installing Windows. How can I do this?

    Thank´s.
     
  2. jpbenfica

    jpbenfica MDL Novice

    Sep 30, 2014
    3
    0
    0
    Add folder automatically with the installation of windows.
     
  3. Rock Hunter

    Rock Hunter MDL Senior Member

    Dec 6, 2011
    423
    113
    10
    To add a folder to the desktop after installing Windows, right click on any open area of the desktop and select New Folder. Change the name of the folder from New Folder to whatever you want to call it.
     
  4. jpbenfica

    jpbenfica MDL Novice

    Sep 30, 2014
    3
    0
    0
    No. I need this folder in windows DVD installation.
     
  5. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #5 s1ave77, Sep 30, 2014
    Last edited by a moderator: Apr 20, 2017
    Adding stuff to the newly created user folder (even the desktop) afaik needs to be done at FirstLogon Stage of Setup via firstlogon.cmd :g:.

    At the root of the ISO/DVD create $OEM$\$$\Setup\Scripts subfolder structure and place the script (firstlogon.cmd) and the folder you want to be copied inside the Scripts folder.

    firstlogon.cmd example:

    Code:
    @echo off
    md "%systemdrive%\users\%username%\desktop\YOURFOLDERNAME"
    xcopy "YOURFOLDERNAME\*.*" /s /q "%systemdrive%\users\%username%\desktop\YOURFOLDERNAME" /y
    exit
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...