Varun
Varun

Reputation: 526

What is the path for the startup folder in windows 2008 server

Is there a folder to keep programs to run while doing starting of the system. As like this "C:\Users\All Users\Microsoft\Windows\Start Menu\Programs\Startup"??.

Thanks, Varun

Upvotes: 15

Views: 142612

Answers (3)

Roland
Roland

Reputation: 291

In Server 2008 the startup folder for individual users is here:

C:\Users\username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

For All Users it's here:

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup

Hope that helps

Upvotes: 29

Protector one
Protector one

Reputation: 7311

You can easily reach them by using the Run window and entering:

shell:startup

and

shell:common startup

Source.

Upvotes: 11

Damien_The_Unbeliever
Damien_The_Unbeliever

Reputation: 239814

SHGetKnownFolderPath:

Retrieves the full path of a known folder identified by the folder's KNOWNFOLDERID.

And, FOLDERID_CommonStartup:

Default Path %ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\StartUp

There are also managed equivalents, but you haven't told us what you're programming in.

Upvotes: 17

Related Questions