Hi,

From Start, Run if I type:
explorer.exe %AppData%\FolderName

FolderName opens in Windows Explorer, but...
Code:
Shell "explorer.exe %AppData%\FolderName", 1
Returns an error message from Windows Explorer:
The path '%AppData%\FolderName' does not exist or is not a directory.

but...
Code:
Shell "explorer.exe c:\", 1
opens the root directory in explorer.

Can you tell why it won't recognize %AppData%?