Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

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

2 comments
Date Votes
  • Desktop shortcuts use .lnk, not .ink :)

    0
  • ^^^^^^ what he said. 

     

    remove-item -path "$env:PUBLIC\Desktop\Google Chrome.lnk" or

    del "%public%\desktop\Google Chrome.lnk" /f

    0