So, what I do for this I upload the shortcut to bigfix and the copy it from the downloads folder to the public desktop folder in windows.
copy "__Download\Google Chrome.lnk" "C:\Users\Public\Desktop\Google Chrome.lnk"
Please note there is another way to future proof the public downloads folder. I never understood how it works. but, perhaps you do. Here is the link for that:
Sorry for the long-windedness, but there’s a lot of interesting stuff going on in this post.
%22 is translated to a doublequote character. In string constants, any “%” encountered will translate the following two characters as the hexadecimal value of an ASCII character, in this case 0x22 = doublequote. This is very common in relevance, as are %25 - which translates to the “%” character, and “%0d%0a” which translates to Carriage Return / Line Feed - the DOS End-of-Line character pair.
Rather…