Chrome Shortcut Removal ?
Anyone have a way to remove the Desktop Shortcut for the Chrome Ent Install?
I tried the two ways below and both failed on me. I want to prevent Chrome from having a desktop shortcut.
PS- remove-item -path "$env:PUBLIC\Desktop\Google Chrome.ink"
cmd - del "%public%\desktop\Google Chrome.ink" /f
0
Comments
Desktop shortcuts use .lnk, not .ink :)
^^^^^^ what he said.
remove-item -path "$env:PUBLIC\Desktop\Google Chrome.lnk" or
del "%public%\desktop\Google Chrome.lnk" /f