How to make a desktop shortcut available for all users in Windows 10

Submitted by admin on Tue, 06/30/2020 - 07:41

PARANCSIKON ASZTALRA WINDOW 10

I windows 7 you create the shortcut in C:\Users\All Users\desktop

Well, that folder is not accessible.

So where should I put it in windows 10?

shortcuts

share improve this question

asked Oct 10 '15 at 18:38

Image removed.

Sharen Eayrs

64111 gold badge66 silver badges1212 bronze badges

add a comment

6 Answers

Active Oldest Votes

 

62

Try

c:\Users\Public\Desktop

instead.

share improve this answer

answered Oct 10 '15 at 19:43

Image removed.

bviktor

84088 silver badges33 bronze badges

  • If they kept it the same as in Windows 7 (c:\Users\Public\Desktop does exist in Win 7), then in Windows Explorer, you can go to c:\Users\Public\Public Desktop. (Clicking in the address bar once you're there will reveal that it's actually c:\Users\Public\Desktop.) – RobH Feb 1 '17 at 17:10

  •  
  • Running from Chef/Ruby, I got an "OLE error code:800770003 in WshShortcut.Save". Using "C:\Users\Public\Desktop" instead of "C:\Users\Public\Public Desktop" was the fix. – CoverosGene Mar 3 at 19:15

  •  

add a comment

10

In Windows 10 Login as Administrator (Local Admin).

Go to Control Panel > File Explorer Options > click on the View tab > under Advanced settings: look for hidden files and folders > choose "Show hidden files, folders, and drives" and click "OK".

Go to C drive (C:) > Users > Public > Public Desktop

The "public desktop" folder is normally a hidden folder.

Now you can put your shortcuts in: C:\Users\Public\Desktop

share improve this answer

answered Dec 12 '16 at 16:40

Image removed.

Jermaine C.

10111 silver badge22 bronze badges

add a comment

3

Put it in this folder (exactly like below, with the % characters):

%public%\Desktop

e.g. using this command:

copy file.lnk %public%\Desktop

This should be more reliable in case Users location is changed.

Bonus: other ways to open the public desktop in Explorer:

  • you can paste %public%\Desktop in Explorer location bar
  • or hit Win+R and enter %public%\Desktop

share improve this answer

edited Nov 13 '19 at 17:21

answered Jun 14 '19 at 19:28

Image removed.

Ekus

22122 silver badges44 bronze badges

add a comment

2

I don't know if things have changed since the previous post, but...

I just checked my Windows 10 x64 Home (which I just did a clean install a couple of hours ago) and from an elevated ("run as admin") command prompt, was able to copy a shortcut link from

"C:\Users\admin\downloads\"

to

"c:\Users\All users\desktop\"

and it did appear on my desktop! But, oddly enough, I cannot view a directory listing, or do any other type of function (like delete) in the "C:\Users\All users" directory.

Just thought I'd share that, in case there is some other reason/purpose behind it.

share improve this answer

answered May 2 '16 at 10:26

Image removed.

AlwayzSonny

2122 bronze badges

  • 3

    You are encountering Junction Points. To summarize, they exist to to provide backward compatibility for user applications. Old locations have junction points that point to the new locations, but users can't use Junction Points to navigate through the folder hierarchy. – Run5k Nov 17 '16 at 22:32

add a comment

2

Another simple way instead of doing all this crazy (albeit simple) stuff with command prompt, simply drag and drop from somewhere else to the Public Desktop, and it will automagically prompt for Admin credentials. No need to launch elevated command window and use commands...

share improve this answer

answered Jun 22 '17 at 16:30

Image removed.

QuintonAjStevens

2111 bronze badge

add a comment

1

That folder is only accessible if you elevate in Windows 10 - Im' not sure how to elevate "explorer.exe", but you can copy the shortcut using pwoershell or dos "run as administrator. example:

PS:> cp 'C:\Users\conradb\Desktop\photies - Shortcut.lnk' c:\Users\Public\Desktop c:\Users\Public\Desktop

or if using a DOS administrator prompt: C:\WINDOWS\system32>copy 'C:\Users\conradb\Desktop\photies - Shortcut.lnk' c:\Users\Public\Desktop c:\Users\Public\Desktop

share improve this answer

answered Nov 21 '15 at 21:07

Image removed.

Conrad B

4733 bronze badges

  • To elevate any program, right click on its icon, and select Run as administrator, just like in any version of Windows since Vista. – RobH Jun 22 '17 at 16:49