You can use a short LISP program, like this one. It turns snap off and and ortho on, then runs the MOVE command, then sets snap and ortho back the way they were. This one is called OM and is part of my acad.lsp file. I use it by typing OM on the command line. Alternaltly, it could be asigned to a button or menu pull down or in the POP0 Ctrl-click menu.
(DEFUN C:OM ( / CM OM OT P) ; Move, NONE, Ortho on
(setq CE (getvar "cmdecho")
OM (getvar "osmode")
OT (getvar "orthomode"))
(setvar "cmdecho" 0)
(setvar "orthomode" 1)
(setvar "osmode" 0)
(setq P (ssget))
(COMMAND "MOVE" P "" PAUSE PAUSE)
(setvar "cmdecho" CE)
(setvar "orthomode" OT)
(setvar "osmode" OM)
(princ)
)