We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6bcbc6 commit a591951Copy full SHA for a591951
1 file changed
src/features/terminal/startup/cmdStartup.ts
@@ -139,10 +139,12 @@ async function setupRegistryAutoRun(mainBatchFile: string): Promise<boolean> {
139
{ windowsHide: true },
140
);
141
142
- traceInfo(`Set CMD AutoRun registry key to call: ${mainBatchFile}`);
+ traceInfo(
143
+ `Set CMD AutoRun registry key [HKCU\\Software\\Microsoft\\Command Processor] to call: ${mainBatchFile}`,
144
+ );
145
return true;
146
} catch (err) {
- traceError('Failed to set CMD AutoRun registry key', err);
147
+ traceError('Failed to set CMD AutoRun registry key [HKCU\\Software\\Microsoft\\Command Processor]', err);
148
return false;
149
}
150
0 commit comments