@@ -32,8 +32,7 @@ static void Main(string[] _)
32
32
if ( LogUtils . LogFileExists ( PATH_LOGFILE ) )
33
33
{
34
34
_isReady = true ;
35
- IntPtr winHandle = Process . GetCurrentProcess ( ) . MainWindowHandle ;
36
- ShowWindow ( winHandle , SW_SHOWMINIMIZED ) ;
35
+ Minimize ( ) ;
37
36
}
38
37
else {
39
38
Utils . PrintInfo ( "\n ========================" ) ;
@@ -43,8 +42,9 @@ static void Main(string[] _)
43
42
Utils . Print ( $ "\n When it runs it will in turn run all { FILE_PATTERN } files in the { PATH_STARTFOLDER } folder.") ;
44
43
Utils . Print ( $ "\n If there are { FILE_PATTERN } files in { PATH_STOPFOLDER } it will stay and run those on shutdown.") ;
45
44
Utils . Print ( "\n This message is only shown once, to see it again delete the log file." ) ;
46
- Utils . Print ( "\n Press [Enter] in this window to continue execution." ) ;
45
+ Utils . Print ( "\n Press [Enter] in this window to continue execution.\n If there are shutdown scripts the window will remain in the task bar. " ) ;
47
46
Console . ReadLine ( ) ;
47
+ Minimize ( ) ;
48
48
_isReady = true ;
49
49
}
50
50
@@ -54,6 +54,11 @@ static void Main(string[] _)
54
54
OpenVR . Shutdown ( ) ;
55
55
}
56
56
57
+ private static void Minimize ( ) {
58
+ IntPtr winHandle = Process . GetCurrentProcess ( ) . MainWindowHandle ;
59
+ ShowWindow ( winHandle , SW_SHOWMINIMIZED ) ;
60
+ }
61
+
57
62
private static bool _isConnected = false ;
58
63
59
64
private static void Worker ( )
@@ -124,7 +129,7 @@ private static void RunScripts(string folder) {
124
129
LogUtils . WriteLineToCache ( $ "Found: { files . Length } script(s) in { folder } ") ;
125
130
foreach ( var file in files )
126
131
{
127
- LogUtils . WriteLineToCache ( $ "Executing: { file } from { folder } ") ;
132
+ LogUtils . WriteLineToCache ( $ "Executing: { file } ") ;
128
133
var path = Path . Combine ( Environment . CurrentDirectory , file ) ;
129
134
Process p = new Process ( ) ;
130
135
p . StartInfo . CreateNoWindow = true ;
@@ -133,7 +138,7 @@ private static void RunScripts(string folder) {
133
138
p . StartInfo . Arguments = $ "/C \" { path } \" ";
134
139
p . Start ( ) ;
135
140
}
136
- if ( files . Length == 0 ) LogUtils . WriteLineToCache ( $ "Did not find any .cmd files to execute in { folder } ") ;
141
+ if ( files . Length == 0 ) LogUtils . WriteLineToCache ( $ "Did not find any { FILE_PATTERN } files to execute in { folder } ") ;
137
142
}
138
143
catch ( Exception e )
139
144
{
@@ -143,6 +148,7 @@ private static void RunScripts(string folder) {
143
148
144
149
private static void WaitForQuit ( )
145
150
{
151
+ Utils . Print ( "This window remains to wait for the shutdown of SteamVR to run additional scripts on exit." ) ;
146
152
var shouldRun = true ;
147
153
while ( shouldRun )
148
154
{
0 commit comments