Hello all,
Here is what I want to achieve. I need to create around 80-90 shortcuts. I have a CSV file that is formatted as such:
Is there a tool that can take this csv file and create shortscuts titled "Shortcut Title" and points to the "Command" executable or path?
-Josh
I haven't tested this, but try this AHK script...
#singleinstance,force
fileselectfile, src, ,*.csv
if errorlevel
exitapp
loop, read, %src%
{
stringsplit,tmp_,a_loopreadline,`,
filecreateshortcut, %tmp_2%, %tmp_1%
}
exitapp
shortcuts should be created in the same directory as the script, though if you want to create them in a specific location that could be catered for as well