Where is the startup folder ( win10 preview)

Discussion in 'Windows 10' started by Shadowmeph, Dec 1, 2014.

  1. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #21 s1ave77, Dec 1, 2014
    Last edited by a moderator: Apr 20, 2017
    Info and suggestion already provided :nsa::

     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. lievre

    lievre MDL Senior Member

    Sep 18, 2012
    343
    72
    10
    Just right click on the windows button, you have the option.

    Lievre
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Hadron-Curious

    Hadron-Curious MDL Guru

    Jul 4, 2014
    3,730
    603
    120
    #23 Hadron-Curious, Dec 1, 2014
    Last edited by a moderator: Apr 20, 2017
    Or at the Run dialog:

    Code:
     %ProgramData%\Microsoft\Windows\Start Menu\Programs\StartUp
     
  4. Shadowmeph

    Shadowmeph MDL Novice

    Mar 8, 2011
    14
    3
    0
    yes that normally works but for usage in turionpowercontrol( TPC), it doesn't work, I have to open an admin cmd then cd to where TPC is and then it will work
     
  5. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #25 s1ave77, Dec 2, 2014
    Last edited by a moderator: Apr 20, 2017
    Did you try to run the task elevated but in user context, not system one:

    Code:
    SCHTASKS /CREATE /TN "3p4" /TR "%userprofile%\Desktop\tpc-0.44-rc2\bin\Windows-amd64\3p4.bat" /SC ONLOGON /RU "" /RL Highest /F
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #26 s1ave77, Dec 2, 2014
    Last edited by a moderator: Apr 20, 2017
    Indeed:

    Code:
    --------------------------------------------------------------------------------
    
    SYSTEM VARIABLES
    --------------------------------------------------------------------------------
    
    SYSTEM:
    %systemdrive%        > C:
    %homedrive%          > C:
    %windir%             > C:\Windows
    %systemroot%         > C:\Windows
    %programfiles%       > C:\Program Files
    %programfiles(x86)%  > C:\Program Files (x86)
    %commonprogramfiles% > C:\Program Files\Common Files
    %programdata%        > C:\ProgramData
    %allusersprofile%    > C:\ProgramData
    USER:
    %userprofile%        > C:\Users\s1ave77
    %homepath%           > \Users\s1ave77
    %appdata%            > C:\Users\s1ave77\AppData\Roaming
    %localappdata%       > C:\Users\s1ave77\AppData\Local
    %public%             > C:\Users\Public
    
    --------------------------------------------------------------------------------
    
    BTW: Ancient expression %homepath% needs %homedrive% in front to be a path (i.e. %homedrive%%homepath%) :cool2:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...