CMenu Context Menu for Installers.
#161
Posted 22 July 2007 - 03:52 PM
I also sent you a PM.
#162
Posted 25 July 2007 - 12:36 AM
jbs123, on Jul 23 2007, 07:52 AM, said:
I also sent you a PM.
Sorry about the late reply but the board did not send me an email notifying of your PM. I have replied to your PM.
Logging can be done.
#164
Posted 06 September 2007 - 10:38 AM
headroom, on Sep 6 2007, 12:45 AM, said:
Sorry for the trouble. It seems the Web Server is down.
Some temporary links until the issue can be fixed:
CMenu 2.6
SendToA3X 1.5
#165
Posted 07 September 2007 - 08:29 AM
Thanks
#166
Posted 09 September 2007 - 03:43 AM
MHz, on Sep 6 2007, 04:38 PM, said:
Some temporary links until the issue can be fixed:
CMenu 2.6
SendToA3X 1.5
Thanks
#167
Posted 12 September 2007 - 07:33 AM
MHz, on Sep 6 2007, 10:38 AM, said:
headroom, on Sep 6 2007, 12:45 AM, said:
Sorry for the trouble. It seems the Web Server is down.
Some temporary links until the issue can be fixed:
CMenu 2.6
SendToA3X 1.5
I tried downloading CMenu from the above link but every time I try to unzip it, I'm told it's an invalid zip file.
Anyone else getting this??
#169
Posted 12 September 2007 - 08:55 AM
gameadict, on Sep 12 2007, 11:33 PM, said:
Anyone else getting this??
I confirm and deleted the zip file and replaced with a valid zip file (tested).
CMenu 2.6
BigRandalo, Thanks for the link posted.
#170
Posted 12 September 2007 - 09:48 AM
!! THANK YOU FOR CMENU !!
#171
Posted 02 October 2007 - 01:38 AM
Please help me.
#172
Posted 02 October 2007 - 05:13 AM
#173
Posted 02 October 2007 - 06:27 AM
#174
Posted 02 October 2007 - 08:08 AM
#176
Posted 19 September 2008 - 06:35 PM
Many pages back someone said it's just one of those things that you don't know how you survived without, I agree 100%.
I know this is posted in the Application Installs section of the forum, but I searched and this MSFN is huge! So my apologises that this is the wrong place (I also realise that I'm way outta my depth on this thread).
My question is regarding the 'move to' option in your context menu. Am I being completely dumb or is there a way to add multiple args to that command?
I'll try and explain what I'm trying to do. For instance - all my CD's are kept in a folder R:\Full CD's, this contains all the artist folders. Same for Music Vids, software etc etc.
How could I create a context menu option to say "Move To R:\Full CD's " but open that particular folder so I could then browse to the artist folder and move the file to there?
Honestly I've tried to cobble some commands on the same line together, but all I get is a registry error warning.
Again. I'm so sorry this is in the wrong thread, but any help from anyone would be much appreciated.
Balders
#177
Posted 21 September 2008 - 12:40 AM
Baldrick2, on Sep 20 2008, 10:35 AM, said:
How could I create a context menu option to say "Move To R:\Full CD's " but open that particular folder so I could then browse to the artist folder and move the file to there?
Hi Balders and welcome to MSFN.
Thanks for the mention of appreciation.
The editor and shell extension is not my property just for clarification. I make use of them as per conditions of the Revenger inc. license supplied with CMenuExtender. The CMenu.exe and some of the other support files is what I created.
The copy to folder and move to folder preset options seem to want a static path to send to. I would recommend a script to do the custom operation that you want. I made a AutoIt3 script which when compiled may do what you have described as a custom starting path for the folder dialog.
; usage: script.exe copy|move source [ destination ]
; CMenu settings:
; Within editor, select New Item -> Custom command.
; Add suitable caption, browse for this compiled script and then
; add into the Commandline 'copy "custom path\to\copy\to"'.
; you can just use copy or move without any
; other parameter for default destination search.
; set the append file checkbox and then click OK button to accept.
Global $action, $destination
Switch $CMDLINE[0]
Case 2
_CheckAction()
$destination = FileSelectFolder($action & ' source to', '')
If Not @error And $destination <> '' Then
$source = $CMDLINE[2]
_PerformAction()
EndIf
Case 3
_CheckAction()
$destination = FileSelectFolder($action & ' source to', '', Default, $CMDLINE[2])
If Not @error And $destination <> '' Then
$source = $CMDLINE[3]
_PerformAction()
EndIf
Case Else
_HelpMsgBox()
EndSwitch
Exit
Func _CheckAction()
; set $action to copy or move
Switch $CMDLINE[1]
Case 'copy'
$action = 'copy'
Case 'move'
$action = 'move'
Case Else
_HelpMsgBox()
EndSwitch
EndFunc
Func _HelpMsgBox()
; show a Msgbox with helpful details
Local $text = _
$CMDLINE[0] & ' parameters passed. 2 or 3 parameters required.' & @CRLF & @CRLF & _
'Command used:' & @CRLF & _
$CMDLINERAW & @CRLF & @CRLF & _
'Usage:' & @CRLF & _
'"' & @ScriptName & '" copy|move source [destination]' & @CRLF & @CRLF & _
'Description:' & @CRLF & _
'Use "copy" or "move" as 1st parameter.' & @CRLF & _
'Use a valid source file or folder as 2nd parameter.' & @CRLF & _
'Use an optional, valid destination folder path as 3rd parameter.'
MsgBox(0, Default, $text)
Exit
EndFunc
Func _PerformAction()
; call the copy or move function dependant on $action
If $action = 'copy' Then
_Copy($source, $destination)
Else
_Move($source, $destination)
EndIf
EndFunc
Func _Copy($source, $destination)
; copy file or folder
Local $oShellApp = ObjCreate("shell.application")
If Not @error Then
$oShellApp.NameSpace($destination).CopyHere($source)
EndIf
EndFunc
Func _Move($source, $destination)
; move file or folder
Local $oShellApp = ObjCreate("shell.application")
If Not @error Then
$oShellApp.NameSpace($destination).MoveHere($source)
EndIf
EndFunc
Sample of settings window
sample.PNG (5.63K)
Number of downloads: 7
I would recommend to test it with some temporary test files to ensure it works ok before doing your required tasks. You may need AutoIt3 to compile the script into an executable. You can get AutoIt3 from here.
Edit:
The above script may not handle multiple marked files/folders as the context menu extension handles them differently. I maybe able to adapt the script to do multiple files if needed.
This post has been edited by MHz: 21 September 2008 - 12:54 AM
#179
Posted 13 October 2008 - 10:42 AM
Stoner81
#180
Posted 08 December 2008 - 06:43 AM
- ← Silent uninstallation of Kaspersky Antivirus 2011
- Application Installs
- installing software silenlty with serial key →



Help

Back to top









