Reputation: 13366
I'm trying to write a batch file that can copy a file from my computer to all computers in a list. It needs to be copied to the AllUsers Desktop (I'll use a domain admin account to run the batch file).
On my Win7 system, the %ALLUSERSPROFILE%
returns C:\ProgramData. Is there a variable that returns the AllUsers Desktop path across every version of Windows? I have a mix of XP, Vista, and Win7.
Upvotes: 7
Views: 56010
Reputation: 31
%public% works for Windows 10 and Windows 2011 Server and up
%ALLUSERSPROFILE% is used in Windows XP
But, you can look to see what the available variables are by running "SET" from a command prompt
Upvotes: 3