Skip to content

Instantly share code, notes, and snippets.

@tablacus
Created December 17, 2021 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tablacus/58293bd4cfb48bbfee996c0553b83997 to your computer and use it in GitHub Desktop.
Save tablacus/58293bd4cfb48bbfee996c0553b83997 to your computer and use it in GitHub Desktop.
Open chrome from url shortcut - Tablacus Explorer
const Selected = FV.SelectedItems();
if (Selected.Count != 1) {
return;
}
wsh.run('"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe "' + Selected.Item(0).ExtendedProperty("linktarget"));
@tablacus
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment