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?
asked Oct 10 '15 at 18:38
64111 gold badge66 silver badges1212 bronze badges
6 Answers
62
Try
c:\Users\Public\Desktop
instead.
answered Oct 10 '15 at 19:43
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
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
answered Dec 12 '16 at 16:40
10111 silver badge22 bronze badges
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
answered Jun 14 '19 at 19:28
22122 silver badges44 bronze badges
-
(tested on Windows 10) – Ekus Jun 14 '19 at 19:29
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.
answered May 2 '16 at 10:26
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
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...
answered Jun 22 '17 at 16:30
2111 bronze badge
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
answered Nov 21 '15 at 21:07
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