Removing old shortcutkeys and reusing

G

Guest

Is there anyway to remove old shortcut keys used on Startmenu and Desktop
shortcuts and reassign them to new programs? -without involving a reformat.

I would have supposed MS could make this easier, why do they lock custom
shortcut keys to the first program they bind to. Is there a way to rebind the
custom Ctrl+Shift+Alt+___ shortcut?

Thank you.
 
G

Guest

No unfortunately they were deleted as the programs were removed. I'll try the
software you listed.

Thanks
 
A

Ayush

[Xylent]s message :
No unfortunately they were deleted as the programs were removed. I'll try the
software you listed.


Create a VBScript file (a file with .vbs extension):

Set ws=CreateObject("WScript.Shell")
Set fs=CreateObject("Scripting.FileSystemObject")
tp=ws.SpecialFolders("StartMenu")+"\"+fs.GetTempName+".lnk"
Set sc=ws.CreateShortcut(tp)
sc.Hotkey="Ctrl+Alt+Shift+V" ' <---- change this to the shortcut
sc.Save
Set sc=ws.CreateShortcut(tP)
sc.Hotkey="":sc.Save
fs.DeleteFile(tp)


Then run it by double clicking in explorer.



Good Luck, Ayush.
 
G

Guest

hey thanks. That helps a lot, its probably better than having to install
another app.

Ayush" <"ayushmaan.j[aatt]gmail.com said:
[Xylent]s message :
No unfortunately they were deleted as the programs were removed. I'll try the
software you listed.


Create a VBScript file (a file with .vbs extension):

Set ws=CreateObject("WScript.Shell")
Set fs=CreateObject("Scripting.FileSystemObject")
tp=ws.SpecialFolders("StartMenu")+"\"+fs.GetTempName+".lnk"
Set sc=ws.CreateShortcut(tp)
sc.Hotkey="Ctrl+Alt+Shift+V" ' <---- change this to the shortcut
sc.Save
Set sc=ws.CreateShortcut(tP)
sc.Hotkey="":sc.Save
fs.DeleteFile(tp)


Then run it by double clicking in explorer.



Good Luck, Ayush.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top