-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathProcessManagerDemo.cmd
More file actions
43 lines (38 loc) · 982 Bytes
/
Copy pathProcessManagerDemo.cmd
File metadata and controls
43 lines (38 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@echo off
copy Alba.CsConsoleFormat.Sample.ProcessManager.exe ProcessManager.exe
copy Alba.CsConsoleFormat.Sample.ProcessManager.exe.config ProcessManager.exe.config
cls
echo.
echo ~ ProcessManager help
ProcessManager help
echo.
echo ~ ProcessManager help list
ProcessManager help list
echo.
echo ~ ProcessManager help start
ProcessManager help start
echo.
echo ~ ProcessManager help --all
ProcessManager help --all
echo.
echo ~ ProcessManager help oops
ProcessManager help oops
echo.
echo ~ ProcessManager list --withtitle
ProcessManager list --withtitle
echo.
echo ~ ProcessManager list --limit=oops
ProcessManager list --limit=oops
echo.
echo ~ ProcessManager list -n devenv -m .
ProcessManager list -n devenv -m .
echo.
echo ~ ProcessManager start notepad -a %USERPROFILE%/.gitconfig
ProcessManager start notepad -a %USERPROFILE%/.gitconfig
echo.
echo ~ ProcessManager start oops
ProcessManager start oops
del ProcessManager.exe
del ProcessManager.exe.config
@echo on
pause