[edit] Ohh, das mit dem CLIP kannte ich och noch nicht.
Nja, dafür kann man hier notfalls noch etwas am Pfad rumändern.
CopyPathToClipboard.exe in "C:\Programme" bzw. in "C:\Program Files"
Delphi-Quellcode:
program CopyPathToClipboard;
uses Clipbrd;
begin
Clipboard.AsText := ParamStr(1);
end.
CopyPathToClipboard_Install.reg
Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Copy Path to Clipboard]
[HKEY_CLASSES_ROOT\*\shell\Copy Path to Clipboard\command]
@="%ProgramFiles%\\CopyPathToClipboard.exe \"%1\""
Alternativ, bei einem 64 Bit Windows, die CopyPathToClipboard.exe in "C:\Programme (x86)" bzw. "in C:\Program Files (x86)".
CopyPathToClipboard_Install86.reg
Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Copy Path to Clipboard]
[HKEY_CLASSES_ROOT\*\shell\Copy Path to Clipboard\command]
@="%ProgramFiles(x86)%\\CopyPathToClipboard.exe \"%1\""
CopyPathToClipboard_Uninstall.reg
Code:
Windows Registry Editor Version 5.00
-[HKEY_CLASSES_ROOT\*\shell\Copy Path to Clipboard]