|
Answer» Im running Code: [Select]start c:/cmdow and it opens runs then closes....I need to know how I can resize 6-10 differnt windows in a specific position
Ive TRIED
Code: [Select]C:\Users\f-17>start c:/cmdow "TNotifier • Train (train test)" /SIZ 600 600 /MOV 10 10 but it opens then closes as well with no result
is http://www.commandline.co.uk/cmdow/ <--- official site?
if I can figure just this ONE window out im sure I can get the rest!
Thanks IsraelTry it without the start command.
Is cmdow really in the root of c: drive?
Code: [Select]@echo off start "" notepad cmdow "untitled - notepad" /siz 600 600 /mov 10 10 Reference: http://www.commandline.co.uk/cmdow/#about Quote Cmdow is a Win32 commandline utility for NT4/2000/XP/2003/2008/7 that allows windows to be listed, moved, resized, renamed, hidden/unhidden, disabled/enabled, minimized, maximized, restored, activated/inactivated, closed, killed and more. It is a small standalone executable. It does not create any temporary files, nor does it write to the registry. There is no installation procedure, just run it. To completely remove all traces of it from your system, delete it. Cmdow was written with batch file PROGRAMMERS in mind. Particular attention has been paid to Cmdows output making it easy to process with the 'FOR /F' command found in NT4/2000/XP/2003/2008/7. Cmdow is simple and intuitive to use. To list all its options, type cmdow /?. For DETAILED help on any option type cmdow /? <option>. Eg cmdow /? /run. If you want to start using Cmdow right away, skip to examples
|